I am having trouble passing arguments to tcpdump via the packet display command.
The tcpdump command I am trying to use is:
tcpdump -nvvX host 10.0.0.1
It seems I should use:
packet display GigabitEthernet0/0 expression -nvvX host 10.0.0.1
This doesnt work
This works:
packet display GigabitEthernet0/0 expression -nvvX
and this works:
packet display GigabitEthernet0/0 expression host 10.0.0.1
I cant get both working at the same time?
How do I pass two arguments throough the packet display command?