-2

This is related to this question: How to Capture Remote System network traffic?

I would like to be able to export live traffic captured on a Linux server and to view that in real time on my Windows machine.

Please do not suggest SPAN or RSPAN because it does not apply to my needs. This is about internal traffic (VM traffic) that tshark can see without any problems, I would just like to watch the traffic on my desk (Windows machine) with Wireshark

Community
  • 1
  • 1
MiniMe
  • 1,057
  • 4
  • 22
  • 47

2 Answers2

2

You should use the tool rpcapd in the machine (A) that you want to capture the traffic:

rpcapd -n -p <port>

With -n is launched without authentication

Finally, in the other machine (B) go to Wireshark > Capture > Interfaces > Options > Manage Interfaces > Remote Interfaces

And you should see the traffic of Machine (A)

sinkmanu
  • 1,034
  • 1
  • 12
  • 24
  • Sounds very promising, it is exactly what I was looking for. Now it is on my to do list, I will get back to this thread when I am done with the testing. Thanks a lot! – MiniMe Mar 16 '15 at 02:45
0

I think that the only viable way to do it is to use Wireshark with X11 remote desktop. VNC may also work but you don't really use the Windows System resources to display the results, everything is still processed on the Linux server.

MiniMe
  • 1,057
  • 4
  • 22
  • 47