Seems you are getting closer. A couple of things though.
To simplify I'll use an example of my own network:
Start -> Run -> "cmd"
- Code: Select all
>ipconfig
Windows IP Configuration
Ethernet adapter Local Area Connection 11:
Connection-specific DNS Suffix . :
IP Address. . . . . . . . . . . . : 192.168.1.100
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.1.1
Here you see that my internal ip is 192.168.1.100 and my router has the internal ip of 192.168.1.1 ( my external ip is something else which you already have configured with dyndns so I wont bother explaining that

)
jmulvihill3 wrote:One had something to do with port forwarding information to port 80 (I'm sorry I don't recall exactly what it said as I'm at work!) I unchecked this selection.
The other was allowing external services through for pinging and stuff like that. I left this alone.
This seems correct yes. You will still be able to administer your router, but only from within your network using the local ip-address ( 192.168.1.1 )
jmulvihill3 wrote:Also, I reset everything back to port 80 (was using a different port number.) As I was setting up an exception for port 80 in my windows firewall, it gave me an error. Windows Media Player (Orb) was assigned to port 80. I changed the windows media player port to something else and continued setting up the exception for port 80.
You need to make sure that Subsonic is listening on port 80 ( or Apache if you have that in front of Subsonic ).
- Code: Select all
>netstat -ano | find "LISTENING" | find "80"
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 1412
This means that process id 1412 is listening on TCP port 80 on all interfaces ( ip 0.0.0.0 just means "all" if you should have multiple interfaces )
Now you either have subsonic running directly on port 80 or you should see both port 80 and 8080 ( the default tomcat port ) in the list above. Use the task manager to find out what is listening to port 80 by tracking down the pid 1412.
To set up Task Manager to show the PID column open Task Manager by using CTRL+SHIFT+ESC. Go to the Processes tab, click View and then Select Columns. In the Select Columns windows click to select PID and then click Ok. You can sort the PID column to display the PIDs in descending or ascending order.
jmulvihill3 wrote:I did some more digging through my router last night. There is an option to set up a Static NAT. I chose my PC as the device, set up my current external IP as the static IP and then it gave me the option to set up a port forwarding protocol when information is received in this static external IP. I set up a subsonic TCP protocol to port forward to port 80.
Should I do away with the Static NAT that I set up and attempt the port forwarding configuration again? (I can't have both as it creates a conflict within my router) This is getting frustrating.
Static NAT means that you assign a static
internal ip to one computer, keyword being internal. This is not mandatory, but smart if you have several computers and want to make sure that your port forwarding rules always work. Check which internal ip your computer running subsonic has right now and set that as the static NAT ( mine is 192.168.1.100 from above )
Now when that's done you need to configure a port forwarding rule forwarding TCP port 80 to 192.168.1.100.
jmulvihill3 wrote:Oh, another thing I notice is all of my ports are 'closed'. I d/l'd some software that is supposed to check a specified port's status under TCP or UDP. When the music streamer is turned on I receive an error on port 80 (being used by a program) and when I turn off the streamer it says the port is closed/unaccessable. I'm not sure if this is a factor.
When all is done you should have port 80 open. I like to use Gibson Research Corporations ShieldsUP to check this. Go to
http://www.grc.com/default.htm and click on ShieldsUP under Hot Spots, accept the warning and finally perform the "Common ports" check. That will tell what you need to know.
Alright, hope all this helps and that you're getting closer to be able to enjoy subsonic from your working place
-jigsaw