mirror of
https://github.com/hanwckf/immortalwrt-mt798x.git
synced 2025-01-10 19:12:33 +08:00
This adds dhcp-boot support to dnsmasq-init: option name "virt0" option filename "pxelinux.0" option servername "mainframe0.dev" option serveraddress "9.3.2.1"
closes #3529 SVN-Revision: 11663
This commit is contained in:
parent
7d81c1b6cc
commit
ed3aeb2031
@ -169,6 +169,27 @@ dhcp_mac_add() {
|
|||||||
dhcp_option_add "$cfg" "$name"
|
dhcp_option_add "$cfg" "$name"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dhcp_boot_add() {
|
||||||
|
local cfg="$1"
|
||||||
|
|
||||||
|
config_get name "$cfg" name
|
||||||
|
[ -n "$name" ] || return 0
|
||||||
|
|
||||||
|
config_get filename "$cfg" filename
|
||||||
|
[ -n "$filename" ] || return 0
|
||||||
|
|
||||||
|
config_get servername "$cfg" servername
|
||||||
|
[ -n "$servername" ] || return 0
|
||||||
|
|
||||||
|
config_get serveraddress "$cfg" serveraddress
|
||||||
|
[ -n "$serveraddress" ] || return 0
|
||||||
|
|
||||||
|
append args "--dhcp-boot=net:$name,$filename,$servername,$serveraddress"
|
||||||
|
|
||||||
|
dhcp_option_add "$cfg" "$name"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
dhcp_add() {
|
dhcp_add() {
|
||||||
local cfg="$1"
|
local cfg="$1"
|
||||||
config_get net "$cfg" interface
|
config_get net "$cfg" interface
|
||||||
@ -239,6 +260,7 @@ start() {
|
|||||||
args=""
|
args=""
|
||||||
config_foreach dnsmasq dnsmasq
|
config_foreach dnsmasq dnsmasq
|
||||||
config_foreach dhcp_host_add host
|
config_foreach dhcp_host_add host
|
||||||
|
config_foreach dhcp_boot_add boot
|
||||||
config_foreach dhcp_mac_add mac
|
config_foreach dhcp_mac_add mac
|
||||||
config_foreach dhcp_vendorclass_add vendorclass
|
config_foreach dhcp_vendorclass_add vendorclass
|
||||||
config_foreach dhcp_userclass_add userclass
|
config_foreach dhcp_userclass_add userclass
|
||||||
|
Loading…
x
Reference in New Issue
Block a user