chmod 777 tcpdump? Really? that's a really really bad idea, why did you do that? That means that anyone on the system can edit or delete that program. Don't do that. If you're running this as someone wrote in in your internal documentation or such like, go find who wrote it and poke them in the eye.
If you run "man tcpdump" you'll get the manpage and you'll see what the options do. But -v means "verbose", -vv means "more verbose" -s0 means capture all the packet, not just the first chunk of tcp/ip headers and -w <filename> writes it to a file. Given that you're writing tpo a file, -vv doesn't actually do anything useful, but it's harmless.
---------- Post added 03-04-14 at 07:46 PM ----------
Quote:
I don't know what 'other' options there are for -S as I've always used 0 from the examples I have found.
|
Wrong case. s, not S.