Hi there,
To monitor ip traffic in linux, you could try the following:
You could use nmap to check whether port 7354 is open. However, it will only show as being open when YOUR computer is waiting for a connection to come in on that port, which I doubt. However, if indeed your computer is waiting for a connection to come in on 7354, try the following:
start planeshift
go to another machine (running unix)
do: nmap your.ip.address (at a command prompt)
This will give you the list of open ports. Ports that are blocked by a firewall will most likely be in the \"filtered\" state, ports that are open but don\'t have an application listening are most likely to be in \"closed\" state, and ports that have an application listening are in \"open\" state. However, it is often possible to configure your firewall so that ports that the firewall blocks are in \"closed\" state: this depends on the choice and configuration of your firewall.
Also worth trying is monitoring all network traffic coming in on the ports you\'re interested in, or on all ports. You can use the IP tables command for this. For example:
iptables -A INPUT -j LOG --log-level debug --log-prefix \"INPUT PACKETS; \"
This command will log all incoming traffic and will put a log line in the debug log file (e.g. /var/log/debug)
You can also log outgoing traffic (by changing INPUT to OUTPUT) or only logging traffic that comes in at a specific port, e.g., for ingoing traffic at UDP 7354:
iptables -A INTPUT -t udp --dport 7153 -j LOG --log-level debug --log-prefix \"INPUT udp at 7153: \"
Finally, the tcpdump program is useful for logging tcp traffic.
Hope this is helpful,
Robert