Forgot to specify the nmap command in my last post. The app is available
HERE.There are several options that will give you the info necessary to determine whether or not your machine is accessible from the outside world for specific ports:
prompt> nmap -v [-sT|-sS|-sA|-sW] -p 6000,6112 x.x.x.x
-v <=== means "verbosity level", spits out even MORE results in the command window
[-sT|-sS] <=== these are differing scan techniques you can use, only pick one though
-p 6000,6112 <=== the ports to check for, TCP in this case
x.x.x.x <=== this is the public IP address of the hosting PC/Server
EX: nmap -v -sW -p 6000,6112 10.10.10.1
You're looking for the result to say "open". If you see "closed" or "filtered" (firewall/router issue most likely still), then there is an issue you'll need to figure out.