Difference between revisions of "Bootpd.plist"
Line 1: | Line 1: | ||
− | ==WARNING== | + | ==Bootpd File== |
+ | |||
+ | |||
+ | ===WARNING=== | ||
This is a sample file DO NOT USE THIS IN YOUR ENVIRONMENT!!!! OS X Server app will generate most of this code for you, this example file is to show you the place where the generated code needs to be placed. | This is a sample file DO NOT USE THIS IN YOUR ENVIRONMENT!!!! OS X Server app will generate most of this code for you, this example file is to show you the place where the generated code needs to be placed. | ||
For Reference, your generated code should be placed between "dhcp_domain_search" and "dhcp_router" | For Reference, your generated code should be placed between "dhcp_domain_search" and "dhcp_router" | ||
− | ==bootpd.plist Example== | + | ===bootpd.plist Example=== |
<?xml version="1.0" encoding="UTF-8"?><br/> | <?xml version="1.0" encoding="UTF-8"?><br/> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><br/> | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><br/> |
Latest revision as of 14:30, 19 January 2015
Bootpd File
WARNING
This is a sample file DO NOT USE THIS IN YOUR ENVIRONMENT!!!! OS X Server app will generate most of this code for you, this example file is to show you the place where the generated code needs to be placed.
For Reference, your generated code should be placed between "dhcp_domain_search" and "dhcp_router"
bootpd.plist Example
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NetBoot</key>
<dict>
<key>startTime</key>
<string>2014-12-12 15:30:07 +0000</string>
</dict>
<key>Subnets</key>
<array>
<dict>
<key>allocate</key>
<true/>
<key>dhcp_domain_name</key>
<string></string>
<key>dhcp_domain_name_server</key>
<array>
<string>172.16.98.100</string>
<string>172.16.98.200</string>
</array>
<key>dhcp_domain_search</key>
<array/>
<key>dhcp_option_66</key>
PUT GENERATED CODE HERE!!!
<key>dhcp_option_67</key>
PUT GENERATED CODE HERE!!!
<key>dhcp_router</key>
<string>10.8.1.1</string>
<key>lease_max</key>
<integer>3600</integer>
<key>name</key>
<string>Test</string>
<key>net_address</key>
<string>10.8.0.0</string>
<key>net_mask</key>
<string>255.255.0.0</string>
<key>net_range</key>
<array>
<string>10.8.1.1</string>
<string>10.8.255.254</string>
</array>
<key>selected_port_name</key>
<string>en0</string>
<key>uuid</key>
<string>4285D339-ABD1-4430-B68D-F5401BFDA253</string>
</dict>
</array>
<key>netboot_enabled</key>
<array>
<string>en0</string>
</array>
</dict>
</plist>