I’m back to attempting to set up template-based provisioning for my network (it’s something I pick up when I have downtime), and I’m curious if it’s possible to use a 6900 switch as the DHCP server (as defined here). Each time I attempt to copy the configuration from the document, the dhcpd.conf file reverts as soon as I do “dhcp-server restart” and my changes end up in dhcpd.bad.
option space tbp;
option tbp.vendor code 1 = text;
option tbp.activation-server code 128 = text;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.10 192.168.1.100;
option routers 192.168.1.254;
option subnet-mask 255.255.255.0;
option domain-search “example.com”;
option domain-name-servers 10.1.1.1;
option ntp-servers 10.1.1.1;
vendor-option-space tbp;
option tbp.vendor “alenterprise”;
option tbp.activation-server “as-lite.myovcloud.net”;
}