Author: bapt
Date: Mon Oct 31 15:11:55 2016
New Revision: 308129
URL: https://svnweb.freebsd.org/changeset/base/308129

Log:
  When issuing a PXE dhcp request, always issue a param request (DHCP option 55)
  with all dhcp parameters we might be interested in.
  
  Some DHCP server like the new kea (by ISC) expect it.
  
  This makes pxeboot functional with ISC kea.
  
  Submitted by: Vincent Legout <[email protected]>
  MFC after:    1 month
  Sponsored by: Gandi.net

Modified:
  head/lib/libstand/bootp.c

Modified: head/lib/libstand/bootp.c
==============================================================================
--- head/lib/libstand/bootp.c   Mon Oct 31 13:12:58 2016        (r308128)
+++ head/lib/libstand/bootp.c   Mon Oct 31 15:11:55 2016        (r308129)
@@ -148,7 +148,17 @@ bootp(sock, flag)
                bp->bp_vend[7] = TAG_CLASSID;
                bp->bp_vend[8] = 9;
                bcopy("PXEClient", &bp->bp_vend[9], 9);
-               bp->bp_vend[18] = TAG_END;
+               bp->bp_vend[18] = TAG_PARAM_REQ;
+               bp->bp_vend[19] = 8;
+               bp->bp_vend[20] = TAG_ROOTPATH;
+               bp->bp_vend[21] = TAG_TFTP_SERVER;
+               bp->bp_vend[22] = TAG_HOSTNAME;
+               bp->bp_vend[23] = TAG_SWAPSERVER;
+               bp->bp_vend[24] = TAG_GATEWAY;
+               bp->bp_vend[25] = TAG_SUBNET_MASK;
+               bp->bp_vend[26] = TAG_INTF_MTU;
+               bp->bp_vend[27] = TAG_SERVERID;
+               bp->bp_vend[28] = TAG_END;
        } else
                bp->bp_vend[7] = TAG_END;
 #else
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to