Last active
December 28, 2015 17:19
-
-
Save gitrc/7534987 to your computer and use it in GitHub Desktop.
Don't bother with copying PCAP files, just pipe tcpdump over SSH into wireshark! Great for embedded system work.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# from your workstation run below where <expression> is your tcpdump expression | |
# works great on OSX | |
# | |
ssh [email protected] "/path/to/tcpdump -s 0 -U -w - -i ethX <expression>" |wireshark -i - -k |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment