On Fri, Feb 23, 2007 at 01:10:53PM -0500, Jonas Meyer wrote:
> I just tested it, and exactly the same thing happens.  Does anybody have
> any ideas?  This is kind of annoying.
> 

I'd write a decent script to throw into /etc/network/if-up.d to
give you some eyes and ears on what's taking place and how long
it's taking. A good start would even be to just change your 
interfaces file to read [untested]:

iface eth0 inet static
         address 192.168.1.4
         netmask 255.255.255.0
         up strace -o /tmp/route-host -f -s 256 -t route \
                        add -host 192.168.1.2 dev eth0
         up strace -o /tmp/route-gw -f -s 256 -t route \
                        add default gw 192.168.1.2


If it turns out that the route command is the problem (very unlikely 
in my opinion), then you can install the iproute package and use the 
ip command to set up the route. This may or may not work.

As things stand at the moment, there's just way too many variables 
in the mix to start guessing at what the answer is. I partially 
replicated your setup on a debian box, and there were no glaring 
problems. More evidence is required - for my feeble mind at least.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
User-mode-linux-user mailing list
User-mode-linux-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-user

Reply via email to