I have this issue with my Linux routes where a certain route, which I did not add, is there.
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
193.219.222.64 0.0.0.0 255.255.255.192 U 0 0 0 eth1
10.0.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth1
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
0.0.0.0 193.219.222.65 0.0.0.0 UG 0 0 0 eth1
I have tried to delete it by issuing the command:
> route del -net 164.254.0.0 netmask 255.255.0.0 gw 193.219.222.65 eth1
; where 164.254.0.0 is the subnet but keep getting the message:
SIOCDELRT: No such process
Why is this so? I am using my linux machine as a DHCP server and because of this, the dhcp clients keep getting IPs from that subnet which is not my design. they are supposed to get IPs fromn the 10.0.0.0 subnet.
Will really appreciate any advice.
Thanks.
The reason why you can't delete the route is because you have a typographical error. You're trying to delete 164.254.0.0 when the route is for 169.254.0.0
The 169.254.0.0 network is reserved for use by Microsoft clients that fail to get a DHCP address. I don't think you have to worry too much about the route itself.
http://www.webopedia.com/TERM/A/APIPA.html
Here is another link
http://www.redhat.com/archives/fedor.../msg02363.html
The reason why your DHCP clients are getting the 169.254.0.0 address is probably because the clients probably cannot connect to the DHCP server and are using the Windows default DHCP failure values.
Doublecheck your DHCP server settings and make sure it is running correctly.
Give a DHCP client a temporary static IP address and see if you can connect to / ping the Linux box. If that doesn't work, you may have a cabling or NIC problem.
Bookmarks