Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Jan 1997 10:11:11 +1100 (EST)
From:      Anthony Hill <ahill@interconnect.com.au>
To:        "Sean J. Schluntz" <schluntz@pinpt.com>
Cc:        questions@freebsd.org
Subject:   Re: Dial In PPP & Dial Back.
Message-ID:  <Pine.BSI.3.91.970128100337.12607A-100000@tulpi.interconnect.com.au>
In-Reply-To: <Chameleon.853809074.List@journeyman>

next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, 20 Jan 1997, Sean J. Schluntz wrote:

> How can you configure FreeBSD to accept a dial back?  I'm going to be dialing 
> in long distance from home to the office on an ISDN line and the Shiva 
> LANRover will be doing dial back for security and telco charges.  How do I set 
> FreeBSD up so that I can do the dial in, hang up and accept a call back to log 
> into the network?

I just wrote a little script that waits a few mins, runs ppp, sets up a keep 
alive ping, and exits.  Something like..

#!/usr/bin/sh
#connectup.sh
#
sleep 100 
ppp work &
sleep 100
ping -i 119 some.address.at.work &

So I just dial into the freeBSD box, get a terminal session happening, 
execute 'nohup connect.sh &' and hang up. 100 seconds later my machine 
dials back into work, establishes a ppp session, and all is cool.
 
cheers



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSI.3.91.970128100337.12607A-100000>