just a quick question, is it possible to open a port on linux Centos without using iptables? If so, how do I do that from the command line?

link|improve this question
4  
define 'open a port' – KevinDTimm Jan 6 at 17:23
1  
And the answer might be no, since iptables are used to block ports. – Basile Starynkevitch Jan 6 at 18:28
What about opening a tunnel- thats how i bypass firewalls at work.. evil laugh – ppumkin Jan 7 at 11:30
feedback

migrated from stackoverflow.com Jan 6 at 19:39

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

closed as not a real question by haimg, Sathya Jan 7 at 17:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

If a port is blocked by iptables then it is not possible to open it without modifying iptables config. It would be a security flaw otherwise.

link|improve this answer
feedback