Jerry Kazdan wrote:
The tail of /var/lib/dhcp/dhclient-eth0.lease is below (the earlier
parts are similar but with an earlier expiration time).
Hope this helps resolve the problem.
-- Jerry
/lease {
interface "eth0";
fixed-address 157.181.227.44;
filename "pxelinux.0";
option subnet-mask 255.255.254.0;
option routers 157.181.227.254;
option dhcp-lease-time 3600;
option dhcp-message-type 5;
option domain-name-servers 157.181.226.4,157.181.226.5;
option dhcp-server-identifier 157.181.226.3;
option ntp-servers 157.181.226.3;
option broadcast-address 157.181.227.255;
option host-name "dhcp44.cs.elte.hu";
option domain-name "cs.elte.hu";
renew 4 2005/8/25 15:14:19;
rebind 4 2005/8/25 15:42:46;
expire 4 2005/8/25 15:50:16;
}
Please don't top-post; it makes following a discussion difficult.
The DHCP server is telling the client to create a default route via
157.181.227.254, but for some reason it's not getting set up.
You could do this manually as follows:
# route add default gw 157.181.227.254
What's the output of:
# cd /etc/sysconfig
# fgrep GATEWAY network network-scripts/ifc*
Paul.