<?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: 4 Ways to Find Server Public IP Address in Linux Terminal	</title>
	<atom:link href="https://www.tecmint.com/find-linux-server-public-ip-address/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/find-linux-server-public-ip-address/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Fri, 05 Jan 2024 05:12:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-2122620</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Fri, 05 Jan 2024 05:12:29 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27829#comment-2122620</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-2122609&quot;&gt;Jackie Simpson&lt;/a&gt;.

@Jackie,

I appreciate the recommendation! &lt;strong&gt;ipaddress.ai&lt;/strong&gt; does seem straightforward to know the IP address of the system.

Thanks for sharing this handy tool!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-2122609">Jackie Simpson</a>.</p>
<p>@Jackie,</p>
<p>I appreciate the recommendation! <strong>ipaddress.ai</strong> does seem straightforward to know the IP address of the system.</p>
<p>Thanks for sharing this handy tool!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jackie Simpson		</title>
		<link>https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-2122609</link>

		<dc:creator><![CDATA[Jackie Simpson]]></dc:creator>
		<pubDate>Fri, 05 Jan 2024 04:31:47 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27829#comment-2122609</guid>

					<description><![CDATA[I found ipaddress.ai to be the easiest one.

You don&#039;t need to parse/grep/cut anything, you can simply run;
&lt;pre&gt;
curl ipaddress.ai
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>I found ipaddress.ai to be the easiest one.</p>
<p>You don&#8217;t need to parse/grep/cut anything, you can simply run;</p>
<pre>
curl ipaddress.ai
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-1551822</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Tue, 20 Jul 2021 08:07:32 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27829#comment-1551822</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-1551741&quot;&gt;Derek&lt;/a&gt;.

@Derek,

Thanks for the tip, it works I tried and it prints the Public IP address on the terminal...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-1551741">Derek</a>.</p>
<p>@Derek,</p>
<p>Thanks for the tip, it works I tried and it prints the Public IP address on the terminal&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Derek		</title>
		<link>https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-1551741</link>

		<dc:creator><![CDATA[Derek]]></dc:creator>
		<pubDate>Tue, 20 Jul 2021 04:26:04 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27829#comment-1551741</guid>

					<description><![CDATA[I like option 2 but grep doesn&#039;t need to be part of it. 

You can shorten it to:
&lt;pre&gt;
$ host myip.opendns.com resolver1.opendns.com&#124; awk &#039;/has / {print $4}&#039;
&lt;/pre&gt;
*Cheers*]]></description>
			<content:encoded><![CDATA[<p>I like option 2 but grep doesn&#8217;t need to be part of it. </p>
<p>You can shorten it to:</p>
<pre>
$ host myip.opendns.com resolver1.opendns.com| awk '/has / {print $4}'
</pre>
<p>*Cheers*</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-1322086</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Fri, 20 Mar 2020 08:00:12 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=27829#comment-1322086</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-1322026&quot;&gt;daniel&lt;/a&gt;.

@daniel

We truly appreciate your feedback. Thanks.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/find-linux-server-public-ip-address/comment-page-1/#comment-1322026">daniel</a>.</p>
<p>@daniel</p>
<p>We truly appreciate your feedback. Thanks.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
