Reference Guide
Bare Metal Provisioning 2.0 | 257
MAC-Based IP assignment
One way to use the BMP mode most efficiently is to configure the DHCP server to assign a fixed IP
address, Dell Networking OS image, and configuration file based on the switch’s MAC address. When this
is done, the same IP address is assigned to the switch even on repetitive reloads and the same configuration
file will be retrieved when using the DNS server or the network-config file to determine the hostname.
The assigned IP address is only used to retrieve the files from the file server. It is discarded after the files
are retrieved.
Following is an example of a configuration of the DHCP server included on the most popular Linux
distributions. The dhcpd.conf file shows assignment of a fixed IP address and configuration file based on
the MAC address of the switch.
option config-file "ftp://user:passwd@10.20.4.1//home/user/
S5000-1.conf";
FTP URL with IP address
option config-file "http://myserver/S5000-1.conf";
HTTP URL with hostname
(requires DNS)
option config-file "tftp://10.10.4.1/S5000-1.conf";
TFTP URL with IP address
option config-file "flash://S5000-1.conf";
Flash path relative to /f10/flash
directory
Parameter Example Description
option boot-filename code 67 = text;
option tftp-server-address code 150 = ip-address;
option config-file code 209 = text;
subnet 10.20.30.0 netmask 255.255.255.0 {
option domain-name-servers 20.30.40.1, 20.30.40.2;
host S5000-1 {
hardware ethernet 00:01:e8:8c:4d:0e;
fixed-address 10.20.30.41;
option boot-filename "tftp://10.20.4.1/Dell-SE-9.1(1.0).bin";
option config-file "http://10.20.4.1/S5000-1.conf";
}
BMP 2.0 Syntax
MAC to IP mapping
Dell Networking OS image
Config file
host S5000-2 {
hardware ethernet 00:01:e8:8c:4c:04;
fixed-address 10.20.30.42;
option tftp-server-address 10.20.4.1;
filename "Dell-SE-9.1(1.0).bin";
option config-file "S5000-2.conf";
}
BMP1.0 syntax
MAC to IP mapping
Dell Networking OS image
Config file










