Kevin Buhr <[EMAIL PROTECTED]> writes:
>
> and change it to this:
>
>         iface eth0 inet manual
>               up dhclient3 -lf /var/lib/dhcp3/dhclient.$IFACE.leases -pf 
> /var/run/dhclient.$IFACE.pid $IFACE
>               down kill $(< /var/run/dhclient.$IFACE.pid)

Whoops.  One problem with this is that it doesn't actually bring the
interface down.  I hadn't noticed before.  You might want to add one
more line, like so, and I think that will work properly:

         iface eth0 inet manual
               up [same as above]
               down kill $(< /var/run/dhclient.$IFACE.pid)
               down ifconfig $IFACE down

-- 
Kevin Buhr <[EMAIL PROTECTED]>


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to