Page 19 of 26 FirstFirst ... 91718192021 ... LastLast
Results 271 to 285 of 390

Thread: New Asus RT-N16 Router

  1. #271
    Quote Originally Posted by hggomes View Post
    PS: DIG ''''EVEN'''' DEEPER Catalin. In my country we used to say: "You lost a good opportunity to shut up"
    Well well well, Q.E.D... I never said anything about RT-N16 having any CPU other than BCM4718... You can read a few lines up... I did not want to say anything more because of the way you react... You did this before, and you did it now...

    So, if you are happy to go on with your assumptions, go ahead... I told you this CPU, using the current drivers, IS NOT STABLE at the designed frequency, and I pointed out the fact that every single manufacturer that use it has it underclocked. Your answer was that datasheet doesn't lie... Does the datasheet include the driver specs? I said that you may want to dig deeper before jumping to conclusins based on your unit which you THINK is overclocked and you THINK is stable... Look for and read what Oleg said about BCM4718 at 533 MHz, and why is running at 480 MHz from the factory...

    This is my last post here. Keep up jumping to conclusions based on "facts"...

  2. #272
    This is a forum, it's normal people "discuss", different opinions. You don't need to "last post here" because my answer, it's unnecessary

    I respect your opinion, i only said that MY ROUTER was working rock stable at 532MHZ that it's TRUE (24H/24H, services running, 7 wireless clients connected, etc. ROCKSTABLE, not even a crash, nothing), and i receive a "DIG DEEPER", what was the point?? Maybe your router isn't stable at that frequency, so i have to say mine is not too?

    Bahhh, i stay with my opinion and you with yours

    Cheers
    Last edited by hggomes; 02-03-2010 at 14:02.

  3. #273
    Calm down, ppl, I've got working rt-n16@533, but there's no garantee of stability with current broadcom sdk.
    First cpu samples were running at 533Mhz, than first parties were shipped only at 453 (looks like reinsurance), and now all brands ships this board with 480 Mhz.

  4. #274
    Join Date
    Mar 2010
    Location
    Budaors, Hungary
    Posts
    1
    Quote Originally Posted by ofverstedt View Post
    Hello!
    How stable is olegs FW? I'm using dd-wrt now. Is olegs usable, because i want to get rid of dd-wrt.
    Hello,

    I'm also interested in this...
    I just bought an rt-n16 and looking for options what firmware to use.
    Is Oleg's firmware stable enough for a newbie like me to use? Or should I wait a bit more? (currently using the firmware that originally came with the router)

    I'd like to run my own httpd, git, mysql and possibly other services on the router, so I'm really looking forward to replacing the original fw

    thanks for the tips

  5. #275
    Join Date
    Dec 2007
    Location
    The Netherlands - Eindhoven
    Posts
    1,767
    Quote Originally Posted by pballok View Post
    Hello,

    I'm also interested in this...
    I just bought an rt-n16 and looking for options what firmware to use.
    Is Oleg's firmware stable enough for a newbie like me to use? Or should I wait a bit more? (currently using the firmware that originally came with the router)

    I'd like to run my own httpd, git, mysql and possibly other services on the router, so I'm really looking forward to replacing the original fw

    thanks for the tips
    yes it's quite stable, I've been running it for some time now and it works good
    check my post: http://wl500g.info/showthread.php?p=187707
    it has some more basic information

  6. #276
    For most recent firmwares WL and RT serie go here:

    ftp://core.dumped.ru

  7. #277
    Quote Originally Posted by hggomes View Post
    For most recent firmwares WL and RT serie go here:

    ftp://core.dumped.ru
    thanks, but I have a question
    are they final firmwares ore still in alpha/beta phase ? (RT-N ones)

  8. #278
    Join Date
    Dec 2007
    Location
    The Netherlands - Eindhoven
    Posts
    1,767
    Quote Originally Posted by bigphantom View Post
    thanks, but I have a question
    are they final firmwares ore still in alpha/beta phase ? (RT-N ones)
    nightly built alpha releases
    according to mr lly http://wl500g.info/showpost.php?p=190892&postcount=69

  9. #279

    Question

    Quote Originally Posted by hggomes View Post
    For most recent firmwares WL and RT serie go here:

    ftp://core.dumped.ru
    can these be safely used on wl-500gp v1?
    has anyone tried yet ?

  10. #280
    Join Date
    Nov 2006
    Location
    Russia, Moscow
    Posts
    3,640
    Quote Originally Posted by maurer View Post
    can these be safely used on wl-500gp v1?
    has anyone tried yet ?
    If you can answer to yourself why to install experimental builds on 2.6 kernel, then yes.

  11. #281

    NFS, jumbo frame etc

    I've been playing a little bit with RT-N16-1.9.2.7-rtn-r1389.trx.
    It seems quite OK (thanks for the great work), though I have some issues.

    First I tried to take into use jumbo frames. Started with nvram settings:
    Code:
    nvram set jumbo_frame_size=7000
    nvram set jumbo_frame_enable=1
    nvram save && nvram commit && nvram enable
    reboot
    nvram show gives:
    Code:
    nvram show | grep jumbo_frame
    size: 13730 bytes (19038 left)
    jumbo_frame_size=7000
    jumbo_frame_enable=1
    However when I try to set MTU of some interface beyond 1500 it fails:
    Code:
    ifconfig eth1 mtu 7000
    SIOCSIFMTU: Invalid argument
    ifconfig eth1 mtu 1500
    is OK. What am I doing wrong, or are there some issues in this area?

    ***
    I've taken into use NFS. Exports is what I was using earlier with WL-500gPv1:
    Code:
    cat /etc/exports 
    # automagically generated from web settings
    /mnt 192.168.1.0/24(rw,insecure,all_squash,anonuid=0,anongid=0,sync)
    /opt 192.168.1.0/24(rw,insecure,all_squash,anonuid=0,anongid=0,sync)
    Inserted all modules:
    Code:
    modprobe nfs
    modprobe nfsd
    exportfs -r
    nfsd
    mountd
    If I use TCP, performance is like Samba:
    Code:
    mkdir /tmp/RT-N16
    sudo mount -t nfs -o rsize=32768,wsize=32768,timeo=14,intr,proto=tcp 192.168.1.1:/mnt /tmp/RT-N16
    When I make the mount from my Linux PC using UDP, performance is excellent (I could copy from router to PC with 12.5 MByte/s, which is beyond my initial expectations):
    Code:
    sudo mount -t nfs -o rsize=32768,wsize=32768,timeo=14,intr,proto=udp 192.168.1.1:/mnt /tmp/RT-N16
    However when copying from Linux PC to router there are some issues...

    Also it seems that 16 kBytes NFS max block size is used, could it be increased to 32 kBytes (like in WL-500gP)?
    Last edited by ecaddict; 29-03-2010 at 10:41.

  12. #282
    Join Date
    Nov 2006
    Location
    Russia, Moscow
    Posts
    3,640
    Quote Originally Posted by ecaddict View Post
    However when I try to set MTU of some interface beyond 1500 it fails:
    Code:
    ifconfig eth1 mtu 7000
    SIOCSIFMTU: Invalid argument
    ifconfig eth1 mtu 1500
    is OK. What am I doing wrong, or are there some issues in this area?
    Was you try statement above on PC or original ASUS FW?

    However when copying from Linux PC to router there are some issues...
    Unfortunately, we have to use 2.6.22 kernel due to ugly Broadcom policy. Most of subsystems requires backports from upstream
    Also it seems that 16 kBytes NFS max block size is used, could it be increased to 32 kBytes (like in WL-500gP)?
    Yes, but some time later.

  13. #283
    Quote Originally Posted by lly View Post
    Was you try statement above on PC or original ASUS FW?
    On the PC I've sucessfully changed the MTU to 7000 with basically the same command (same except I had to use sudo).
    It's the router (with r1389 firmware) that has failed the ifconfig command.

    The reason why I tried to use 7000 bytes (instead of 9000) is that the RealTek chip used in my PC's NIC supports only 7000 bytes.

  14. #284
    Join Date
    Nov 2006
    Location
    Russia, Moscow
    Posts
    3,640
    Quote Originally Posted by ecaddict View Post
    On the PC I've sucessfully changed the MTU to 7000 with basically the same command (same except I had to use sudo).
    It's the router (with r1389 firmware) that has failed the ifconfig command.
    Ok, will take a look to et driver, but in case of it Broadcom/ASUS bug, it may take a long time.

    Updated: Unfortunately, there is no jumbo frames support in current ethernet driver(et). Maybe, we will able to write missing part ourselves in future, but due to absence of BCM53115 datasheet in public access it is no so easy task.
    Last edited by lly; 29-03-2010 at 18:34.

  15. #285
    Quote Originally Posted by lly View Post
    Updated: Unfortunately, there is no jumbo frames support in current ethernet driver(et). Maybe, we will able to write missing part ourselves in future, but due to absence of BCM53115 datasheet in public access it is no so easy task.
    How nice of Broadcom , they don't ship their chip with a driver that supports jumbo frames, don't give documentation so that support can be added, yet they advertize in the Product Brief that it supports 9KB jumbo frames.
    Yeah probably, just no-one can use it...
    Last edited by ecaddict; 30-03-2010 at 09:57.

Page 19 of 26 FirstFirst ... 91718192021 ... LastLast

Similar Threads

  1. New Asus RT-N65U Router
    By Omega in forum English Discussion
    Replies: 16
    Last Post: 31-10-2013, 21:55
  2. Asus WL-330N3G Travel Router - 3G Router из коробки
    By Romtron in forum Russian Discussion - РУССКИЙ (RU)
    Replies: 24
    Last Post: 09-09-2013, 14:38
  3. New Asus RT-N66U Router
    By hggomes in forum English Discussion
    Replies: 280
    Last Post: 02-07-2013, 18:29
  4. New Asus RT-AC66U router (5G 802.11ac)
    By Omega in forum English Discussion
    Replies: 22
    Last Post: 12-10-2012, 01:51
  5. New Asus RT-N53 Router
    By hggomes in forum English Discussion
    Replies: 6
    Last Post: 27-09-2011, 04:04

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •