#!/bin/sh #DNS2GO SAMPLE CONFIG FILE #by Hernan Freschi on 25/11/01. #for details read dns2go.conf (5) manpage. included raw on this distro. . /etc/config echo "Configuring DNS2GO Client..." echo "#debug=1" > /etc/dns2go.conf echo "heartbeat-rate=0" >> /etc/dns2go.conf echo "#log=no" >> /etc/dns2go.conf echo "key=${D2G_KEY}" >> /etc/dns2go.conf echo "retries=-1" >> /etc/dns2go.conf echo "server=discovery.dns2go.com" >> /etc/dns2go.conf echo "domain=${D2G_DOMAIN}" >> /etc/dns2go.conf echo "#offline=ip=none" >> /etc/dns2go.conf echo "#offline-url=none" >> /etc/dns2go.conf echo "#www-redirect-port=none" >> /etc/dns2go.conf echo "#www-redirect-url=none" >> /etc/dns2go.conf /bin/dns2go & echo "Done!."