Hi,

On Tue, Nov 29, 2016 at 12:39:17AM +0100, Sergio Garcia Gutierrez wrote:
> When i execute this line "sudo tcpdump -vvv dst host 'your IP' & port 80"
> You CANT STOP TCPDUMP using "Ctrl + C".

That's because you sent it into the background with "&", and then ran
another command "port 80".

The correct syntax is

 sudo tcpdump -vvv dst host 'your_IP and port 80'

not "&", and quotes around all of it to be sure the shell will not
interfere with special characters.

gert
-- 
USENET is *not* the non-clickable part of WWW!
                                                           //www.muc.de/~gert/
Gert Doering - Munich, Germany                             g...@greenie.muc.de
fax: +49-89-35655025                        g...@net.informatik.tu-muenchen.de
_______________________________________________
tcpdump-workers mailing list
tcpdump-workers@lists.tcpdump.org
https://lists.sandelman.ca/mailman/listinfo/tcpdump-workers

Reply via email to