\begin{[EMAIL PROTECTED]}
> I've recently added an ADSL link to a Debian box also with a permanent modem
> link. What I want to do now is configure it in such a way that the ADSL
> waits or comes up after the dial up connection is made. Where should I be
> looking to do this?

in /etc/ppp/ip-up.d/ put this script:

 #! /bin/sh
 test $PPP_IFACE == ppp0 && ifup ppp1

that relies on your dialup always being ppp0 and using ifup(8) to
bring interfaces up, as it would be if you had set it up in
/etc/network/interfaces. if you just use pon(8), you may want to use
this line instead:

 test $PPP_LOCAL == $myip && pon dsl-provider

(where $myip is the IP address that your dialup line gets (i'm
assuming its a static IP))

-- 
 - Gus


-- 
SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/
More Info: http://slug.org.au/lists/listinfo/slug

Reply via email to