<?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: Open ports on Linux server in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661645#M41558</link>
    <description>&lt;!--!*#--&gt;&amp;gt; [...] one of the instructions is to open&lt;BR /&gt;&amp;gt; those ports on the target server "so it&lt;BR /&gt;&amp;gt; can communicate".&lt;BR /&gt;&lt;BR /&gt;Certainly, if anyone is blocking access at&lt;BR /&gt;those ports, then those blocks should be&lt;BR /&gt;removed, but the next obvious question is,&lt;BR /&gt;"'so it can communicate' with _what_?"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; We are new to this security product [...]&lt;BR /&gt;&lt;BR /&gt;At least you know what its name is, and you&lt;BR /&gt;have some instructions to read.  The rest of&lt;BR /&gt;us are still in the dark.</description>
    <pubDate>Fri, 16 Jul 2010 00:05:28 GMT</pubDate>
    <dc:creator>Steven Schweda</dc:creator>
    <dc:date>2010-07-16T00:05:28Z</dc:date>
    <item>
      <title>Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661630#M41543</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have a RHEL 5 Server, and would like to open the following ports:&lt;BR /&gt;15701&lt;BR /&gt;15702&lt;BR /&gt;1521&lt;BR /&gt;&lt;BR /&gt;I tried a few things, including:&lt;BR /&gt;1. iptables -A INPUT -p tcp --dport 1521 -j ACCEPT&lt;BR /&gt;2. service iptables save&lt;BR /&gt;3. service iptables restart &lt;BR /&gt;&lt;BR /&gt;Output:&lt;BR /&gt;Flushing firewall rules: [  OK  ]&lt;BR /&gt;Setting chains to policy ACCEPT: filter [  OK  ]&lt;BR /&gt;Unloading iptables modules: [  OK  ]&lt;BR /&gt;Applying iptables firewall rules: [  OK  ]&lt;BR /&gt;Loading additional iptables modules: ip_conntrack_netbios_ns [  OK  ]&lt;BR /&gt;&lt;BR /&gt;However, when I try telnet to this machine on port 1521 (remotely), it doesn't work:&lt;BR /&gt;remote machine% &lt;BR /&gt;telnet: Unable to connect to remote host: Connection refused&lt;BR /&gt;&lt;BR /&gt;remote machine% telnet &lt;MACHINE&gt; 22&lt;BR /&gt;This works.&lt;BR /&gt;&lt;BR /&gt;Please help.&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/MACHINE&gt;</description>
      <pubDate>Wed, 14 Jul 2010 22:31:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661630#M41543</guid>
      <dc:creator>DaJo</dc:creator>
      <dc:date>2010-07-14T22:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661631#M41544</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] would like to open the following&lt;BR /&gt;&amp;gt; ports:&lt;BR /&gt;&amp;gt; [...]&lt;BR /&gt;&lt;BR /&gt;I never know what peopke mean when they say&lt;BR /&gt;this.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] Connection refused&lt;BR /&gt;&lt;BR /&gt;This normally means that there's no server&lt;BR /&gt;program listening (or registered to listen)&lt;BR /&gt;at the requested port.  If you want some&lt;BR /&gt;server program to listen at this port, then&lt;BR /&gt;you need to install and configure it.  Whom&lt;BR /&gt;do you expect to be listening at these ports?</description>
      <pubDate>Thu, 15 Jul 2010 00:38:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661631#M41544</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-07-15T00:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661632#M41545</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;normally the port 1521 is used for oracle listener, did you start the listener ???&lt;BR /&gt;&lt;BR /&gt;mikap</description>
      <pubDate>Thu, 15 Jul 2010 04:40:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661632#M41545</guid>
      <dc:creator>Michal Kapalka (mikap)</dc:creator>
      <dc:date>2010-07-15T04:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661633#M41546</link>
      <description>Use netstat -an | grep LISTED to identify if the port 1521 is in the LISTEN state. If don't, then you won't be able to connect as the service for that port is not started (oracle listener).&lt;BR /&gt;&lt;BR /&gt;As we don't know your previous rules, you may want to try just stopping the service for troubleshoot purposes.&lt;BR /&gt;&lt;BR /&gt;service iptables stop&lt;BR /&gt;telnet host 1521&lt;BR /&gt;&lt;BR /&gt;If that works, then your firewall is the problem, if don't, then the firewall is not related.</description>
      <pubDate>Thu, 15 Jul 2010 12:43:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661633#M41546</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2010-07-15T12:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661634#M41547</link>
      <description>Thanks for the input. The stmt "open port" might sound quite generic, but here are some more details:&lt;BR /&gt;&lt;BR /&gt;Source machine A (windows server)&lt;BR /&gt;&lt;BR /&gt;Runs a service that connects to machine B on port 15701 &lt;BR /&gt;-- this is not related to the oracle listener&lt;BR /&gt;&lt;BR /&gt;Target machine B (Linux server)&lt;BR /&gt;&lt;BR /&gt;Needs to allow connections via port 15701 from Source machine A&lt;BR /&gt;&lt;BR /&gt;I'm trying to find out the best way to achieve this, and the first thought is to  make sure "machine B" is equipped to allow connections on port 15701&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jul 2010 16:10:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661634#M41547</guid>
      <dc:creator>DaJo</dc:creator>
      <dc:date>2010-07-15T16:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661635#M41548</link>
      <description>&lt;!--!*#--&gt;&amp;gt; Target machine B (Linux server)&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; Needs to allow connections via port 15701&lt;BR /&gt;&amp;gt; from Source machine A&lt;BR /&gt;&lt;BR /&gt;Ok.  Who's stopping it?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; However, when I try telnet to this machine&lt;BR /&gt;&amp;gt; on port 1521 [...]&lt;BR /&gt;&lt;BR /&gt;I see where you tried to get to port 1521.&lt;BR /&gt;I see nothing about any test of port 15701.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] Whom do you expect to be listening at&lt;BR /&gt;&amp;gt; these ports?&lt;BR /&gt;&lt;BR /&gt;Still wondering...&lt;BR /&gt;&lt;BR /&gt;&amp;gt; -- this is not related to the oracle&lt;BR /&gt;&amp;gt; listener&lt;BR /&gt;&lt;BR /&gt;Ok.  So, WHAT _IS_ IT RELATED TO?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] the first thought is to make sure&lt;BR /&gt;&amp;gt; "machine B" is equipped to allow&lt;BR /&gt;&amp;gt; connections on port 15701&lt;BR /&gt;&lt;BR /&gt;_My_ first thought would be to make sure that&lt;BR /&gt;someone (server program) on "machine B" is&lt;BR /&gt;listening on port 15701.  Then, if I got an&lt;BR /&gt;error message other than "Connection&lt;BR /&gt;refused", I might start worrying about some&lt;BR /&gt;firewall (like, say, iptables) getting in the&lt;BR /&gt;way.</description>
      <pubDate>Thu, 15 Jul 2010 16:47:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661635#M41548</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-07-15T16:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661636#M41549</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Diagnostic:&lt;BR /&gt;&lt;BR /&gt;nmap hostname&lt;BR /&gt;&lt;BR /&gt;This will show open ports.&lt;BR /&gt;&lt;BR /&gt;iptables -L&lt;BR /&gt;&lt;BR /&gt;This will show current firewall configuration after your changes.&lt;BR /&gt;&lt;BR /&gt;Note:&lt;BR /&gt;remote machine% telnet &lt;MACHINE&gt; 22&lt;BR /&gt;Should not work. Port 22 is not open.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/MACHINE&gt;</description>
      <pubDate>Thu, 15 Jul 2010 17:14:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661636#M41549</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-07-15T17:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661637#M41550</link>
      <description>Steven S and Steven P&lt;BR /&gt;&lt;BR /&gt;Thanks for working on this with me. I'll try my best to convey more details, hopefully it helps.&lt;BR /&gt;Here's the output for the two commands:&lt;BR /&gt;&lt;BR /&gt;# nmap hostname&lt;BR /&gt;&lt;BR /&gt;Not shown: 1675 closed ports&lt;BR /&gt;PORT    STATE SERVICE&lt;BR /&gt;22/tcp  open  ssh&lt;BR /&gt;25/tcp  open  smtp&lt;BR /&gt;111/tcp open  rpcbind&lt;BR /&gt;631/tcp open  ipp&lt;BR /&gt;926/tcp open  unknown&lt;BR /&gt;&lt;BR /&gt;Nmap finished: 1 IP address (1 host up) scanned in 0.068 seconds&lt;BR /&gt;&lt;BR /&gt;# iptables -L&lt;BR /&gt;Chain INPUT (policy ACCEPT)&lt;BR /&gt;target     prot opt source               destination         &lt;BR /&gt;&lt;BR /&gt;Chain FORWARD (policy ACCEPT)&lt;BR /&gt;target     prot opt source               destination         &lt;BR /&gt;&lt;BR /&gt;Chain OUTPUT (policy ACCEPT)&lt;BR /&gt;target     prot opt source               destination         &lt;BR /&gt;&lt;BR /&gt;With regards to error msgs, I get the same "connection refused" for all three ports via telnet: 15701, 15702 and 1521. I just mentioned one error msg with 1521.&lt;BR /&gt;I just chose telnet since I understand that's the sure fire way of testing if a port is open.&lt;BR /&gt;&lt;BR /&gt;There is a security software agent/service that runs on source machine A, that needs to connect to ports 15701 and 15702 on target machine B.&lt;BR /&gt;&lt;BR /&gt;From source machine A, when I try a &lt;BR /&gt;# telnet machine B 22&lt;BR /&gt;&lt;BR /&gt;Escape character is '^]'.&lt;BR /&gt;SSH-2.0-OpenSSH_4.3&lt;BR /&gt;&lt;BR /&gt;basically it works...in the sense that the port looks open. Also, I can ssh from machine A to machine B, so the port is open I presume.&lt;BR /&gt;&lt;BR /&gt;If the ports are open on machine B, shouldn't we see the same result for:&lt;BR /&gt;# telnet machine B 15701&lt;BR /&gt;and&lt;BR /&gt;# telnet machine B 15702&lt;BR /&gt;&lt;BR /&gt;telnet: Unable to connect to remote host: Connection refused&lt;BR /&gt;&lt;BR /&gt;Are you saying that a corresponding service has to run on machine B as well? in order for the ports to be open on machine B?&lt;BR /&gt;We actually don't have a service defined that way on machine B, rather everything is handled by the service on machine A. It needs the port open on machine B so it can connect to machine B, complete some process (say sending log/audit info) and then closes it.&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.</description>
      <pubDate>Thu, 15 Jul 2010 18:17:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661637#M41550</guid>
      <dc:creator>DaJo</dc:creator>
      <dc:date>2010-07-15T18:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661638#M41551</link>
      <description>Shalom again,&lt;BR /&gt;&lt;BR /&gt;Try testing port 22 with ssh, instead of telnet.&lt;BR /&gt;&lt;BR /&gt;ssh -vvv hostname.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 15 Jul 2010 19:02:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661638#M41551</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2010-07-15T19:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661639#M41552</link>
      <description>&lt;!--!*#--&gt;&amp;gt; Try testing port 22 with ssh, instead of telnet.&lt;BR /&gt;&lt;BR /&gt;Why?  The Telnet test works just fine.  And,&lt;BR /&gt;there's apparently a working SSH server&lt;BR /&gt;listening at port 22 (as usual).&lt;BR /&gt;&lt;BR /&gt;&amp;gt; If the ports are open on machine B, [...]&lt;BR /&gt;&lt;BR /&gt;That depends on what you mean by "the ports&lt;BR /&gt;are open".  As I tried to explain before,&lt;BR /&gt;"Connection refused" normally means that you&lt;BR /&gt;can talk to the server system, but that&lt;BR /&gt;there's no server program listening at the&lt;BR /&gt;requested port number.  It doesn't matter if&lt;BR /&gt;no one is blocking the network traffic, if&lt;BR /&gt;no one is listening at the far end.  For&lt;BR /&gt;example, if you kill the "sshd" process on&lt;BR /&gt;the server, then your SSH test should also&lt;BR /&gt;fail with a "Connection refused" complaint.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; &amp;gt; [...] Whom do you expect to be listening at&lt;BR /&gt;&amp;gt; &amp;gt; these ports?&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; Still wondering...&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; &amp;gt; -- this is not related to the oracle&lt;BR /&gt;&amp;gt; &amp;gt; listener&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; Ok.  So, WHAT _IS_ IT RELATED TO?&lt;BR /&gt;&lt;BR /&gt;I'm tired of asking.</description>
      <pubDate>Thu, 15 Jul 2010 19:50:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661639#M41552</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-07-15T19:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661640#M41553</link>
      <description>Post the output of the following:&lt;BR /&gt;&lt;BR /&gt;netstat -a |grep 15701&lt;BR /&gt;netstat -a |grep 15702&lt;BR /&gt;&lt;BR /&gt;If you have lsof installed try running:&lt;BR /&gt;&lt;BR /&gt;lsof -i :15701&lt;BR /&gt;lsof -i :15702&lt;BR /&gt;&lt;BR /&gt;If the above commands, either netstat or lsof, do not return anything, then you HAVE NO program or daemon listening on the ports.  As Steven has said, there MUST be something listening for a conection before a connection can be made.</description>
      <pubDate>Thu, 15 Jul 2010 20:35:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661640#M41553</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2010-07-15T20:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661641#M41554</link>
      <description>&amp;gt; &amp;gt; -- this is not related to the oracle&lt;BR /&gt;&amp;gt; &amp;gt; listener&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; Ok.  So, WHAT _IS_ IT RELATED TO?&lt;BR /&gt;&lt;BR /&gt;I mentioned this briefly earlier, re-pasting it here:&lt;BR /&gt;&lt;BR /&gt;There is a security software agent/service that runs on source machine A (windows), that needs to connect to ports 15701 and 15702 on target machine B (Linux).&lt;BR /&gt;This is the only service.&lt;BR /&gt;&lt;BR /&gt;Based on your comments, there needs to be another service running/listening on these ports on Target machine B. I can check on that.&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Thu, 15 Jul 2010 21:38:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661641#M41554</guid>
      <dc:creator>DaJo</dc:creator>
      <dc:date>2010-07-15T21:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661642#M41555</link>
      <description>Patrick W,&lt;BR /&gt;&lt;BR /&gt;netstat -a | grep 15701&lt;BR /&gt;netstat -a | grep 15702 &lt;BR /&gt;produced no output.&lt;BR /&gt;&lt;BR /&gt;I have to check with the BU about "the service" that is supposed to listen on these ports on the target server before the ports can be opened.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Jul 2010 21:43:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661642#M41555</guid>
      <dc:creator>DaJo</dc:creator>
      <dc:date>2010-07-15T21:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661643#M41556</link>
      <description>&lt;!--!*#--&gt;&amp;gt; I mentioned this briefly earlier, re-pasting it here:&lt;BR /&gt;&lt;BR /&gt;Yes, you did, and I missed it.  Thanks/sorry.&lt;BR /&gt;(Of course, "a security software&lt;BR /&gt;agent/service" is not a very detailed&lt;BR /&gt;description.)&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] there needs to be another service&lt;BR /&gt;&amp;gt; running/listening on these ports on Target&lt;BR /&gt;&amp;gt; machine B. I can check on that.&lt;BR /&gt;&lt;BR /&gt;That's my claim.  There needs to be something&lt;BR /&gt;running/registered on "B" which is listening.&lt;BR /&gt;Knowing nothing, I'd assume that the&lt;BR /&gt;installation instructions for this mystery&lt;BR /&gt;product would explain what must be done.</description>
      <pubDate>Thu, 15 Jul 2010 21:44:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661643#M41556</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-07-15T21:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661644#M41557</link>
      <description>Thanks Steven S.&lt;BR /&gt;&lt;BR /&gt;We are new to this security product as well, and one of the instructions is to open those ports on the target server "so it can communicate". &lt;BR /&gt;They haven't provided any info on the services that need to run on the target server, so we are checking back with them.&lt;BR /&gt;&lt;BR /&gt;I'll assign points to all the folks who provided valuable input. Appreciate the time spent in debugging this issue.</description>
      <pubDate>Thu, 15 Jul 2010 22:05:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661644#M41557</guid>
      <dc:creator>DaJo</dc:creator>
      <dc:date>2010-07-15T22:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661645#M41558</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] one of the instructions is to open&lt;BR /&gt;&amp;gt; those ports on the target server "so it&lt;BR /&gt;&amp;gt; can communicate".&lt;BR /&gt;&lt;BR /&gt;Certainly, if anyone is blocking access at&lt;BR /&gt;those ports, then those blocks should be&lt;BR /&gt;removed, but the next obvious question is,&lt;BR /&gt;"'so it can communicate' with _what_?"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; We are new to this security product [...]&lt;BR /&gt;&lt;BR /&gt;At least you know what its name is, and you&lt;BR /&gt;have some instructions to read.  The rest of&lt;BR /&gt;us are still in the dark.</description>
      <pubDate>Fri, 16 Jul 2010 00:05:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661645#M41558</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-07-16T00:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661646#M41559</link>
      <description>Steven S.&lt;BR /&gt;&lt;BR /&gt;The name is Defiance DPS (security) software.&lt;BR /&gt;&lt;BR /&gt;They have asked me to check if the ports are open(/allowed) at the network switch level.&lt;BR /&gt;I think therein lies the problem.&lt;BR /&gt;&lt;BR /&gt;It looks like: "telnet machine 15701" should work once the switch related work is complete (maybe ACLs?)</description>
      <pubDate>Fri, 16 Jul 2010 20:32:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661646#M41559</guid>
      <dc:creator>DaJo</dc:creator>
      <dc:date>2010-07-16T20:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Open ports on Linux server</title>
      <link>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661647#M41560</link>
      <description>&lt;!--!*#--&gt;&amp;gt; The name is Defiance DPS (security) software.&lt;BR /&gt;&lt;BR /&gt;Ok, but they don't seem to have any&lt;BR /&gt;easy-to-find installation instructions on the&lt;BR /&gt;Web.  But feel free to lead me to a useful&lt;BR /&gt;document.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I think therein lies the problem.&lt;BR /&gt;&lt;BR /&gt;I doubt it.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; It looks like: "telnet machine 15701"&lt;BR /&gt;&amp;gt; should work once the switch related work is&lt;BR /&gt;&amp;gt; complete (maybe ACLs?)&lt;BR /&gt;&lt;BR /&gt;Why does it look that way?  (What are you&lt;BR /&gt;looking at?)  If you expect anything to talk&lt;BR /&gt;to these ports on "machine B", then, so far&lt;BR /&gt;as I know, there must be some software&lt;BR /&gt;installed on "machine B" which listens at&lt;BR /&gt;those ports.&lt;BR /&gt;&lt;BR /&gt;A Telnet client (normally) talks to port&lt;BR /&gt;23.  An SSH client normally talks to port&lt;BR /&gt;22.  A Web browser normally talks to port 80.&lt;BR /&gt;In each case, there must be s server program&lt;BR /&gt;running (or registered with [x]inetd) which&lt;BR /&gt;is listening at the appropriate port, or else&lt;BR /&gt;when a client tried to connect, it would fail&lt;BR /&gt;with that "Connection refused" complaint.&lt;BR /&gt;&lt;BR /&gt;Look through your "netstat -an" output for&lt;BR /&gt;these (and similar) ports.  I predict that&lt;BR /&gt;for every service which works, you'll see a&lt;BR /&gt;"LISTEN" line in there.  And for any other&lt;BR /&gt;port, with no "LISTEN" line in there, you'll&lt;BR /&gt;get a "Connection refused" complaint if you&lt;BR /&gt;try to talk to it.&lt;BR /&gt;&lt;BR /&gt;So far as I know, ACLs are related to files,&lt;BR /&gt;not IP ports.  Regarding any network switch,&lt;BR /&gt;what happens if you try to Telnet to these&lt;BR /&gt;ports from "machine B" itself (so that no&lt;BR /&gt;external network hardware is involved)?&lt;BR /&gt;&lt;BR /&gt;Did you install any software on "machine B"?&lt;BR /&gt;If so, then how, exactly?  If not, then to&lt;BR /&gt;whom do you expect "machine A" to be talking&lt;BR /&gt;(on these ports)?</description>
      <pubDate>Fri, 16 Jul 2010 21:34:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/open-ports-on-linux-server/m-p/4661647#M41560</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2010-07-16T21:34:21Z</dc:date>
    </item>
  </channel>
</rss>

