This shows you the differences between two versions of the page.
Next revisionBoth sides next revision | |||
network-debugging [2018/02/27 10:11] – created klueppel | network-debugging [2018/02/27 10:27] – klueppel | ||
---|---|---|---|
Line 11: | Line 11: | ||
__Linux:__ | __Linux:__ | ||
+ | <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 s0 -w - 'not port 22' | wireshark -k -i - | ||
+ | </ | ||
__Windows: | __Windows: | ||
+ | <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 " | ||
+ | </ | ||
You can specify the interface with the -i parameter e.g.: " | You can specify the interface with the -i parameter e.g.: " | ||
We recommend you to exclude the SSH port (22) that you only caputre the traffic you are interested in. | We recommend you to exclude the SSH port (22) that you only caputre the traffic you are interested in. | ||