#####################################################################   #####################################################################     IP_ADDRESS=<Âàø IP>   NETMASK=<Ìàñêà>   GATEWAY=<Øëþç>     #####################################################################   #####################################################################     VPI=0   VCI=35       TEXTDOMAIN=`basename $0`     # Load ATMARP daemon   pid=`pidof atmarpd`   if [ "$pid" = "" ]; then   atmarpd -b -l syslog -m || exit 1   sleep 1s   fi     while ! grep -q "atm0" /proc/net/dev;   do   atmarp -c atm0||echo "I think, ADSL modem is not started, but will retry"   sleep 4s   done     ifconfig atm0 $IP_ADDRESS netmask $NETMASK up || exit 1   sleep 1s     if route -n | cut -d' ' -f1 | grep -q "0.0.0.0"; then   route del default || exit 1   fi     while ! atmarp -s $GATEWAY 0.$VPI.$VCI   do   echo "I think, ADSL modem is not loaded, retry"   sleep 4s   done     route add default gw $GATEWAY || exit 1