#------------------------------------------------------------------------------ # /etc/rc.d/rc350.ppp - ppp for serial lines # was file /etc/rc.d/rc650.ppp # # Creation: 21.08.2000 fm # Last Update: $Id$ #------------------------------------------------------------------------------ if [ "$OPT_PPP" = yes ] then begin_script PPP "starting pppd for serial connection ..." do_modprobe ppp_async if [ "PPP_DEV" != "" ] then ppp_options='crtscts silent persist noauth' /usr/sbin/pppd /dev/$PPP_DEV $PPP_SPEED $ppp_options $PPP_IPADDR:$PPP_PEER fi end_script fi