Typing the command:

% route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
192.168.1.0     *               255.255.255.0   U     2      0        0 wlan0
link-local      *               255.255.0.0     U     1000   0        0 wlan0
(... hang for a while ...)
default         192.168.1.1     0.0.0.0         UG    0      0        0 wlan0

Here, before the last line default rule be printed, route just hang for while.

Isn't the route table cached somewhere?

I used to grep the result from route to get the default rule, to get the default gateway. Now, route seems hang for a while in some machines.

link|improve this question

2  
BTW, it would be more efficient to parse the /proc/net/route file for that information. – Keith Jun 2 '11 at 3:31
The IPs are encoded in hex numbers in /proc/net/route. – Xie Jilei Jun 2 '11 at 5:06
2  
Yes. so you can convert them. If you can't, the output of ip route is also easier to parse. – Keith Jun 2 '11 at 6:53
feedback

1 Answer

up vote 4 down vote accepted

It's trying to do a reverse DNS lookup on the gateway address, and waiting for timeout. Try running with the -n option to suppress that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.