Skip to content

Instantly share code, notes, and snippets.

@crazed
Last active January 2, 2016 15:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crazed/8323783 to your computer and use it in GitHub Desktop.
Save crazed/8323783 to your computer and use it in GitHub Desktop.
dhcpd config for juniper ztp
option option-150 code 150 = ip-address;
option space JUNOS_ZTP;
option JUNOS_ZTP.config-file-name code 1 = text;
option JUNOS_ZTP.image-file-type code 2 = text;
option JUNOS_ZTP.transfer-mode code 3 = text;
option JUNOS_ZTP.alt-image-file-name code 4= text;
option JUNOS_ZTP-encapsulation code 43 = encapsulate JUNOS_ZTP;
subnet 172.16.200.0 netmask 255.255.255.0 {
option routers 172.16.200.1;
range dynamic-bootp 172.16.200.20 172.16.200.30;
option option-150 172.16.200.1;
option JUNOS_ZTP.config-file-name "kickstart.conf";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment