Dynamic IP update (to DNS service like zoneedit or dyndns) inside a local LAN or behind a router


/ Published in: Bash
Save to your folder(s)

Useful if you are behind a router, or in a LAN, and you didn't make (or can't have) a direct ppp connection to the ISP.
Change "myweb.com" to the correct hostname
For example to update zoneedit zone:
#update_dns_ip.sh
wget -O - --http-user= --http-passwd= 'http://dynamic.zoneedit.com/auth/dynamic.html?host='
(complete user, pass and host)


Copy this code and paste it in your HTML
  1. #!/bin/sh
  2. newip=`wget -o /dev/null -O - http://simple.showmyip.com | cut -f1 -d' ' | sed -n 1p`
  3. presentip=`host myweb.com | sed -n 1p | cut -d' ' -f4`
  4. if [ "$newip" != "$presentip" ]; then update_dns_ip.sh; fi

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.