<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Find Out List of All Open Ports in Linux	</title>
	<atom:link href="https://www.tecmint.com/find-open-ports-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/find-open-ports-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 10:21:20 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-1098207</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Thu, 31 Jan 2019 07:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23327#comment-1098207</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-1098096&quot;&gt;Reyaz Hossan&lt;/a&gt;.

@Reyaz

Thanks for sharing this useful information, we are grateful.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-1098096">Reyaz Hossan</a>.</p>
<p>@Reyaz</p>
<p>Thanks for sharing this useful information, we are grateful.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Reyaz Hossan		</title>
		<link>https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-1098096</link>

		<dc:creator><![CDATA[Reyaz Hossan]]></dc:creator>
		<pubDate>Wed, 30 Jan 2019 11:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23327#comment-1098096</guid>

					<description><![CDATA[Awesome post and informative. 

Thanks a lot

If you don&#039;t mind I can share some addition info with this post. 

If you want to find the port list of oracle application and database in Linux system use the following command.
&lt;pre&gt;
# cat $ORACLE_HOME/install/portlist.ini
&lt;/pre&gt;
Else, you can follow this guide to find out Oracle ports: https://docs.oracle.com/cd/B19306_01/install.102/b15660/app_port.htm

Thanks again...]]></description>
			<content:encoded><![CDATA[<p>Awesome post and informative. </p>
<p>Thanks a lot</p>
<p>If you don&#8217;t mind I can share some addition info with this post. </p>
<p>If you want to find the port list of oracle application and database in Linux system use the following command.</p>
<pre>
# cat $ORACLE_HOME/install/portlist.ini
</pre>
<p>Else, you can follow this guide to find out Oracle ports: <a target="_blank" href="https://docs.oracle.com/cd/B19306_01/install.102/b15660/app_port.htm" rel="nofollow ugc">https://docs.oracle.com/cd/B19306_01/install.102/b15660/app_port.htm</a></p>
<p>Thanks again&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-967667</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Thu, 08 Feb 2018 08:29:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23327#comment-967667</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-967541&quot;&gt;Mike Schwartz&lt;/a&gt;.

@Mike 

Thanks for sharing, I use a similar command to find process listening on a port like this:
&lt;pre&gt;
$ sudo netstat -tnlp &#124; grep -w &quot;PORT_HERE&quot;
&lt;/pre&gt;
Where:
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;-t&lt;/strong&gt; - consider tcp ports.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;-l&lt;/strong&gt; -  display only listening sockets.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;-n&lt;/strong&gt; - show numerical addresses.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;-p&lt;/strong&gt; -  show the PID and name of the program socket belongs to.&lt;/li&gt;
&lt;/ul&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-967541">Mike Schwartz</a>.</p>
<p>@Mike </p>
<p>Thanks for sharing, I use a similar command to find process listening on a port like this:</p>
<pre>
$ sudo netstat -tnlp | grep -w "PORT_HERE"
</pre>
<p>Where:</p>
<ul>
<li><strong>-t</strong> &#8211; consider tcp ports.</li>
<li><strong>-l</strong> &#8211;  display only listening sockets.</li>
<li><strong>-n</strong> &#8211; show numerical addresses.</li>
<li><strong>-p</strong> &#8211;  show the PID and name of the program socket belongs to.</li>
</ul>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mike Schwartz		</title>
		<link>https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-967541</link>

		<dc:creator><![CDATA[Mike Schwartz]]></dc:creator>
		<pubDate>Wed, 07 Feb 2018 20:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23327#comment-967541</guid>

					<description><![CDATA[I use &lt;strong&gt;`netstat -antlp &#124; grep LISTEN&lt;/strong&gt;`

I remember &quot;&lt;strong&gt;ant&lt;/strong&gt;&quot; and &quot;&lt;strong&gt;lp&lt;/strong&gt;&quot; options for some reason it sticks in my brain.]]></description>
			<content:encoded><![CDATA[<p>I use <strong>`netstat -antlp | grep LISTEN</strong>`</p>
<p>I remember &#8220;<strong>ant</strong>&#8221; and &#8220;<strong>lp</strong>&#8221; options for some reason it sticks in my brain.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-892956</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Wed, 31 May 2017 06:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=23327#comment-892956</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-892760&quot;&gt;Chris Pesoa&lt;/a&gt;.

@Chris

Hope you enjoyed it, many thanks for the suggestion; keeps output small enough and clear.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-open-ports-in-linux/comment-page-1/#comment-892760">Chris Pesoa</a>.</p>
<p>@Chris</p>
<p>Hope you enjoyed it, many thanks for the suggestion; keeps output small enough and clear.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
