Recent content by mrvain

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. M

    Rmerlin, please introduce a time delay setting for Wan Connection at boot

    Unfortunately it turned out the same issues are present if the modem disconnects for some reason or goes down. Even if the router is up and running it won't be able to connect to the ISP after the modem reconnects/powers up. So I had to move the wan-check script invocation from services-start to...
  2. M

    Does ez-ipupdate work with Asus DDNS?

    I think it is Asus-specific parameter. If you don't specify it it asks for DynDNS username and password. I don't like no-ip.com as their free service requires you to log in periodically to keep your account. You can also go for freedns.afraid.org, I put script for it in another thread...
  3. M

    Does ez-ipupdate work with Asus DDNS?

    I concluded the syntax from some Asus source code files available on googlecode.com: http://lamadanu-latest.googlecode.com/git-history/4d8ea9a0b3a055b77b18a0eed38aab6476a200e8/trunk/user/rc/services_ex.c doSystem("ez-ipupdate -h %s -s ns1.asuscomm.com -S dyndns -i %s -A 1", ddns_hnm, wan_ifname);
  4. M

    Rmerlin, please introduce a time delay setting for Wan Connection at boot

    I logged in into the Cisco EPC3208 management interface, but there are no DHCP related settings. There are not too many options you can change to be honest, the modem works in bridge mode and is invisible for the router.
  5. M

    Rmerlin, please introduce a time delay setting for Wan Connection at boot

    Yes, I tried that trick as well, but with no success. I think it is somehow related to the fact that router boots up faster than modem. It tries to get WAN IP and gets into some strange loop as it can't refresh the IP through DHCP. Once I restart the WAN interface from GUI/CLI I get the IP...
  6. M

    Dynamic DNS and wan-start?

    A better version of the script to have status of Afraid DynDNS updates in the syslog: /jffs/scripts/wan-start #!/bin/sh sleep 5 WGET_ERROR=$(wget -q -T 1 -O - http://freedns.afraid.org/dynamic/update.php?VVhTVFblablablabla | grep -v -i "has not changed" | grep -i error) if [ -n...
  7. M

    Rmerlin, please introduce a time delay setting for Wan Connection at boot

    OK, I returned to AsusWRT-Merlin firmware again having some idea in mind. At the end I managed to solve the issue by using nice workaround. Basically I noticed that the issue can be solved by restarting WAN interface: service restart_wan Or by splitting it into two commands: service stop_wan...
  8. M

    Rmerlin, please introduce a time delay setting for Wan Connection at boot

    I decided to switch to TomatoARM by Shibby. Since yesterday I didn't have any single issue with WAN connection regardless how many times I do power-cycle. So something is definitely wrong with AsusWRT firmware. I will stick with Tomato until someone finds some solution. BTW, I was just...
  9. M

    Does ez-ipupdate work with Asus DDNS?

    For those who wonder how to refresh Asus DynDNS status from the command line it is how to do it: ez-ipupdate -h your_name.asuscomm.com -s ns1.asuscomm.com -S dyndns -i eth0 -A 1 >& /dev/null I put it into crontab as sometimes it does not update the IP after router start-up.
  10. M

    Dynamic DNS and wan-start?

    I just faced the same issue as freedns.afraid.org is not supported by Asuswrt-Merlin by default. But you can easily update it just by getting rid of some of the parameters which are not supported by busybox version of wget: /jffs/scripts/wan-start: #!/bin/sh sleep 5 wget -q -T 1 -s...
  11. M

    Rmerlin, please introduce a time delay setting for Wan Connection at boot

    Hi everybody, I'm using Asus RT-AC68U with AsusWRT-Merlin 3.0.0.4_374.42_2 connected to UPC managed cable modem Cisco EPC3208. Unfortunately I'm experiencing the same issue as described in this thread and most of the time if the router and cable modem is powered off at night and powered on in...
Top