rejected: incoming update is less critical than outgoing update

Face falazemi at gmail.com
Thu Jun 16 17:40:40 UTC 2011


Hello all,

I Keep receiving this error on both primary and secondry:
------------------------------------------------------------------------
Jun 16 19:31:16 localhost dhcpd: bind update on 10.0.0.22 from
MyNetwork rejected: incoming update is less critical than outgoing
update
Jun 16 19:31:36 localhost dhcpd: bind update on 10.0.0.19 from
MyNetwork rejected: incoming update is less critical than outgoing
update
Jun 16 19:31:36 localhost dhcpd: bind update on 10.0.0.19 from
MyNetwork rejected: incoming update is less critical than outgoing
update
Jun 16 19:39:14 localhost dhcpd: bind update on 10.0.0.21 from
MyNetwork rejected: incoming update is less critical than outgoing
update
Jun 16 19:39:14 localhost dhcpd: bind update on 10.0.0.21 from
MyNetwork rejected: incoming update is less critical than outgoing
update
Jun 16 19:52:02 localhost dhcpd: bind update on 10.0.0.18 from
MyNetwork rejected: incoming update is less critical than outgoing
update
Jun 16 19:52:02 localhost dhcpd: bind update on 10.0.0.18 from
MyNetwork rejected: incoming update is less critical than outgoing
update
Jun 16 19:58:02 localhost dhcpd: bind update on 10.0.0.20 from
MyNetwork rejected: incoming update is less critical than outgoing
update
Jun 16 19:58:02 localhost dhcpd: bind update on 10.0.0.20 from
MyNetwork rejected: incoming update is less critical than outgoing
update
------------------------------------------------------------------------

Evrey thing seem to be working fine however i am not sure if my configration
is correct


Any help would be much appreciated.



primary-----------------------------------------------------------------
ddns-update-style none;log-facility local7;authoritative;

failover peer "MyNetwork" (
	 primary;
	 address 10.0.1.1;
	 peer address 10.0.1.2;
	 max-response-delay 60;
	 max-unacked-updates 10;
	 mclt 3600;
	 split 128;
	 load balance max seconds 3;	
)

key DHCP_UPDATER ( # DNS UPDATE SECURITY
	algorithm HMAC-MD5.SIG-ALG.REG.INT;
    secret pRP5FapFoJ95JEL06sv4PQ==;
);
zone example.com (
	primary 127.0.0.1;
	key DHCP_UPDATER;
)
zone 1.0.10.in-addr.arpa (
	primary 127.0.0.1;
	key DHCP_UPDATER;
)

Class "A-class" (match hardware;)
	subclass "A-class" 1:xx:xx:xx:xx:4D:22;
	subclass "A-class" 1:xx:xx:xx:xx:AF:BA;

Class "B-class" (match hardware;)
	subclass "B-class" 1:xx:xx:xx:xx:70:CC;
	subclass "B-class" 1:xx:xx:xx:xx:94:F7;
	subclass "B-class" 1:xx:xx:xx:xx:fb:45;
	subclass "B-class" 1:xx:xx:xx:xx:44:6C;
	subclass "B-class" 1:xx:xx:xx:xx:81:da;
	subclass "B-class" 1:xx:xx:xx:xx:c5:52;

Class "C-class" (match hardware;)
	subclass "C-class" 1:xx:xx:xx:xx:86:fe;
	subclass "C-class" 1:xx:xx:xx:xx:30:bb;
	subclass "C-class" 1:xx:xx:xx:xx:c7:dc;
	subclass "C-class" 1:xx:xx:xx:xx:ad:a9;

group (
	host PC1-eth (hardware ethernet xx:xx:xx:xx:4D:22;fixed-address 10.0.1.3;)
	host PC2-eth (hardware ethernet xx:xx:xx:xx:AF:BA;fixed-address 10.0.1.4;	)
)

group (
	host PC3-wifi (hardware ethernet xx:xx:xx:xx:70:CC;fixed-address
10.0.1.11;)
	host PC4-eth (hardware ethernet xx:xx:xx:xx:94:F7;fixed-address 10.0.1.12;)
	host PC5-eth (hardware ethernet xx:xx:xx:xx:44:6C;fixed-address 10.0.1.13;)
)

Shared-network Networks (
	subnet  10.0.0.0 netmask 255.255.255.192 (
		option routers                  10.0.0.1;
		option subnet-mask              255.255.255.192;
		option broadcast-address        10.0.0.63;
		option domain-name-servers      8.8.8.8,8.8.4.4;
		option domain-name 				"home";
		option ntp-servers              10.0.0.1;
		option netbios-name-servers     10.0.0.1;
		option netbios-node-type 2;default-lease-time 600;max-lease-time 7200;
		pool (
			failover peer "MyNetwork";
			range 10.0.0.10 10.0.0.62;
			deny members of "A-class";
			deny members of "B-class";
			deny members of "C-class";
		)
	)
	subnet 10.0.1.0 netmask 255.255.255.224 (
		option routers                  10.0.1.1;
		option subnet-mask              255.255.255.224;
		option broadcast-address        10.0.1.31;
		option domain-name 				"example.com";
		option domain-name-servers      10.0.1.1,10.0.1.2;
		option ntp-servers              10.0.1.1;
		option netbios-name-servers     10.0.1.1;
		option netbios-node-type 2; default-lease-time 600;max-lease-time 7200;
		pool (
			failover peer "MyNetwork";
			range 10.0.1.21 10.0.1.30;
			allow  members of "C-class";
		)
	)
)



secondary-----------------------------------------------------------------
ddns-update-style none;log-facility local7;authoritative;

failover peer "MyNetwork" (
	 secondary;
	 address 10.0.1.2;
	 peer address 10.0.1.1;
	 max-response-delay 60;
	 max-unacked-updates 10;
	 mclt 3600;
	 split 128;
	 load balance max seconds 3;	
)

key DHCP_UPDATER ( # DNS UPDATE SECURITY
	algorithm HMAC-MD5.SIG-ALG.REG.INT;
    secret pRP5FapFoJ95JEL06sv4PQ==;
);
zone example.com (
	primary 127.0.0.1;
	key DHCP_UPDATER;
)
zone 1.0.10.in-addr.arpa (
	primary 127.0.0.1;
	key DHCP_UPDATER;
)

Class "A-class" (match hardware;)
	subclass "A-class" 1:xx:xx:xx:xx:4D:22;
	subclass "A-class" 1:xx:xx:xx:xx:AF:BA;

Class "B-class" (match hardware;)
	subclass "B-class" 1:xx:xx:xx:xx:70:CC;
	subclass "B-class" 1:xx:xx:xx:xx:94:F7;
	subclass "B-class" 1:xx:xx:xx:xx:fb:45;
	subclass "B-class" 1:xx:xx:xx:xx:44:6C;
	subclass "B-class" 1:xx:xx:xx:xx:81:da;
	subclass "B-class" 1:xx:xx:xx:xx:c5:52;

Class "C-class" (match hardware;)
	subclass "C-class" 1:xx:xx:xx:xx:86:fe;
	subclass "C-class" 1:xx:xx:xx:xx:30:bb;
	subclass "C-class" 1:xx:xx:xx:xx:c7:dc;
	subclass "C-class" 1:xx:xx:xx:xx:ad:a9;

group (
	host PC1-eth (hardware ethernet xx:xx:xx:xx:4D:22;fixed-address 10.0.1.3;)
	host PC2-eth (hardware ethernet xx:xx:xx:xx:AF:BA;fixed-address 10.0.1.4;	)
)

group (
	host PC3-wifi (hardware ethernet xx:xx:xx:xx:70:CC;fixed-address
10.0.1.11;)
	host PC4-eth (hardware ethernet xx:xx:xx:xx:94:F7;fixed-address 10.0.1.12;)
	host PC5-eth (hardware ethernet xx:xx:xx:xx:44:6C;fixed-address 10.0.1.13;)
)

Shared-network Networks (
	subnet  10.0.0.0 netmask 255.255.255.192 (
		option routers                  10.0.0.1;
		option subnet-mask              255.255.255.192;
		option broadcast-address        10.0.0.63;
		option domain-name-servers      8.8.8.8,8.8.4.4;
		option domain-name 				"home";
		option ntp-servers              10.0.0.1;
		option netbios-name-servers     10.0.0.1;
		option netbios-node-type 2;default-lease-time 600;max-lease-time 7200;
		pool (
			failover peer "MyNetwork";
			range 10.0.0.10 10.0.0.62;
			deny members of "A-class";
			deny members of "B-class";
			deny members of "C-class";
		)
	)
	subnet 10.0.1.0 netmask 255.255.255.224 (
		option routers                  10.0.1.1;
		option subnet-mask              255.255.255.224;
		option broadcast-address        10.0.1.31;
		option domain-name 				"example.com";
		option domain-name-servers      10.0.1.1,10.0.1.2;
		option ntp-servers              10.0.1.1;
		option netbios-name-servers     10.0.1.1;
		option netbios-node-type 2; default-lease-time 600;max-lease-time 7200;
		pool (
			failover peer "MyNetwork";
			range 10.0.1.21 10.0.1.30;
			allow  members of "C-class";
		)
	)
)

-- Sincerely,
 falazemi



More information about the dhcp-users mailing list