5

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?

Dave M
  • 4,514
  • 22
  • 31
  • 30
user3207874
  • 251
  • 1
  • 3
  • 8

1 Answers1

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