On Fri, 20 Dec 2002, Scott Mitchell wrote:

> On Fri, Dec 20, 2002 at 08:47:33PM +1300, Jonathan Chen wrote:
> > On Fri, Dec 20, 2002 at 06:59:18AM +0000, P. U. Kruppa wrote:
> > > Hi!
> > >
> > > I have a well working user ppp configuration, which I run
> > > manually by
> > > # ppp -nat -ddial adsl
> > > What is the simpliest way to start this automatically on boot up?
> >
> > By adding the following lines into your /etc/rc.conf:
> >
> >     ppp_enable="YES"
> >     ppp_mode="ddial"
> >     ppp_profiles="adsl"
>
> You might want
>
>       ppp_nat="YES"
>
> in there as well
In the meantime I found # man   and copied/edited this
- working -     /usr/local/etc/rc.d - script:

          -------------------------------------------
#!/bin/sh -
#
#    initialization/shutdown script for pppd
case "$1" in
start)
    /usr/sbin/ppp -nat -ddial adsl && echo -n ' pppd'
    ;;
stop)
    kill `cat /var/run/foo.pid` && echo -n ' pppd'
    ;;
*)
    echo "unknown option: $1 - should be 'start' or 'stop'" >&2
    ;;
esac
         ------------------------------------------

Does this do anything substantially different to your idea?


Uli.

*-----------------------------------*
*        Peter Ulrich Kruppa        *
*          -  Wuppertal -           *
*              Germany              *
*-----------------------------------*


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to