Performing a sniffer trace (CLI and packet capture)
When you troubleshoot networks and routing in particular, it helps to look inside the headers of packets to determine if they are traveling the route that you expect them to take. Packet sniffing is also known as network tap, packet capture, or logic analyzing.
|
For FortiGates with NP2, NP4, or NP6 interfaces that are offloading traffic, disable offloading on these interfaces before you perform a trace or it will change the sniffer trace. |
Sniffing packets
To perform a sniffer trace in the CLI:
Before you start sniffing packets, you should prepare to capture the output to a file. A large amount of data may scroll by and you will not be able to see it without saving it first. One method is to use a terminal program like puTTY to connect to the FortiGate CLI. Once the packet sniffing count is reached, you can end the session and analyze the output in the file.
The general form of the internal FortiOS packet sniffer command is:
# diagnose sniffer packet <interface_name> <‘filter’> <verbose> <count> <tsformat>
To stop the sniffer, type CTRL+C
.
|
The name of the interface to sniff, such as |
|
What to look for in the information the sniffer reads. The filter must be inside single quotes (‘). |
|
The level of verbosity as one of:
|
|
The number of packets the sniffer reads before stopping. If you don't put a number here, the sniffer will run until you stop it with < |
|
The timestamp format.
|
Simple sniffing example:
# diagnose sniffer packet port1 none 1 3.
This displays the next three packets on the port1 interface using no filtering, and verbose level 1. At this verbosity level, you can see the source IP and port, the destination IP and port, action (such as ack), and sequence numbers.
In the output below, port 443 indicates these are HTTPS packets and that 172.20.120.17 is both sending and receiving traffic.
Head_Office_620b # diagnose sniffer packet port1 none 1 3
interfaces=[port1]
filters=[none]
0.545306 172.20.120.17.52989 -> 172.20.120.141.443: psh 3177924955 ack 1854307757
0.545963 172.20.120.141.443 -> 172.20.120.17.52989: psh 1854307757 ack 3177925808
0.562409 172.20.120.17.52988 -> 172.20.120.141.443: psh 4225311614 ack 3314279933
Advanced sniffing example:
The following commands will report packets on any interface that are traveling between a computer with the host name of “PC1” and a computer with the host name of “PC2”. With verbosity 4 and above, the sniffer trace displays the interface names where traffic enters or leaves the FortiGate unit. To stop the sniffer, type CTRL+C
.
FGT# diagnose sniffer packet any "host <PC1> or host <PC2>" 4
or
FGT# diagnose sniffer packet any "(host <PC1> or host <PC2>) and icmp" 4
The following CLI command for a sniffer includes the ARP protocol in the filter which may be useful to troubleshoot a failure in the ARP resolution. For example, PC2 may be down and not responding to the FortiGate ARP requests.
FGT# diagnose sniffer packet any "host <PC1> or host <PC2> or arp" 4
Using packet capture
To use packet capture, the FortiGate must have a disk. You can enable the capture-packet
in the firewall policy.
To enable packet capture in the CLI:
config firewall policy
edit <id>
set capture-packet enable
next
end
To configure packet capture filters in the GUI:
Go to Network > Packet Capture.
When you add a packet capture filter, enter the following information and click OK.
Interface |
Select the interface to sniff from the drop-down menu. You must select one interface. You cannot change the interface without deleting the filter and creating a new one, unlike the other fields. |
Max Packets to Save |
Enter the number of packets to capture before the filter stops. This number cannot be zero. You can halt the capturing before this number is reached. |
Enable Filters |
Select this option to specify filter fields. |
Host(s) |
Enter the IP address of one or more hosts. Separate multiple hosts with commas. To enter a range, use a dash without spaces. For example, |
Port(s) |
Enter one or more ports to capture on the selected interface. Separate multiple ports with commas. To enter a range, use a dash without spaces, for example |
VLAN(s) |
Enter one or more VLANs (if any). Separate multiple VLANs with commas. |
Protocol |
Enter one or more protocols. Separate multiple protocols with commas. To enter a range, use a dash without spaces. For example, |
Include IPv6 Packets |
Select this option if you are troubleshooting IPv6 networking, or if your network uses IPv6. Otherwise, leave it disabled. |
Include Non-IP Packets |
The protocols in the list are all IP based except for ICMP (ping). Use this feature to capture non-IP based packets. Examples of non-IP packets include IPsec, IGMP, ARP, and ICMP. |