<?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: Enable IPv6 on Direct Admin	</title>
	<atom:link href="https://arunns.net/enabled-ipv6-on-direct-admin/feed/" rel="self" type="application/rss+xml" />
	<link>https://arunns.net/enabled-ipv6-on-direct-admin/</link>
	<description>Arun&#039;s blog</description>
	<lastBuildDate>Sun, 27 May 2012 07:22:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.2</generator>
	<item>
		<title>
		By: Arun N S		</title>
		<link>https://arunns.net/enabled-ipv6-on-direct-admin/#comment-85</link>

		<dc:creator><![CDATA[Arun N S]]></dc:creator>
		<pubDate>Sun, 27 May 2012 07:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://arunnsblog.com/?p=569#comment-85</guid>

					<description><![CDATA[I just have noticed that, the IPv6 addresses added via the directadmin interface got disappeared after a reboot or restart on network.

Not sure if it is the case for all, but just as a work around incase.
 - Create a text file with all the IPv6 addresses separated by new line
$ cat ipv6.txt
2001::1
2001::2
2001::3

write a one liner script to add them to interface.
#!/bin/bash
for ipv6 in `cat /etc/ipv6.txt`; do
/usr/local/directadmin/scripts/addip $ipv6 255.255.255.255 eth0
done

Add this as a post-up to /etc/network/interfaces

You may still need to add them from the direct admin interface so that you can manage them.

./arun]]></description>
			<content:encoded><![CDATA[<p>I just have noticed that, the IPv6 addresses added via the directadmin interface got disappeared after a reboot or restart on network.</p>
<p>Not sure if it is the case for all, but just as a work around incase.<br />
 &#8211; Create a text file with all the IPv6 addresses separated by new line<br />
$ cat ipv6.txt<br />
2001::1<br />
2001::2<br />
2001::3</p>
<p>write a one liner script to add them to interface.<br />
#!/bin/bash<br />
for ipv6 in `cat /etc/ipv6.txt`; do<br />
/usr/local/directadmin/scripts/addip $ipv6 255.255.255.255 eth0<br />
done</p>
<p>Add this as a post-up to /etc/network/interfaces</p>
<p>You may still need to add them from the direct admin interface so that you can manage them.</p>
<p>./arun</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
