IPv6 configuration on Linux operating systems

How can I add IPv6 address to a specific interface?

There are several ways to configure a new address to on interface:

or

How can I remove IPv6 address from a specific interface?

There are several ways to configure a new address to on interface (very similar to adding new address - just replacing add to del):

or

How can look at IPv6 routing table?

There are several ways to do that:

or

or

How can I disable IPv6 on the Linux system ?

Using Linux as a router

How can configure of Router ADVertisement Daemon (radvd) under Linux

If we want to use a Linux machine as an IPv6 router and provide stateless autoconfiguration information for clinets we need the Router ADVertisement Daemon (radvd). Luckily radvd is part of the major Linux distributions (Debian, RedHat, SuSE), therefore installing it is straightforward.

The configuration of the daemon is stored in /etc/radvd.conf configuration files. You can configure router advertisments per interfaces. You can configure more than one prefix per interfaces.

A sample comfiguration that answers to router solicitation messages on two VLANS (different prefixes):

 interface eth0.105
 {
   AdvSendAdvert on;
   prefix 2001:db8:6001:500::/64
   {
   };
 };
 interface eth0.60
 {
   AdvSendAdvert on;
   prefix 2001:db8:6001:3f00::/64
   {
   };
 };

Can you help me with Linux distribution xyz?

Which linux kernel version has broken IPv6?

How can I setup 6to4 relay on Linux?

How can I setup NAT-PT box on Linux?

Campus6: IPv6hostslinux (last edited 2008-04-10 15:29:34 by localhost)