Allied Telesis AT-8600 Series, Rapier i Series, AT-8700XL Series manual Appendix 1 ISC DHCP server

Models: AT-8700XL Series AT-8600 Series Rapier i Series

1 26
Download 26 pages 29.76 Kb
Page 25
Image 25
Appendix 1: ISC DHCP server

Appendix 1: ISC DHCP server

Appendix 1: ISC DHCP server

One DHCP server that has been tested against DHCP snooping is ISC DHCP. This is free software with an option of a support contract. At the time of writing this document, ISC DHCP did not support the logging of RFC3993 sub-option 6. For convenience, here is a sample configuration (dhcpd.conf) for ISC DHCP.

This configuration lets you specify the IP that is given to each MAC address. You may easily write a range statement to assign to any client.

ddns-update-style ad-hoc;

option domain-name "test.yourdomain.com"; option domain-name-servers 172.16.1.253; option broadcast-address 172.16.1.255; option subnet-mask 255.255.255.0; use-host-decl-names on;

subnet 172.16.1.0 netmask 255.255.255.0 { #filename "/vmlinuz "; default-lease-time 86400; option subnet-mask 255.255.255.0;

option domain-name "test.yourdomain.com"; option domain-name-servers 172.16.1.1; option routers 172.16.1.1;

option broadcast-address 172.16.1.255; host linux {

hardware ethernet 00:06:5b:31:14:af; fixed-address 172.16.1.100; filename "/vmlinuz ";

}

host test01 {

hardware ethernet 00:00:00:00:00:01; fixed-address 172.16.1.201;

}

host test02 {

hardware ethernet 00:00:00:00:00:02; fixed-address 172.16.1.202;

}

host test03 {

hardware ethernet 00:00:00:00:00:03; fixed-address 172.16.1.203;

}

host RapierMAX {

hardware ethernet 00:00:cd:11:b2:4c; fixed-address 172.16.1.123;

Page 25 AlliedWare™ OS How To Note: DHCP Snooping on Rapier-style switches

Page 25
Image 25
Allied Telesis AT-8600 Series, Rapier i Series, AT-8700XL Series manual Appendix 1 ISC DHCP server