I want to specify a source IP address, destination IP address and source port in my tcpdump filter. However, I keep getting syntax errors. How do I do that?
Asked
Active
Viewed 2.7k times
1 Answers
7
Tcpdump filters can be combined with the and
and or
keywords. Here is the command that satisfied my filtering requirements:
tcpdump -i enp1s9 dst 192.168.6.1 and src 192.168.6.2 and src port 80
Where enp1s9
is the name of the interface.

user3207874
- 251
- 1
- 3
- 8