Host configuration:
Windows 7 64-bit
IP address: 192.168.1.65 (shown in ipconfig)
Connected to the internet using a wirless card which connects to a home router (probably this is not relevant because neither client nor server need internet access)
The host runs the XLLoop client application (available on Sourceforge)
Guest configuration
Ubuntu 12.04 (Precise Pangolin)
Virtualbox network settings:
- Attached to = "Bridged Adapter"
- Name = "TP-Link 150Mbps Wireless N PCI Express Adapter" is selected (there is also "Realtek PCIe GBE Family Controller" in the dropdown list which is not selected)
- Promiscuous Mode = "Deny"
- Cable Connected = "True"
IP address: 192.168.1.68 (shown in ifconfig)
The guest VM runs the XLLoop server application (available on Sourceforge) on port 5454
I have run the following checks below.
1. The host can successfully ping the guest VM:
Code: Select all
ping 192.168.1.68
Pinging 192.168.1.68 with 32 bytes of data:
Reply from 192.168.1.68: bytes=32 time<1ms TTL=64
Reply from 192.168.1.68: bytes=32 time<1ms TTL=64
Reply from 192.168.1.68: bytes=32 time<1ms TTL=64
Reply from 192.168.1.68: bytes=32 time<1ms TTL=64
Ping statistics for 192.168.1.68:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
3. I can successfully ssh from the host into the guest VM using putty on port 22.
4. In the terminal of the guest the port 5454 shows up as listening:
Code: Select all
sudo netstat -tapen | grep ":5454"
tcp 0 0 127.0.0.1:5454 0.0.0.0:* LISTEN 1000 14568 2273/python
Code: Select all
c:\Program Files\PortQryV2>PortQry -n 192.168.1.68 -e 5454
Querying target system called:
192.168.1.68
Attempting to resolve IP address to a name...
IP address resolved to PCU.lan
querying...
TCP port 5454 (unknown service): NOT LISTENING
Code: Select all
sudo ufw default allow outgoing
sudo ufw default allow incoming
8. Instead of "Bridged Adapter" I also tried using the "NAT" network mode within Virtualbox and set up port forwarding. It did not help.
It would be great if you could let me know any suggestions what else I could try or how I could narrow down the potential sources of the error. Thank you in advance.