System information

Configuring the DHCP Server
78 AlterPath OnBoard Administrator’s Guide
4. Remove the comment (#) signs at the beginning of the lines.
5. Configure a hostname and fixed address for each device by performing
the following steps.
a. Find the line that begins “host MySP,” and replace “MySP” with a
hostname/alias for the device, for example, “host sp1.”
b. Specify the MAC address of the device on the line that begins
“hardware ethernet,” for example, “hardware ethernet
00:60:2e:bb:aa:aa.”
c. Specify the desired IP address for the device on the line that begins
“fixed-address,” for example, “fixed-address 192.168.0.21.”
# ######## SAMPLE CONFIGURATION ###############
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.110 192.168.0.119;
default-lease-time 86400;
max-lease-time 172800;
option broadcast-address 192.168.0.255;
option routers 192.168.0.10;
option subnet-mask 255.255.255.0;
option domain-name-servers 192.168.0.11;
option domain-name “cyclades.com.au”;
host MySP {
hardware ethernet 00:e0:4c:ec:12:26;
fixed-address 192.168.0.211;
}
}
# ##############################################