Displaying 3 results from an estimated 3 matches for "_lower".
Did you mean:
lower
2019 Apr 26
2
UEFI and PXE
Once upon a time, Steven Tardy <sjt5atra at gmail.com> said:
> The ?ICMP unreachable? should be a dead giveaway. . .
You cut out the part of the email where the OP said that the UEFI system
was ignoring the next-server part of the DHCP reply and trying to TFTP
to the DHCP server instead of the TFTP server. Of course that got ICMP
unreachable, but it isn't a firewall problem.
To the
2019 Apr 26
0
UEFI and PXE
...the redhat
guide linked in this thread.
Did what I thought was correct and duplicated the OPs problem.
/me scratches head. . . off to `tcpdump -vv -nn -i ens192`. . . packets
never lie. . .
Vendor-Class Option 60, length 32:
"PXEClient:Arch:00007:UNDI:003000"
d'oh; I did _lower case_ a string in dhcpd.conf line on accident while
transcribing:
match if substring (option vendor-class-identifier, 0, 9) =
"pxeclient";
Changed it to follow redhat guide CAMELCase and poof,
match if substring (option vendor-class-identifier, 0, 9) =
&qu...
2019 Apr 26
2
UEFI and PXE
...read.
> Did what I thought was correct and duplicated the OPs problem.
> /me scratches head. . . off to `tcpdump -vv -nn -i ens192`. . . packets
> never lie. . .
> Vendor-Class Option 60, length 32:
> "PXEClient:Arch:00007:UNDI:003000"
>
> d'oh; I did _lower case_ a string in dhcpd.conf line on accident while
> transcribing:
> match if substring (option vendor-class-identifier, 0, 9) =
> "pxeclient";
Ok, this is not the case here, case is correct, and tcpdump shows that the correct file is requested.
However:
11:0...