Quantcast
Channel: SmallNetBuilder Forums
Viewing all 6885 articles
Browse latest View live

Wireless/Wired Buying Advice

$
0
0
Howdy Folks,

So I had a WD N900 router that has died not once, but twice. At this point, I'm done with it.

I'm currently getting internet from EPB here in Chattanooga. For those who've not heard of them, they're one of the few ISPs that provide Fiber to the House at 1Gbps. They're also running IPv6 trials on their network currently.

So, I'd like a router that has the following:

Around $100.
Can route wired at close to 1Gbps.
Good IPv6 support (native and IPv4 to IPv6 tunnel)
Dual Band N (N900) is minimum. I'm not going to cry if I can't get AC, but it would be nice.

Suggestions? (Thanks in advance for reading and replying)

Verizon HTC DNA

$
0
0
Excellent Condition HTC DNA. (The Phone On The Right)

$180 shipped. Box and paperwork included.

Attached Images
File Type: jpg DSCN00022.jpg (54.3 KB)

[RT-AC68U] Just bought one, any tips for a new comer?

$
0
0
Just plugged in my new router, and have a couple of quick questions.

First of all, is there any website with recommendations of settings? I remember seeing one before I went and ordered this one but lost the link :(

Firmwire version say 3.0.0.4.374_379-g9540d57 and if I click "Check" it says there is no updated firmware available.
Downloading the latest firmware from the asus website though, the file is named RT-AC68U_3.0.0.4_374_4422-gc83c78f.trx, shouldn't that show up as an updated firmware?
Or should I skip those two alltogether and install Merlins version? What do you guys recommend?

On my last router, I had DD-WRT wich worked fine, it had an option to automatically update my dynamic dns (freedns.afraid.org) ip, is that functionality available in any of the firmwares?

Thanks!

Edit: allright just found this thread about dnsomatic so atleast that's taken care of :)

[GUIDE] PPTP selective routing / split tunnel

$
0
0
Following on from the thread on selective routing with OpenVPN, I am providing a similar solution that works for PPTP VPN client connections.

This post details the method and a simple PPTP start-up script. In a following post (few days as am busy) I will post a more detailed script that allows for VPN state detection etc.

The following has been tested on a RT-N66U running 3.0.0.4.374.38_2-em. I am confident that it will work on other devices. In fact, the method is generic. Because of this I will go into the method in some detail, in the hope that others will adapt it for other Linux based platforms. So please feel free to contribute and distribute! Chuck me a "thanks" if it's been of any use to you.

I do *not* in any way claim that I have discovered anything. I have simply brought together, with my own investigations, a simple solution. Too often I see simple made hard. I like it the other way round.

The problem: When running the PPTP client on the N66U, all traffic is diverted via said interface. This is by design, and keeps things fairly secure. With selective routing, or split tunneling as it's also known, traffic can be routed.

Prior to running the VPN client, your routing table may look similar to this:
Code:

Destination    Gateway        Genmask        Flags  MSS Window  irtt Iface
192.168.5.1    *              255.255.255.255 UH        0 0          0 eth0
192.168.5.0    *              255.255.255.0  U        0 0          0 eth0
192.168.1.0    *              255.255.255.0  U        0 0          0 br0
127.0.0.0      *              255.0.0.0      U        0 0          0 lo
default        192.168.5.1    0.0.0.0        UG        0 0          0 eth0

Yes, yes. I know I am double-NAT'ing. It's not relevant.

After the VPN is started:
Code:

Destination    Gateway        Genmask        Flags  MSS Window  irtt Iface
192.168.5.1    *              255.255.255.255 UH        0 0          0 eth0
78.x.x.x        192.168.5.1    255.255.255.255 UGH      0 0          0 eth0
192.168.5.0    *              255.255.255.0  U        0 0          0 eth0
192.168.1.0    *              255.255.255.0  U        0 0          0 br0
127.0.0.0      *              255.0.0.0      U        0 0          0 lo
default        10.255.240.1    0.0.0.0        UG        0 0          0 ppp5
default        192.168.5.1    0.0.0.0        UG        0 0          0 eth0

A new default route is added on the ppp5 interface and all traffic will go that way. The 78.x.x.x address is the VPN destination address - though not important.

What is important is to take note of the VPN interface name. In my case ppp5. With this we can enter the following:
Code:

ifconfig ppp5 down
ifconfig ppp5 up
ip route add default dev ppp5 table 3

And that's it! Almost.

Looking at the routing table we see ...
Code:

Destination    Gateway        Genmask        Flags  MSS Window  irtt Iface
192.168.5.1    *              255.255.255.255 UH        0 0          0 eth0
10.255.240.1    *              255.255.255.255 UH        0 0          0 ppp5
78.x.x.x        192.168.5.1    255.255.255.255 UGH      0 0          0 eth0
192.168.5.0    *              255.255.255.0  U        0 0          0 eth0
192.168.1.0    *              255.255.255.0  U        0 0          0 br0
127.0.0.0      *              255.0.0.0      U        0 0          0 lo
default        192.168.5.1    0.0.0.0        UG        0 0          0 eth0

The first line removes the default route for ppp5.
The second line brings ppp5 back up, but not as a default route.
The third applies a default route to table 3 via ppp5.

At this stage *all* traffic will go via the "normal" route. Not the VPN. To do that we add ip rules.

ip rule add from 192.168.1.70 table 3 pref 300

The above says any traffic from 192.168.1.70 go via table 3, which happens to have the default route for ppp5. The pref is important (not so the number itself).

To route via table 3 you can use ip rule add to/from whatever. Just make sure any rules or conditions relating to ppp5 go in table 3.

The example above is for my PS3. But it's a blanket rule - all traffic from the PS3 will go via the VPN. No so good for logging into the PlayStation Network. No problem, we can do this:

ip rule add to 198.107.128.0/22 table main
ip rule add to 198.107.156.0/22 table main

That will route traffic to the PSN via the normal interface. Further, it will do so because the pref 300 has a lower priority than the rules in main which take higher priority. ip rule shows this better:

0: from all lookup local
300: from 192.168.1.70 lookup 3
32764: from all to 198.107.156.0/22 lookup main
32765: from all to 198.107.128.0/22 lookup main
32766: from all lookup main
32767: from all lookup default

Using the script below (donated to me by someone who wishes to remain anonymous), we can start up a PPTP connection when the router is booted. Add the ifconfig and the ip route add default dev commands after the sleep 20, followed by rules to add.

Next post in a few days will have a better startup script, plus some notes on DNS when using the above.
Code:

#!/bin/sh
logger "$0 $1"
nvram set vpnc_dnsenable_x="1"
nvram set vpnc_heartbeat_x="vpn server"
nvram set vpnc_pppoe_passwd="password"
nvram set vpnc_pppoe_username="user name"
nvram set vpnc_pptp_options_x="+mppe-128"
nvram set vpnc_proto="pptp"
service restart_vpncall
sleep 20

A final note: This method will allow you to access the router via the WAN.

Regards

Asus AC68U Load Balancing

$
0
0
Hi there I want to load balance two connections 100/5 and 50/10 just for home use and was wondering if the AC68U can handle it. Thanks

nvram commit issue on RT-N66U

$
0
0
Hi,
I have some issues with my WAN connection.
What I have found out is, that it might be easily worked around by setting the web_redirect variable to 0.
See this blog:
https://moeffju.net/blog/disable-asu...error-redirect.

The problem is that nvram commit seems not to be working.
I SSH to the router and execute:
Code:

nvram set web_redirect=0
nvram commit

The work around works only till a reboot. After the reboot web_redirect is again 3.

So my conclusion is the nvram commit is not working.

Router: RT-N66U (if a ver is needed please let me know how to check it.)
Firmware: 3.0.0.4.374.39 (Merlin build)

Any suggestions, comments and help is appreciated.

Best Regards
Piotr

RT-AC68R EXT4-FS Error Logs? Drive won't wake up.

$
0
0
Running Merlin 3.0.0.4.374.39. Have a USB 3.0 WD My PassPort drive connected to the USB 3.0 port.

After so many hours (a day?), the router believes that the HD is asleep, and it can no longer be accessed from other devices on the network. Furthermore, the Network Map shows no HD connected, and the USB 3.0 light on the front of the router is no longer illuminated.

If I reboot the router, it appears again and functions.

I've updated the WD HD to its most recent firmware and also ran the WD Drive Utility to "disable" sleep mode.

In the router:

Wireless->Advanced->Reducing USB 3.0 interference is Disabled.
Tools->Other Settings->Disk Spindown = 0
....Exclude the following drives from spinning down [all unchecked]
...........I've even tried the "exclude spindown" with all three drives checked.

Here are some logs from the router, I am guessing that this is when the error occurs.

Any ideas? :confused::confused::confused:

Feb 19 10:06:44 kernel: usb 1-1: USB disconnect, address 2
Feb 19 10:06:45 rc_service: hotplug 13027:notify_rc restart_nasapps
Feb 19 10:06:45 kernel: EXT4-fs error (device sda1): ext4_find_entry:921: inode #106627073: comm hotplug: reading directory lblock 0
Feb 19 10:06:45 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:45 kernel: EXT4-fs error (device sda1): ext4_find_entry:921: inode #106627073: comm sh: reading directory lblock 0
Feb 19 10:06:45 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:45 kernel: EXT4-fs error (device sda1): ext4_find_entry:921: inode #106627076: comm sh: reading directory lblock 0
Feb 19 10:06:45 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:45 kernel: EXT4-fs error (device sda1): ext4_find_entry:921: inode #106627073: comm sh: reading directory lblock 0
Feb 19 10:06:46 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:46 kernel: EXT4-fs error (device sda1): __ext4_get_inode_loc:4908: inode #172425218: block 172425218: comm minidlna: unable to read itable block
Feb 19 10:06:46 kernel: EXT4-fs error (device sda1) in ext4_reserve_inode_write:5747: IO failure
Feb 19 10:06:46 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:46 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:46 kernel: EXT4-fs error (device sda1): __ext4_get_inode_loc:4908: inode #172425218: block 172425218: comm minidlna: unable to read itable block
Feb 19 10:06:46 kernel: EXT4-fs error (device sda1) in ext4_reserve_inode_write:5747: IO failure
Feb 19 10:06:46 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:46 kernel: EXT4-fs error (device sda1) in ext4_orphan_add:2004: IO failure
Feb 19 10:06:46 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:46 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:46 kernel: EXT4-fs error (device sda1): __ext4_get_inode_loc:4908: inode #172425218: block 172425218: comm minidlna: unable to read itable block
Feb 19 10:06:46 kernel: EXT4-fs error (device sda1) in ext4_reserve_inode_write:5747: IO failure
Feb 19 10:06:46 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:47 kernel: end_request: I/O error, dev sda, sector 61584
Feb 19 10:06:47 kernel: Aborting journal on device sda1-8.
Feb 19 10:06:47 kernel: JBD2: I/O error detected when updating journal superblock for sda1-8.
Feb 19 10:06:47 kernel: journal commit I/O error
Feb 19 10:06:47 kernel: EXT4-fs error (device sda1): ext4_discard_preallocations:3804: comm minidlna: Error loading buddy information for 3254
Feb 19 10:06:47 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:47 kernel: EXT4-fs error (device sda1): ext4_find_entry:921: inode #106627076: comm sh: reading directory lblock 0
Feb 19 10:06:47 iTunes: daemon is stoped
Feb 19 10:06:47 FTP Server: daemon is stoped
Feb 19 10:06:48 kernel: EXT4-fs error (device sda1): ext4_discard_preallocations:3804: comm hotplug: Error loading buddy information for 3254
Feb 19 10:06:48 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:48 kernel: EXT4-fs error (device sda1): ext4_put_super:720: Couldn't clean up the journal
Feb 19 10:06:48 kernel: EXT4-fs (sda1): Remounting filesystem read-only
Feb 19 10:06:48 kernel: EXT4-fs (sda1): previous I/O error to superblock detected
Feb 19 10:06:48 hotplug[13028]: USB partition unmounted from /tmp/mnt/WD_1TB
Feb 19 10:06:48 rc_service: hotplug 13028:notify_rc restart_nasapps
Feb 19 10:06:48 rc_service: waitting "restart_nasapps" via ...
Feb 19 10:06:49 Samba Server: smb daemon is stoped
Feb 19 10:06:49 kernel: gro disabled
Feb 19 10:06:49 Timemachine: daemon is stoped
Feb 19 10:06:49 kernel: gro enabled with interval 2
Feb 19 10:06:50 Samba Server: daemon is started
Feb 19 10:06:51 iTunes: daemon is stoped
Feb 19 10:06:51 FTP Server: daemon is stoped
Feb 19 10:06:53 Samba Server: smb daemon is stoped
Feb 19 10:06:53 kernel: gro disabled
Feb 19 10:06:53 Timemachine: daemon is stoped
Feb 19 10:06:53 kernel: gro enabled with interval 2

Help Cisco SG300-10 route multiple statically assigned public LAN ip blocks thru WAN

$
0
0
*all ips in this post are not the actual ips but random dummy public ips to help better see the issue. This setup was previously working on this device but I can't get it to work again since trying to change all the ips( it was on the same EOC connection but just with different WAN and public LAN ips that I tried to update to the new values once the isp changed them) Also from everything I have looked up about a L3 device this should be possible, if not please provide me with the name of a router that can do this? If you can provide the correct lines to enter into a running-config file that would be the most helpful. Thank You.

I have an Ethernet over copper connection that is terminated with an Adtran netvanta 838(The Adtran 838 is a Bridge and has no ability to be put in Routed Mode. An Ethernet Router is required in order to use the service and should be connected to Ethernet Port 1 using the following WAN Info. This connection is assigned a WAN ip and 6 different public LAN ip blocks of varying sizes. I will have 6 servers connected to 6 ports and the servers will have all public LAN ips statically assigned, I will only use two here since that will suffice to scale out to all 6 - ie.

server1 will have eth0:2-eth0:254 statically assigned 77.158.110.2 thru 77.158.110.254 with a gateway of 77.158.111.1

server2 will have eth0:2-eth0:127 statically assigned 75.10.114.2 thru 75.10.114.127 with a gateway of 75.10.114.1

The servers will have websites assigned to each of the public ips and need to be accessible from the internet if someone tries to reach a website hosted on any of these ip addresses, the servers cannot have private ips that are 1 to 1 natted or any other method that gives them private ips.

Port 1
ipaddress 83.235.25.110
connected to EOC Adtran netvanta

Port 2
ipaddress 77.158.111.1
connected to server1 eth0(split to eth0:2 thru eth0:254)

Port 3
ipaddress 75.10.114.1
connected to server2 eth0(split to eth0:2 thru eth0:127)





WAN IP: 83.235.25.110

255.255.255.252

WAN GATEWAY:83.235.25.109





LAN IPS:

77.158.111.0/24

75.10.114.0/25

Suddenly, a router network share after update

$
0
0
Hello after updating to the Merlin 39 I find then the LAN initiates a release RT-N66U , but fortunately without files.
I do not have a hard drive connected or FTP or Aicloud or or turned on.
Is this normal? Or do I need to adjust something?

THX Horst

Router Login Name Length

$
0
0
RMerlin,

Would you know the maximum length for the Router Login Name?

I have been locked out a couple of times now and had to reset the router to get back in while trying to test for this.

Also, would there be any names that are not valid for Router Login Name?

I think it would be a good idea to have it as a pop up help like it currently shows for the New Password field if possible.

RT-N66U running 374.39_0-em if it is firmware and model specific.

Thank you for any response to this query.

ASUS RT-AC68U and dlna problems

$
0
0
Hello everyone.
I have problems with my ac68u and its attached 1TB usb disk (formatted in NTFS): when I go watch on my TV the content of the disk, I see only empty folders (with the disk attached on my pc and serviio it's all ok).
Any solution?
Thanks in advance and sorry for my english.

Replacing Stock Antennas On AC68U

$
0
0
I've been looking at changing out the stock antennas on my AC68U, but the subject matter is slightly beyond my expertise.

As such, excuse if these are stupid questions, but I'm trying to educate myself on the subject.

Given that, if an antenna is rated as 15 dBi for 2.4 GHz, it will also provide a boost for a 5 GHz signal as well, correct? Or is there something particular to the design that I should only be looking for antennas that specifically mention dual-band/5 GHz support.

From what I know of EM radiation and omni directional radiators it should def. work even though not specifically listed as supporting 5 Ghz, but I thought it would be best to check with the people here since I figured someone would know without a doubt.

Can I add to the list of supported DDNS providers?

$
0
0
I'm using DNSExit. It is free and supports primary domains. It's not included "out of the box" in the supported list.

Can I add DNSExit myself? If so, does it require ssh (and do I need to hack to expose ssh or is it already supported)?

I did some research and while I'm quite new to Asus products, it seems that there is a common API/module used to take the user settings from the router GUI and construct the proper URL to send to update the DDNS providers (inadyn). Is that just used by DD-WRT?

RT-N66U seems to have lost its range

$
0
0
Hi there,

I'm new to the forum and looks like a great place. Hopefully might be able to get some input into an issue I'm having - will try to keep it concise!

Recently upgraded to fibre optic broadband and got the Asus to replace my previous router as it has to be situated further away from my room and from the great reviews it got thought it would be a good choice. Tried the router in the new position and was amazed at the signal strength I could receive on all devices in my room. Left the router there all night and tried loads of devices, all received a great signal.

The engineer came, fitted the new modem and I connected up the Asus but since then with an identical position the signal strength has dropped dramatically with things in my room (such as Xbox, Wii, Denon receiver). Xbox, for example, displayed full WiFi strength when first tested and now is so poor is actually dropping connection. (On reading the forum I have read some issues with the Xbox Slim but all other devices having similar issues.) No other changes have been made to the network - nothing new/changed etc. I have spent a while browsing the forum and tried the various suggestions I have come across - channel bandwidth set to 20MHz, trying different channels, disabling 5GHz broadcast, updating firmware, factory reset, checking antennas screwed in well, all to no avail. I know wireless can be a bit fickle, but to have such a strong signal drop so much does seem strange. Could the router have developed a fault? The problem is certainly not as bad as I have read a couple of people have had in this forum with the signal dropping off at 5feet, but at the same time is performance has dropped so much it does make me wonder. As a comparison I have tried two other wireless routers in exactly the same place - one, the basic free one I got with the fibre upgrade (Technicolour tg582n) and the other a TP-Link W8960N. This is also making me question whether I have an issue with the Asus, as I have read nothing but great plaudits for its wireless performance but its range is being matched but the antenna-less, free router, and surpassed by the old TP-Link! I really wouldn't expect it to only match a cheap wireless router for performance.

If anyone has any suggestions as to anything else I could try I would be very grateful. Sorry if I have missed out any important info - bit of a newbie to these things. Thanks for reading,

Simon

Clear notification exclamation mark

$
0
0
With the lastest firmware I get the yellow exclamation mark notifying about the ftp issue.Is there any way to clear it or will it keep blinking until the next firmware update? AC68U

Tomato Shibby for multi-SSID/VLAN support

$
0
0
Hi all -

apologies if this has been covered elsewhere - I examined the Tomato thread but it was severely out of date so I wasn't sure whether my question would be answered or relevant.

In short, I want to use a specific VLAN for the Guest network to isolate it from the remainder of the network. Since I only received the router yesterday, I'm a bit hesitant to flash it and take the chance of bricking the router. Tomato Shibby is the recommended solution, but how stable is it? How serious is the risk of bricking the router if I closely follow the "How To"?

I've seen that it's possible to assign a VLAN using the command line, but have been unable to locate a command reference. Link?

Thanks all!

Mike

RT-AC66U new firmware: 3.0.0.4.374.4561

$
0
0
I have not installed firmware 3.0.0.4.374.4561 for the RT-AC66U, but it is now available for download from Asus.

RT-N56U Firmware version 3.0.0.4.374.4561

$
0
0
ASUS RT-N56U Firmware version 3.0.0.4.374.4561
Security related issues:
- Force changing FTP from anonymous to account mode after firmware upgraded.
- Patched IPv6 user interface from Merlin's build.

UI
- Fixed IE and Firefox compatibility issues.
- Network map will show notification when newer firmware available.

Received packet with own address

$
0
0
I am getting this in my RT-N66U log from time to time. I have searched and failed to find the solution to this. Googling the text of the log message shows many questions and no answers.

Feb 22 13:11:32 kernel: eth1: received packet with own address as source address

I am running 3.0.0.4.374.33_0-sdk5. I have tried the obvious, namely ensuring that no 2 devices have the same LAN IP address. Beyond that, I don't know what to do.

Anybody know the remedy?

Question about cable modem channels

$
0
0
I have a friend who is stuck with time warner cable (15mbit down, 1mbit up package), and he is currently having me help him fix an issue with a number of people using his wifi.

backstory:--------------
For some reason, time warner is refusing to change settings, as well as give users access to the web UI of the cable model/ router combo, and it is permanently set to use WEP. The modem is a crappy SMC801W-g. In scanning the network, he has at least 10 other people/ devices using his connection. (time warner did not care that this was happening, and I could not convince them to care)

(basically someone in the area went "hey I just saved a bunch of money on my internet by switching to aircrack-ng", and then probably passed out the key)

This is all on top of an insane monthly rental fee for the modem. So the best solution so far, is to simply buy a new cable modem, and recoup the cost by no longer having to pay the rental fees.

end of backstory:--------------

I recently read a post about about a cable model being offered by netgear, http://www.smallnetbuilder.com/wirel...em-router-pair

And it is listed as supporting 8x4 channels

I was wondering has there been any indepth benchmarks or first hand experience as to whether 8x4 will be of any benefit over 4x4 if the overall connection speed is far below the max supported by either config?

A Motorola SB6121 is cheaper at $67 (he already has an extra wifi router), but does only 4x4

while the netgear does 8x4, and has built in wifi at $100, which may also allow him to not have to use his WRT160n

(I was lucky enough to not have to use cable internet as I was able to move from DSL, right to verizon fios, but now verizon is being lazy and stupid and not expanding the service)

TL: DR

Does 8x4 offer any benefit over 4x4, if the internet connection package is a 15 mbit package (that realistically only gets around 10mbit/s)?
Viewing all 6885 articles
Browse latest View live