[help] How i can open ports?

Re: How i can open ports?

Dunno.

You should call to the support line of your ISP and ask.

If you have'nt a router and at the windows firewall the ports are opened, it's very possible that the ISP blocks them.
 
Upvote 0
Re: How i can open ports?

He will. They have full control over it anyway. if they don't ask them why they can't and if they say "I just can't" Ask them how to forward ports.
 
Upvote 0
Re: How i can open ports?

Forward of ports is needed, when u don't have real IP.
If u do have real IP u have to forward ports on ur router.
If u use linux as router, u must edit ur rc.firewall and paste this code:

Code:
iptables -t nat -A PREROUTING -p tcp --dport 8900 -j DNAT --to-destination [INTERNAL IP]
iptables -t nat -A POSTROUTING -p tcp --dport 8900 -j SNAT --to-source [EXTERNAL IP]
iptables -t nat -A PREROUTING -p tcp --dport 6000 -j DNAT --to-destination [INTERNAL IP]
iptables -t nat -A POSTROUTING -p tcp --dport 6000 -j SNAT --to-source [EXTERNAL IP]
iptables -t nat -A PREROUTING -p tcp --dport 6010 -j DNAT --to-destination [INTERNAL IP]
iptables -t nat -A POSTROUTING -p tcp --dport 6010 -j SNAT --to-source [EXTERNAL IP]
iptables -t nat -A PREROUTING -p udp --dport 7777 -j DNAT --to-destination [INTERNAL IP]
iptables -t nat -A POSTROUTING -p udp --dport 7777 -j SNAT --to-source [EXTERNAL IP]
iptables -t nat -A PREROUTING -p tcp --dport 7779 -j DNAT --to-destination [INTERNAL IP]
iptables -t nat -A POSTROUTING -p tcp --dport 7779 -j SNAT --to-source [EXTERNAL IP]
iptables -t nat -A PREROUTING -p udp --dport 8900 -j DNAT --to-destination [INTERNAL IP]
iptables -t nat -A POSTROUTING -p udp --dport 8900 -j SNAT --to-source [EXTERNAL IP]

Change [INTERNAL IP] to ur server's LAN IP, [EXTERNAL IP] — to ur Internet IP.
 
Upvote 0
Back