Project

General

Profile

Bug #5893

Updated by Jim Thompson about 8 years ago


 I add Additional BOOTP/DHCP Options value 125 as string in dhcp server setting page. 
 But it does't work. 
 I use wireshark to view dhcp package,and there is no option 125 in package too. 
 So i think it does't work. 

 And i try to send other value it does not work too 

 this is dhcpd.conf 



 option ldap-server code 95 = text; 
 option domain-search-list code 119 = text; 
 option arch code 93 = unsigned integer 16; # RFC4578 
 option custom-opt5-0 code 125 = string; 
 option custom-opt5-1 code 2495 = text; 
 option custom-opt1-0 code 125 = string; 
 option custom-opt1-1 code 254 = text; 

 default-lease-time 7200; 
 max-lease-time 86400; 
 log-facility local7; 
 one-lease-per-client true; 
 deny duplicates; 
 ping-check true; 
 update-conflict-detection false; 
 authoritative; 
 subnet 192.168.2.0 netmask 255.255.255.0 { 
	 pool { 
		 range 192.168.2.100 192.168.2.200; 
	 } 

	 option routers 192.168.2.1; 
	 option domain-name-servers 192.168.2.1; 

	 option custom-opt1-0 00:00:00:00:14:02:06:48:47:57:2d:43:54:0a:02:20:00:0b:02:00:55:0d:02:00:2e; 
 }

Back