Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The dhcpd.conf file should contain the following:

Panelnoformat
unmigrated

ddns-
wiki-markup
update-style none;
ddns-update-style none;
shared-network vmnet1 {
       
        subnet 192.168.0.0 netmask 255.255.0.0 {
                ignore unknown-clients;                 option routers 192.168.0.1;                 host vmguest-1 {                         option host-name "vmguest-1";                         hardware ethernet 00:50:56:1a:01:01;                         fixed-address 192.168.1.1;                         filename "/tftpboot/pxelinux.0";                         option dhcp-server-identifier 192.168.0.1;                         next-server 192.168.0.1;                 }        
                ignore unknown-clients;
                option routers 192.168.0.1;                host vmguest-1 {
                        option host-name "vmguest-1";
                        hardware ethernet 00:50:56:1a:01:01;
                        fixed-address 192.168.1.1;
                        filename "/tftpboot/pxelinux.0";
                        option dhcp-server-identifier 192.168.0.1;
                        next-server 192.168.0.1;
                }
        }
}

The DHCP daemon should only listen on the virtual private network (vmnet1) to avoid conflicts with other production VCL networks.  Configure the dhcpd service startup script to only listen on the vmnet1 interface:

...