Hello, I have a computer A: and a computer B: Now, when I try to catch websocket traffic (B opens a browser, connects to endpoint A and sends text using JS. Server replies with some text), I can only see ws-traffic from A to B. However my glassfish server outputs the text that B sends, so it (A to B) must go along the 'wire' also. Is there something wrong how I filter the traffic? I use ip-filter with value 192.168.0.2. It seems to catch tcp handshake ok and other traffic as well. But I can only see tcp from B to A and not websocket. Any ideas? thanks, E asked 29 Aug '13, 22:39 ezte123 |
One Answer:
There have been other reports about problems with capturing data on bridged Virtualbox interfaces.
Please run Wireshark in the virtual machine and capture the whole traffic there. That seems to work well. Regards answered 30 Aug '13, 02:15 Kurt Knochner ♦ edited 30 Aug '13, 02:16 |
Ok thanks, I'll try that.