#!/bin/sh # PRIMARY_DNS=$DNS1 SECONDARY_DNS=$DNS2 eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings) if [ "$DNS" == "Automatic" ]; then if [ "$TYPE" == "isdn" ]; then echo -n "$MS_DNS1" > /var/ipfire/red/dns1 echo -n "$MS_DNS2" > /var/ipfire/red/dns2 else echo -n "$PRIMARY_DNS" > /var/ipfire/red/dns1 echo -n "$SECONDARY_DNS" > /var/ipfire/red/dns2 fi else echo -n "$DNS1" > /var/ipfire/red/dns1 echo -n "$DNS2" > /var/ipfire/red/dns2 fi echo -n "$1" > /var/ipfire/red/iface echo -n "$4" > /var/ipfire/red/local-ipaddress echo -n "$5" > /var/ipfire/red/remote-ipaddress touch /var/ipfire/red/active [ -e "/var/ipfire/ppp/nobeeps" ] || /etc/rc.d/init.d/beep up