OpenWRT

MARCA .ORG COMPAT.
OpenWRT X X
Industrial DNS - DNS Dinamico Professionale - Dispositivi Supportati - Openwrt

Configurazione software OpenWRT

Il software OpenWRT può essere configurato con Industrial DNS utilizzando la modalità compatibile .org utilizzando un differente entry point.
Il seguente script bash consente di configurare Openwrt RC5 asterisk 1.2.7 PBX e Linksys WRT54GL 1.1 e deve essere inserito in /etc/init.d/
Prima di procedere con la configurazione creare in /tmp/dir il vecchio file DNS.

#!/bin/sh
HOSTNAME=example.homepc.it
USERNAME=users
PASSWORD=password
TEMPDIR=/tmp

wget -O $TEMPDIR/dyndns.new.ip http://checkip.dyndns.org/index.html
if [ “`cat $TEMPDIR/dyndns.new.ip`” = “`cat $TEMPDIR/dyndns.old.ip`” ]
then echo “No new IP”;
else wget -O $TEMPDIR/dyndns.upd.ip http://$USERNAME:$PASSWORD@streamer.net/nic/update?hostname=$HOSTNAME
echo “New IP”;
cat $TEMPDIR/dyndns.upd.ip;
rm $TEMPDIR/dyndns.upd.ip;
fi
rm -f $TEMPDIR/dyndns.old.ip
mv $TEMPDIR/dyndns.new.ip $TEMPDIR/dyndns.old.ip