2012-07-02, 19:32
Hello all;
I recently compiled an iPXE kernel with the latest code with syslog enabled. When I call dhcp option 7 in a script:
iPXE returns the following on DHCP Option 7: when enabled on the scope with only one IP in the Option String;
When Two IPs are specified in DHCP Option 7 it returns the following:
When Three IPs are specified in DHCP Option 7 it returns the following:
If DHCP option 7 is disabled from the scope, iPXE returns the following:
This leads me to believe iPXE doesn't fully support all DHCP options as variables. This is a definite "nice to have", however.
I can do a wireshark capture from the DHCP server.
Any ideas?
TIA,
M^3
I recently compiled an iPXE kernel with the latest code with syslog enabled. When I call dhcp option 7 in a script:
Code:
dhcp
echo DHCP Option 7 is "${7}"
iPXE returns the following on DHCP Option 7: when enabled on the scope with only one IP in the Option String;
Code:
DHCP Option 7 is "
"
When Two IPs are specified in DHCP Option 7 it returns the following:
Code:
DHCP Option 7 is "
o"
When Three IPs are specified in DHCP Option 7 it returns the following:
Code:
DHCP Option 7 is "
"
If DHCP option 7 is disabled from the scope, iPXE returns the following:
Code:
DHCP Option 7 is ""
This leads me to believe iPXE doesn't fully support all DHCP options as variables. This is a definite "nice to have", however.
I can do a wireshark capture from the DHCP server.
Any ideas?
TIA,
M^3