This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
network-debugging [2021/11/18 10:21] – klueppel | network-debugging [2021/11/19 07:58] (current) – dodenhoeft | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== Advanced network debugging ====== |
In some cases it might be useful to see the live network traffic in wireshark and not only the tcpdump output on the console. | In some cases it might be useful to see the live network traffic in wireshark and not only the tcpdump output on the console. | ||
- | __Prerequisites:__ | + | === Prerequisites:=== |
* Netmodule Router | * Netmodule Router | ||
* Wireshark on your local computer. | * Wireshark on your local computer. | ||
Line 10: | Line 11: | ||
We can get the output of tcpdump via ssh and pipe it directly in wireshark, no need to save the dump and load it in wireshark. This can be done on linux and windows too. | We can get the output of tcpdump via ssh and pipe it directly in wireshark, no need to save the dump and load it in wireshark. This can be done on linux and windows too. | ||
- | __Linux:__ | + | === Linux: === |
<WRAP center round box 100%> | <WRAP center round box 100%> | ||
- | ssh root@192.168.1.1 tcpdump -U -i any s0 -w - 'not port 22' | wireshark -k -i - | + | ssh root@192.168.1.1 tcpdump -U -i any -w - 'not port 22' | wireshark -k -i - |
</ | </ | ||
- | __Windows:__ | + | === Windows: === |
<WRAP center round box 100%> | <WRAP center round box 100%> | ||
plink.exe -ssh -pw admin01 root@192.168.1.1 " | plink.exe -ssh -pw admin01 root@192.168.1.1 " |