<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ports in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031989#M29110</link>
    <description>If you want to allow unrestricted access from a specific host you don't specify a port. Something like "iptables -A INPUT -s 192.168.1.2 -j ACCEPT".&lt;BR /&gt;&lt;BR /&gt;If you want to allow access from any host to any port turn off iptables because you're trying not to use it.&lt;BR /&gt;&lt;BR /&gt;If you have an application that requires random ports from an uncontrolled range you will not be able to run it through a normal firewall and you should talk to your vendor about it.</description>
    <pubDate>Fri, 06 Jul 2007 16:59:03 GMT</pubDate>
    <dc:creator>Heironimus</dc:creator>
    <dc:date>2007-07-06T16:59:03Z</dc:date>
    <item>
      <title>ports</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031984#M29105</link>
      <description>How can i add rule for dynamic ports in iptables , am not sure of the the ports used by services.&lt;BR /&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:12:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031984#M29105</guid>
      <dc:creator>RobertClark</dc:creator>
      <dc:date>2007-07-04T03:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: ports</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031985#M29106</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;iptables -A INPUT -s &lt;IP address="" or="" network="" source=""&gt; -p tcp --dport 25 -j DROP&lt;BR /&gt;&lt;BR /&gt;example&lt;BR /&gt;&lt;BR /&gt;iptables -A INPUT -s 192.168.0.10 -p tcp --dport 25 -j DROP&lt;BR /&gt;&lt;BR /&gt;This drops port 25 (smtp) traffic for host 192.168.0.10&lt;BR /&gt;&lt;BR /&gt;Once you are happy with the rules.&lt;BR /&gt;&lt;BR /&gt;service iptables save&lt;BR /&gt;&lt;BR /&gt;Makes them permanent in /etc/sysconfig/iptables&lt;BR /&gt;&lt;BR /&gt;You'd better get a handle on what ports you need open before doing this.&lt;BR /&gt;&lt;BR /&gt;netstat -an | grep LISTEN&lt;BR /&gt;&lt;BR /&gt;Just because the service is listening however does not mean you want to authorize it.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;&lt;/IP&gt;</description>
      <pubDate>Wed, 04 Jul 2007 03:17:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031985#M29106</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-07-04T03:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: ports</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031986#M29107</link>
      <description>Thanks !&lt;BR /&gt;&lt;BR /&gt;actually i have to open port, my services use call back routine , which picks up any port &lt;BR /&gt;&lt;BR /&gt;if i use this rule , is it safe , or is there any better way of doing it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$IPTABLES -A INPUT -p tcp --dport 1024:65535 -j ACCEPT</description>
      <pubDate>Wed, 04 Jul 2007 03:50:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031986#M29107</guid>
      <dc:creator>RobertClark</dc:creator>
      <dc:date>2007-07-04T03:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: ports</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031987#M29108</link>
      <description>Hi &lt;BR /&gt; Can somebody suggest me how to add entry in iptables to accept connection for all the ports&lt;BR /&gt;&lt;BR /&gt;Please tell me if u need more information&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Robert&lt;BR /&gt;</description>
      <pubDate>Thu, 05 Jul 2007 03:34:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031987#M29108</guid>
      <dc:creator>RobertClark</dc:creator>
      <dc:date>2007-07-05T03:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: ports</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031988#M29109</link>
      <description>replace ip range with 0.0.0.0</description>
      <pubDate>Fri, 06 Jul 2007 12:46:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031988#M29109</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2007-07-06T12:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: ports</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031989#M29110</link>
      <description>If you want to allow unrestricted access from a specific host you don't specify a port. Something like "iptables -A INPUT -s 192.168.1.2 -j ACCEPT".&lt;BR /&gt;&lt;BR /&gt;If you want to allow access from any host to any port turn off iptables because you're trying not to use it.&lt;BR /&gt;&lt;BR /&gt;If you have an application that requires random ports from an uncontrolled range you will not be able to run it through a normal firewall and you should talk to your vendor about it.</description>
      <pubDate>Fri, 06 Jul 2007 16:59:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ports/m-p/4031989#M29110</guid>
      <dc:creator>Heironimus</dc:creator>
      <dc:date>2007-07-06T16:59:03Z</dc:date>
    </item>
  </channel>
</rss>

