How to open TCP port in Ubuntu 10.10 ?

link|improve this question
Belongs either on superuser.com or askubuntu.com. – BoltClock Oct 13 '10 at 7:45
For what do you want to open the port? To host a service? to use for outgoing traffic? What do you want to achieve? – S.Hoekstra Oct 13 '10 at 8:07
feedback

migrated from stackoverflow.com Oct 13 '10 at 7:57

This question came from our site for professional and enthusiast programmers.

4 Answers

sudo iptables -A INPUT -p tcp --dport (port number) -j ACCEPT
link|improve this answer
No,no. I need to open port in system, for application like torrent client or apache server. – Romka Oct 13 '10 at 7:47
That's a question for superuser.com – zengr Oct 13 '10 at 7:48
feedback

Your question needs a lot more detail:

  • What do you mean by "open a port"? Do you want to do it in a program? Just run a program?
  • What is your network configuration? LAN structure, Internet uplink, OSes involved, which router/switch...
  • Do you have any firewalls / NAT in place? On your system, elsewhere in the network?

That said, if you have the "typical" home setup (one or more computers hooked up to a combined switch/router with Internet uplink via DSL or cable): Typically the switch/router/modem combo has a built-in firewall. You'll probably need to open a port there. Usually these devices have a web interface for configuration, look into your manuals.

link|improve this answer
feedback

Shooting in the darkness:

sudo ufw allow 80

Now there is a rule in your ubuntu firewall allowing external access to your 80 port. If you want more specific rule see man ufw. If you are on non-routable IP address you have to forward port in your router. If you provide more context to your question, then I can adjust this answer.

link|improve this answer
feedback

I suggest Netcat: The very basic way to do that (via Netcat) is:

nc -l <port_number>

Example:

nc -l 12569
link|improve this answer
feedback

Your Answer

 
or
required, but never shown