Hello Mandar, You may enable packet capture for those DHCP initial messages, as mentioned below. Configure the first dataplane packet-diag filter to capture DHCP Discover, DHCP Request, and DHCP Inform packets. This filter will capture UDP traffic on source port 68 (bootpc) and destination port 67 (bootps). > debug dataplane packet-diag set filter match protocol 17 source-port 68 destination-port 67 Configure a second dataplane packet-diag filter to capture DHCP ACK, DHCP NACK, and DHCP Offer packets. This filter will capture UDP traffic on source port 67 (bootps) and destination port 68 (bootpc). > debug dataplane packet-diag set filter match protocol 17 source-port 67 destination-port 68 Enable pre-parse match. This is necessary to collect DHCP packets destined for the DHCP Client interface. > debug dataplane packet-diag set filter pre-parse-match yes Enable the packet filter. > debug dataplane packet-diag set filter on Configure Packet Captures on the transmit, receive, and drop stages to collect DHCP packets. > debug dataplane packet-diag set capture stage drop file dhcp-drop > debug dataplane packet-diag set capture stage transmit file dhcp-tx > debug dataplane packet-diag set capture stage receive file dhcp-rx Packet capture is enabled You are set to capture DHCP Client traffic once traffic is generated generated. Upon completion, be sure to disable (in the following order) packet captures and packet filters. Run the following commands: > debug dataplane packet-diag set capture off Packet capture is disabled > debug dataplane packet-diag set filter off debug packet filter: off OR, do the same from PAN GUI. ** Please mark my answer as correct/helpful if appropriate.** Hope this helps. Thanks
... View more