N
NParker
Guest
I'm sure that this issue has been beaten to death in several threads, but I'm having a hell of a time getting my DynDNS to work.
Here's the situation: My apartment complex, in their infinite wisdom, chose to use a new ISP that set up a complex-wide network. This being the case, everything on it (my router!) is behind their equipment as well in a wonderful double NAT setup.
I have no access to the equipment on their end and they refuse to give me a flat public IP, so I've been trying everything I can come up with to get my ddns working again. I've tried a custom ddns-start script, but it didn't really work like it ought to.
#!/bin/sh
username=myuser
password=mypassword
yourhostname=host.domain.org
wget -q http://username:password@members.dyndns.org/nic/update?hostname=yourhostname&myi$
if [ $? -eq 0 ]; then
/sbin/ddns_custom_updated 1
else
/sbin/ddns_custom_updated 0
fi
Wget returns an HTTP1.1 403 Forbidden error (they're probably blocking something) and trying to use curl results in an equal failure. I'm at a loss.
Here's the situation: My apartment complex, in their infinite wisdom, chose to use a new ISP that set up a complex-wide network. This being the case, everything on it (my router!) is behind their equipment as well in a wonderful double NAT setup.
I have no access to the equipment on their end and they refuse to give me a flat public IP, so I've been trying everything I can come up with to get my ddns working again. I've tried a custom ddns-start script, but it didn't really work like it ought to.
#!/bin/sh
username=myuser
password=mypassword
yourhostname=host.domain.org
wget -q http://username:password@members.dyndns.org/nic/update?hostname=yourhostname&myi$
if [ $? -eq 0 ]; then
/sbin/ddns_custom_updated 1
else
/sbin/ddns_custom_updated 0
fi
Wget returns an HTTP1.1 403 Forbidden error (they're probably blocking something) and trying to use curl results in an equal failure. I'm at a loss.