<?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: LFCS #5: How to Mount Local and Network (Samba &#038; NFS) Filesystems in Linux	</title>
	<atom:link href="https://www.tecmint.com/mount-filesystem-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/mount-filesystem-in-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Sat, 27 Sep 2025 06:04:08 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-2068548</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 18 Sep 2023 04:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9358#comment-2068548</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-2066489&quot;&gt;Jeff H Silverman&lt;/a&gt;.

@Jeff,

Thank you for the detailed explanation and for sharing your solution. It&#039;s indeed common for firewall rules to block SMB traffic, especially if the server is configured with strict security settings. 

Your use of &lt;strong&gt;nmap&lt;/strong&gt; to diagnose the issue is a great approach, as it can help identify which ports are open and which are being blocked.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-2066489">Jeff H Silverman</a>.</p>
<p>@Jeff,</p>
<p>Thank you for the detailed explanation and for sharing your solution. It&#8217;s indeed common for firewall rules to block SMB traffic, especially if the server is configured with strict security settings. </p>
<p>Your use of <strong>nmap</strong> to diagnose the issue is a great approach, as it can help identify which ports are open and which are being blocked.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jeff H Silverman		</title>
		<link>https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-2066489</link>

		<dc:creator><![CDATA[Jeff H Silverman]]></dc:creator>
		<pubDate>Sun, 17 Sep 2023 08:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9358#comment-2066489</guid>

					<description><![CDATA[If you attempt to use the &lt;code&gt;smbclient -L SERVER-ADDRESS&lt;/code&gt; or &lt;code&gt;smbclient -L SERVER-NAME&lt;/code&gt; and you get the error message &lt;strong&gt;Error NT_STATUS_IO_TIMEOUT&lt;/strong&gt;, and the server is pingable and perhaps reachable using other protocols (e.g. SSH, HTTP, HTTPS), then the problem *might* be due to a firewall issue.

To definitively diagnose the issue, run the &lt;strong&gt;nmap&lt;/strong&gt; command (you may have to install nmap) as root:
&lt;pre&gt;
$ sudo nmap -sT -p 135:139,445 SERVER-NAME
or
$ sudo nmap -sT -p 135:139,445 SERVER-ADDRESS
&lt;/pre&gt;
I then fixed the problem by adding rules to the iptables, chain INPUT with commands **similar** to:
&lt;pre&gt;
# iptables -I INPUT  -s 192.168.0.0/24 -p tcp -m tcp  --sport 135:139 -j ACCEPT
# iptables -I INPUT -s 192.168.0.0/24 -p tcp -m tcp --dport 443 -j ACCEPT
# iptables -I INPUT  -s 192.168.0.0/24 -p udp -m udp  --sport 135:139 -j ACCEPT
# iptables -I INPUT -s 192.168.0.0/24 -p udp -m udp --dport 443 -j ACCEPT
&lt;/pre&gt;
I&#039;m running off of ancient memory if the &lt;strong&gt;udp&lt;/strong&gt; rules are required or not and I don&#039;t have time to test that right now. This works and for the moment, that&#039;s good enough for me.

This is going on somewhat outdated information, it may be that the...]]></description>
			<content:encoded><![CDATA[<p>If you attempt to use the <code>smbclient -L SERVER-ADDRESS</code> or <code>smbclient -L SERVER-NAME</code> and you get the error message <strong>Error NT_STATUS_IO_TIMEOUT</strong>, and the server is pingable and perhaps reachable using other protocols (e.g. SSH, HTTP, HTTPS), then the problem *might* be due to a firewall issue.</p>
<p>To definitively diagnose the issue, run the <strong>nmap</strong> command (you may have to install nmap) as root:</p>
<pre>
$ sudo nmap -sT -p 135:139,445 SERVER-NAME
or
$ sudo nmap -sT -p 135:139,445 SERVER-ADDRESS
</pre>
<p>I then fixed the problem by adding rules to the iptables, chain INPUT with commands **similar** to:</p>
<pre>
# iptables -I INPUT  -s 192.168.0.0/24 -p tcp -m tcp  --sport 135:139 -j ACCEPT
# iptables -I INPUT -s 192.168.0.0/24 -p tcp -m tcp --dport 443 -j ACCEPT
# iptables -I INPUT  -s 192.168.0.0/24 -p udp -m udp  --sport 135:139 -j ACCEPT
# iptables -I INPUT -s 192.168.0.0/24 -p udp -m udp --dport 443 -j ACCEPT
</pre>
<p>I&#8217;m running off of ancient memory if the <strong>udp</strong> rules are required or not and I don&#8217;t have time to test that right now. This works and for the moment, that&#8217;s good enough for me.</p>
<p>This is going on somewhat outdated information, it may be that the&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Gabriel A. Cánepa		</title>
		<link>https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-798280</link>

		<dc:creator><![CDATA[Gabriel A. Cánepa]]></dc:creator>
		<pubDate>Sat, 09 Jul 2016 15:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9358#comment-798280</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-798148&quot;&gt;Nuno&lt;/a&gt;.

@Nuno,
You&#039;re helpful as always. Thanks for bringing that to our attention.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-798148">Nuno</a>.</p>
<p>@Nuno,<br />
You&#8217;re helpful as always. Thanks for bringing that to our attention.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nuno		</title>
		<link>https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-798148</link>

		<dc:creator><![CDATA[Nuno]]></dc:creator>
		<pubDate>Fri, 08 Jul 2016 13:21:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9358#comment-798148</guid>

					<description><![CDATA[Hi Gabriel,

A command That I think that will be useful in this article is the showmount command to search for available NFS shares on a remote server.

A simple example like run &#039;showmount -e 192.168.0.10&#039;  to view all NFS shares available on 192.168.0.10, will be great.

Best,
Nuno]]></description>
			<content:encoded><![CDATA[<p>Hi Gabriel,</p>
<p>A command That I think that will be useful in this article is the showmount command to search for available NFS shares on a remote server.</p>
<p>A simple example like run &#8216;showmount -e 192.168.0.10&#8217;  to view all NFS shares available on 192.168.0.10, will be great.</p>
<p>Best,<br />
Nuno</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-796022</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Tue, 28 Jun 2016 06:48:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=9358#comment-796022</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-795915&quot;&gt;Gabriel A. Cánepa&lt;/a&gt;.

@Gabriel,

Corrected in the writeup as suggested by @Eugene.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/mount-filesystem-in-linux/comment-page-1/#comment-795915">Gabriel A. Cánepa</a>.</p>
<p>@Gabriel,</p>
<p>Corrected in the writeup as suggested by @Eugene.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
