Last active
January 2, 2016 15:29
-
-
Save crazed/8323783 to your computer and use it in GitHub Desktop.
dhcpd config for juniper ztp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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