Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'A script to find a router's public non-static IP address' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A script to find a router's public non-static IP address
Authored by: gxw on Oct 24, '05 01:54:36PM

The sript in the hint doesn't work with a Netgear prosafe vpn firewall router either. Couple of the scripts in the comments work fine.

curl -s http://checkip.dyndns.org | awk '{print $6}' | awk ' BEGIN { FS = "<" } { print $1 } '

and

http://whatsmyip.com



[ Reply to This | # ]