|
From: ross p. <ras...@ya...> - 2006-04-07 18:58:27
|
I am running an internet server on my local network. The server streams media through: ip is 192.168.1.7 port 8007. I have port forwarding setup in my firewall.rules file, and I have turned it on my DSL modem. On my DSL modem, the rule is:
Forward ports 8000-8010 to machine 192.168.0.3(devil linux), then devil linux should forward connections on port 8007 to 192.168.1.7(internal radio server), but when I try to connect to my machine from the outside world, it can't. I can connect and stream my music internally, from windows or mac, just not from the outside world. Internally, I just connect to 192.168.1.7:8007 in winamp, and it plays my music. can someone help? below is the port forwarding section of my firewall.rules file.
# Uncomment/modify the next 4 lines to forward a service to an internal IP.
SERVER_IP=192.168.1.7 # Internal IP of server.
PORT=8007 # 22 = SSH. Change to 80 for web server, etc.
${IPTABLES} -A PREROUTING -i ${OUT_DEV} -t nat -p TCP --dport $PORT -j DNAT --to ${SERVER_IP}:${PORT}
${IPTABLES} -A FORWARD -p TCP -d ${SERVER_IP} --dport $PORT -i ${OUT_DEV} -o ${INT_DEV} -j ACCEPT
---------------------------------
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2�/min or less.
---------------------------------
Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great rates starting at 1¢/min. |