• 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!

Recent content by hawke84

  1. H

    DDNS - duckdns.org

    this worked for me #!/bin/sh curl -k "https://www.duckdns.org/update?domains=xxxxx&token=xxxxxx if [ $? -eq 0 ]; then /sbin/ddns_custom_updated 1 else /sbin/ddns_custom_updated 0 fi fill in the xxx with your domain and token. save this as ddns-start my original thread...
  2. H

    USB Webcam setup

    Hi, wondering if anyone can help. im trying to setup my router with a usb webcam following this guide: https://www.asuswrt.eu/webcam-video-surveillance-via-mjpg-streamer/ all goes fine but cant connect to the webpage http://192.168.1.1:9999/stream_simple.html get this error...
  3. H

    DuckDNS Setup

    yay!! :D -curl did it. ok for anyone wanting to update duckdns or use duckdns this is the script i used: #!/bin/sh curl -k "https://www.duckdns.org/update?domains=yyyyyy&token=xxxxx" if [ $? -eq 0 ]; then /sbin/ddns_custom_updated 1 else /sbin/ddns_custom_updated 0 fi xxxxx is your...
  4. H

    DuckDNS Setup

    I'm assuming executing script through winscp actually runs the script so if it was working it would be updating?
  5. H

    DuckDNS Setup

    Just tried curl with the address in "" it won't execute without it runs on but doesn't update dns.
  6. H

    DuckDNS Setup

    yep done in notepad++ i've managed to get the script to run ok but its not updating mydns, i've manually changed myip to 111.111.111.111 so i can see when it gets corrected and so far it records success but no update. script that runs ok: #!/bin/sh wget -qO -...
  7. H

    DuckDNS Setup

    with duck dns seems that if you enter the address in browser with username and password it just brings up the page saying "ok" so im assuming i'll just need my script to visit the page and it will get the username and password at duckdns' end? im trying something different, this is my script...
  8. H

    DuckDNS Setup

    This is as fas as i've got so far. I stole this from somewhere else and been trying to modify it: services-start #!/bin/sh /usr/sbin/cru a ScheduledReboot "0 7 * * * reboot" /usr/sbin/cru a ScheduledDDNS "5 1,3,5,7,9,11,13,15,17,19,21,23 * * * /jffs/scripts/up.sh" up.sh #!/bin/sh while [ ! -n...
  9. H

    DuckDNS Setup

    Just to make my life more complicated im my main asus router is behind another router (UK Sky) which sees my real WAN IP address so the Asus sees a fake WAN so im guessing this will cause me issues too depending on where it reads the WAN IP from....
  10. H

    DuckDNS Setup

    i'll give it a go and maybe write a little tutorial in here for anyone else in a similar situation who finds this thread... im used to android adb so im hoping it will be similar :rolleyes:
  11. H

    DuckDNS Setup

    Thanks for the replies, I would like to try and get DuckDNS working as ive given the address to a lot of people for my FTP server and i've linked it in a lot of places. @GSpock, is there any more of a noob guide on how to create and add a script to the router, i dont know enough about telnet /...
  12. H

    DuckDNS Setup

    Hi, Just got myself a new RT-AC66U router and DD-wrt seems to be particularly flaky on this router so i found Asusmerlin. im struggling setting up a custom DNS, I'm trying to setup Duckdns but i cant figure out how to create a custom script. i've gone through the wiki and searched the forum...
Back
Top