Editing IPv6

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 4: Line 4:
  
 
venet devices are not fully IPv6 compliant, but still works if you statically assign IPv6 addresses.  They do not properly support MAC addresses and consequently link local addresses and can not play nice with neighbor discovery or router advertisements, router discovery, or auto-conf.  They also require additional modifications to the layer 3 forwarding behaviour of the host via sysctl.
 
venet devices are not fully IPv6 compliant, but still works if you statically assign IPv6 addresses.  They do not properly support MAC addresses and consequently link local addresses and can not play nice with neighbor discovery or router advertisements, router discovery, or auto-conf.  They also require additional modifications to the layer 3 forwarding behaviour of the host via sysctl.
 
== Configure the Node ==
 
In order for IPv6 to work for containers you must have a fully functioning IPv6 interface on the host node.
 
 
== CentOS Node Configuration for IPv6 ==
 
 
<pre>Add the below to the file /etc/sysconfig/network
 
 
NETWORKING_IPV6=yes
 
IPV6FORWARDING=yes
 
IPV6_DEFAULTDEV=eth0
 
IPV6_DEFAULTGW=aaaa:bbbb:a01a::1
 
IPV6_AUTOCONF=no
 
 
Add the below to the file /etc/sysconfig/network-scripts/ifcfg-ethX  X being your interface number
 
 
IPV6INIT=yes
 
IPV6ADDR=aaaa:bbbb:cccc:0000:0100::1
 
 
/etc/sysctl.conf also needs
 
 
net.ipv6.conf.default.forwarding = 1
 
net.ipv6.conf.all.forwarding = 1
 
net.ipv6.conf.all.proxy_ndp = 1
 
</pre>
 
 
  
 
== venet example ==
 
== venet example ==

Please note that all contributions to OpenVZ Virtuozzo Containers Wiki may be edited, altered, or removed by other contributors. If you don't want your writing to be edited mercilessly, then don't submit it here.
If you are going to add external links to an article, read the External links policy first!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)
Retrieved from "https://wiki.openvz.org/IPv6"