dhcp: support BOOTP clients
BOOTP clients do not use tagged messages for requests. As such, any message without the DHCP option 53, should be considered a BOOTP request. Link: https://bugs.passt.top/show_bug.cgi?id=72 Signed-off-by: Stas Sergeev <stsp2@yandex.ru> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
d8c4f23ecd
commit
1f24d3efb4
1 changed files with 2 additions and 2 deletions
4
dhcp.c
4
dhcp.c
|
@ -323,8 +323,8 @@ int dhcp(const struct ctx *c, const struct pool *p)
|
|||
if (opts[53].c[0] == DHCPDISCOVER) {
|
||||
info("DHCP: offer to discover");
|
||||
opts[53].s[0] = DHCPOFFER;
|
||||
} else if (opts[53].c[0] == DHCPREQUEST) {
|
||||
info("DHCP: ack to request");
|
||||
} else if (opts[53].c[0] == DHCPREQUEST || !opts[53].clen) {
|
||||
info("%s: ack to request", opts[53].clen ? "DHCP" : "BOOTP");
|
||||
opts[53].s[0] = DHCPACK;
|
||||
} else {
|
||||
return -1;
|
||||
|
|
Loading…
Reference in a new issue