DHCP client state if rebooted when local DHCPD server is offline?

terrygalant.lists at fastest.cc terrygalant.lists at fastest.cc
Thu Aug 14 19:28:32 UTC 2014



On Thu, Aug 14, 2014, at 12:07 PM, Gregory Sloop wrote:
> tlfc> There's a "bad udp cksum" in there that doesn't look so good. 

I fixed that by disabling offloading on that interface

	ethtool -K eth1 gro off
	ethtool --offload  eth0  rx off  tx off
	ethtool -K eth0 gso off

> This dhcp client [or server] isn't hanging off a wireless network/bridge is it?

Nope.

> Can you describe the physical network setup. 

Pretty simple

	INTERNET
	 |
	ADSL MODEM
	 |
	 | eth0
	SERVER
	 | eth1
	 |
	ETHERNET SWITCH
	 |
	 | eth0
	CLIENT

> Finally, if you think it's not a network problem, I'd set the DHCP server up very simply. Make sure it works in a *very* basic setup, then tweak to do more esoteric things.

That's what I'm trying to do :-/

The config is pretty basic, admitting I cobbled it together piecemeal from posts,

cat /etc/dhcpd.conf
	authoritative;
	one-lease-per-client true;
	default-lease-time 14400;
	ddns-update-style none;
	ping-check true;
	shared-network "home-lan" {
	        subnet 10.16.10.0 netmask 255.255.255.0 {
	                range 10.16.10.2 10.16.10.64;
	                option subnet-mask 255.255.255.0;
	                option routers 10.16.10.1;
	                default-lease-time 14400;
	                max-lease-time 172800;
	                option domain-name "MYDOMAIN.net";
	                option domain-name-servers 10.16.10.1;
	        }
	        subnet 10.17.10.0 netmask 255.255.255.0 {
	                option subnet-mask 255.255.255.0;
	                option routers 10.17.10.1;
	        }
	}
	host tgdesktop.MYDOMAIN.net {
		hardware ethernet XX:XX:XX:XX:XX:XX;
		fixed-address 10.16.10.16,10.17.10.16;
	}



More information about the dhcp-users mailing list