Wireshark Remote

Aus xinux.net
Zur Navigation springen Zur Suche springen

Linux

Enables X11 forwarding

  • ssh -X root@worf
  • root@worf:~# wireshark

In one Command

  • ssh -X root@worf wireshark

With tcpdump and a pipe

  • ssh root@worf tcpdump -s 0 -U -n -w - -i ppp0 'icmp' | wireshark -k -i -

With tcpdump and a namedpipe

  • mkfifo /tmp/fifo.cap
  • ssh root@worf "tcpdump -s 0 -U -n -w - -i ppp0 'icmp'" > /tmp/fifo.cap &
  • wireshark -k -i /tmp/fifo.cap


Links