<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=7172&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Disabling IPv6]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=7172</link>
		<description><![CDATA[The most recent posts in Disabling IPv6.]]></description>
		<lastBuildDate>Mon, 28 Apr 2025 23:18:57 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Disabling IPv6]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=55442#p55442</link>
			<description><![CDATA[<p>Hello:</p><div class="quotebox"><cite>aitor wrote:</cite><blockquote><div><p>... using dhcpcd5 ...</p></div></blockquote></div><p>Not the case.<br />Thanks anyhow. </p><div class="quotebox"><cite>ralph.ronnquist wrote:</cite><blockquote><div><div class="codebox"><pre><code>grep ipv6.ko /lib/modules/6.12.21-amd64/modules.builtin</code></pre></div></div></blockquote></div><p>Right ...<br />It&#039;s built in.<br />Should have remembered that. 8^°</p><p>In my case it would be:</p><div class="codebox"><pre><code>$ grep ipv6.ko /lib/modules/6.1.0-33-amd64/modules.builtin
kernel/net/ipv6/ipv6.ko
$ </code></pre></div><p>Thanks for your input.</p><p>Best,</p><p>A.</p>]]></description>
			<author><![CDATA[dummy@example.com (Altoid)]]></author>
			<pubDate>Mon, 28 Apr 2025 23:18:57 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=55442#p55442</guid>
		</item>
		<item>
			<title><![CDATA[Re: Disabling IPv6]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=55441#p55441</link>
			<description><![CDATA[<p>If you are using <strong>dhcpcd5</strong>, you can disable <span class="bbc">ipv6</span> by adding the line below to <span class="bbc">/etc/dhcpcd.conf</span>:</p><div class="codebox"><pre><code># Don&#039;t solicit or accept IPv6 Router Advertisements and DHCPv6
noipv6</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (aitor)]]></author>
			<pubDate>Mon, 28 Apr 2025 23:04:29 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=55441#p55441</guid>
		</item>
		<item>
			<title><![CDATA[Re: Disabling IPv6]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=55440#p55440</link>
			<description><![CDATA[<div class="codebox"><pre><code>grep ipv6.ko /lib/modules/6.12.21-amd64/modules.builtin</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Mon, 28 Apr 2025 22:32:16 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=55440#p55440</guid>
		</item>
		<item>
			<title><![CDATA[Re: Disabling IPv6]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=55434#p55434</link>
			<description><![CDATA[<p>Hello:</p><div class="quotebox"><cite>stopAI wrote:</cite><blockquote><div><p>Dmesg show that ipv6 is administratively disabled.</p></div></blockquote></div><p>Yes.<br />That is what it says.</p><div class="quotebox"><cite>stopAI wrote:</cite><blockquote><div><p>... disabled, it means it&#039;s not being used.</p></div></blockquote></div><p>One would tend to think so.</p><div class="quotebox"><cite>Altoid wrote:</cite><blockquote><div><p>... but it clearly says IPv6: Loaded, which is not what blacklisting the module should achieve.</p></div></blockquote></div><p>So ...<br />Why is it being reported (also by <span class="bbc">dmesg</span>) as <em>loaded</em>?</p><p>The clue to my post is that (apparently) <span class="bbu">blacklsting</span> the <span class="bbc">IPv6</span> module is not working.<br />ie: it is being loaded in spite of being blacklisted with the usual <span class="bbc">*.conf</span> file in <span class="bbc">/etc/sudoers.d</span>.</p><p>Very sorry for not being clear enough, English not being my mother tongue and all that.</p><p>Best,</p><p>A.</p>]]></description>
			<author><![CDATA[dummy@example.com (Altoid)]]></author>
			<pubDate>Mon, 28 Apr 2025 16:00:27 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=55434#p55434</guid>
		</item>
		<item>
			<title><![CDATA[Re: Disabling IPv6]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=55433#p55433</link>
			<description><![CDATA[<p>Hello. </p><p>Dmesg show that ipv6 is administratively disabled. So, if it&#039;s disabled, it means it&#039;s not being used. Isn&#039;t that enough?</p>]]></description>
			<author><![CDATA[dummy@example.com (stopAI)]]></author>
			<pubDate>Mon, 28 Apr 2025 15:42:04 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=55433#p55433</guid>
		</item>
		<item>
			<title><![CDATA[Disabling IPv6]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=55432#p55432</link>
			<description><![CDATA[<p>Hello:</p><p>I do not use IPv6 and long ago (ascii) disabled it via the usual kernel command line stanza.<br />ie: <span class="bbc">ipv6.disable=1</span></p><p>I case that were not enough, I also blacklisted the module:</p><div class="codebox"><pre><code>$ cat /etc/modprobe.d/blacklist-ipv6.conf
# Blacklist IPv6 module.
blacklist ipv6
$ </code></pre></div><p>My <span class="bbc">dmesg</span> printout at boot time tells me about it ...</p><div class="codebox"><pre><code>$ sudo dmesg | grep -i ipv6
--- snip ---
[    2.834452] IPv6: Loaded, but administratively disabled, reboot required to enable
[    2.834736] mip6: Mobile IPv6
---snip ---
$ </code></pre></div><p>... but it clearly says <span class="bbc">IPv6: Loaded</span>, which is not what <span class="bbu">blacklisting</span> the module should achieve.<br />And it seems that, as a result (?), <span class="bbc">mip6</span> is also loaded.</p><p>That said, neither module show up with <span class="bbc">lsmod</span>.</p><p>What&#039;s going on here?<br />Am I blacklisting the wrong module?</p><p>Best,</p><p>A.</p>]]></description>
			<author><![CDATA[dummy@example.com (Altoid)]]></author>
			<pubDate>Mon, 28 Apr 2025 12:12:33 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=55432#p55432</guid>
		</item>
	</channel>
</rss>
