When debugging a PPPoE dial issue, one of the important steps is to check if the PADx packets arrive at the MX interface. This article describes how to capture the PADx packets from the VLAN ID.
Describe how to capture the PADx packets from the VLAN ID.
The command monitor traffic interface... can be used to capture the packets punted to the routing engine (RE).
monitor traffic interface...
monitor traffic interface ge-1/1/6 extensive matching "ether[14:2]&0xFFF= 0x64 && ether[16:2]=0x8863"
If you want to capture the PADx packets on VLAN 200, decimal 200 is equal to hexadecimal 0xC8, so replace 0x64 with 0xC8.
monitor traffic interface ge-1/1/6 extensive matching "ether[14:2]&0x0FFF= 0x12C && ether[18:2]&0x0FFF= 0x64 && ether[20:2]=0x8863"