<?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: A Shell Script to Monitor Network, Diske, Uptime, Load, and RAM in Linux	</title>
	<atom:link href="https://www.tecmint.com/linux-server-health-monitoring-script/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/linux-server-health-monitoring-script/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 22 Apr 2024 14:16:29 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Name		</title>
		<link>https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-2161457</link>

		<dc:creator><![CDATA[Name]]></dc:creator>
		<pubDate>Mon, 22 Apr 2024 14:16:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13258#comment-2161457</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-756265&quot;&gt;Ravi Saive&lt;/a&gt;.

Be very careful when using dot notation combined with delete. The command itself can remove anything, even if you are located in a different directory than you might expect, especially when operating as the root user.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-756265">Ravi Saive</a>.</p>
<p>Be very careful when using dot notation combined with delete. The command itself can remove anything, even if you are located in a different directory than you might expect, especially when operating as the root user.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-2156487</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 08 Apr 2024 05:07:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13258#comment-2156487</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-2155500&quot;&gt;Sven&lt;/a&gt;.

@Sven,

To include checking IPv6 address alongside IPv4, you can modify the script as follows:
&lt;pre&gt;
# Check Internal IPv4 and IPv6
internalip=$(hostname -I)
echo -e &#039;\E[32m&#039;&quot;Internal IPv4 :&quot; $tecreset $(echo $internalip &#124; awk &#039;{print $1}&#039;)
echo -e &#039;\E[32m&#039;&quot;Internal IPv6 :&quot; $tecreset $(echo $internalip &#124; awk &#039;{print $2}&#039;)

# Check External IPv4 and IPv6
externalip=$(curl -s ifconfig.me)
echo -e &#039;\E[32m&#039;&quot;External IPv4 : $tecreset &quot;$(echo $externalip &#124; awk &#039;{print $1}&#039;)
echo -e &#039;\E[32m&#039;&quot;External IPv6 : $tecreset &quot;$(echo $externalip &#124; awk &#039;{print $2}&#039;)
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-2155500">Sven</a>.</p>
<p>@Sven,</p>
<p>To include checking IPv6 address alongside IPv4, you can modify the script as follows:</p>
<pre>
# Check Internal IPv4 and IPv6
internalip=$(hostname -I)
echo -e '\E[32m'"Internal IPv4 :" $tecreset $(echo $internalip | awk '{print $1}')
echo -e '\E[32m'"Internal IPv6 :" $tecreset $(echo $internalip | awk '{print $2}')

# Check External IPv4 and IPv6
externalip=$(curl -s ifconfig.me)
echo -e '\E[32m'"External IPv4 : $tecreset "$(echo $externalip | awk '{print $1}')
echo -e '\E[32m'"External IPv6 : $tecreset "$(echo $externalip | awk '{print $2}')
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sven		</title>
		<link>https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-2155500</link>

		<dc:creator><![CDATA[Sven]]></dc:creator>
		<pubDate>Fri, 05 Apr 2024 09:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13258#comment-2155500</guid>

					<description><![CDATA[Great script, but it shows only one external IP. I have ipv4 and ipv6. I see only ipv6.]]></description>
			<content:encoded><![CDATA[<p>Great script, but it shows only one external IP. I have ipv4 and ipv6. I see only ipv6.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: nova		</title>
		<link>https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-1691799</link>

		<dc:creator><![CDATA[nova]]></dc:creator>
		<pubDate>Wed, 29 Dec 2021 11:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13258#comment-1691799</guid>

					<description><![CDATA[Thank you so much, tecmint group. The script is great and working...]]></description>
			<content:encoded><![CDATA[<p>Thank you so much, tecmint group. The script is great and working&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nova Nova		</title>
		<link>https://www.tecmint.com/linux-server-health-monitoring-script/comment-page-1/#comment-1691779</link>

		<dc:creator><![CDATA[Nova Nova]]></dc:creator>
		<pubDate>Wed, 29 Dec 2021 10:20:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=13258#comment-1691779</guid>

					<description><![CDATA[Good day, sir, I have copied the GitHub link to download the script, but I received an error message, the page was not found.]]></description>
			<content:encoded><![CDATA[<p>Good day, sir, I have copied the GitHub link to download the script, but I received an error message, the page was not found.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
