No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
also on the router). | also on the router). | ||
== Static configuration | == Static configuration == | ||
== SLAAC without DNS configuration | No radvd or dhcp configuration. NetworkManager | ||
supports static configuration. | |||
== SLAAC without DNS configuration == | |||
/etc/radvd.conf: | /etc/radvd.conf: | ||
Line 18: | Line 21: | ||
</pre> | </pre> | ||
DNS queries typically use IPv4. | DNS queries typically use IPv4. NetworkManager | ||
supports this configuration and it also works | |||
when device is ignored by NetworkManager. | |||
== SLAAC with RDNSS and DNSSL == | == SLAAC with RDNSS and DNSSL == | ||
Line 33: | Line 38: | ||
</pre> | </pre> | ||
The contents of host's /etc/resolv.conf is filled in by NetworkManager. | The contents of host's /etc/resolv.conf is filled in by NetworkManager. NetworkManager | ||
currently supports RDNSS but not DNSSL. NetworkManager has problems with RDNSS but they | |||
have to be solved on IETF level. | |||
== SLAAC with DHCPv6 Information Request == | == SLAAC with DHCPv6 Information Request == | ||
Line 57: | Line 64: | ||
This is often used to supply DNS information to hosts that don't support | This is often used to supply DNS information to hosts that don't support | ||
RDNSS/DNSSL in Router Advertisements. NetworkManager | RDNSS/DNSSL in Router Advertisements. NetworkManager supports | ||
this configuration. |
Revision as of 13:04, 18 May 2012
NetworkManager supports the IPv6 protocol. IPv6 is typically used in one of the following configurations. Network setup is typically done by the local router and, if necessary, DHCP server.
In the following examples, we assume that radvd resides on the router and DHCP is on the local network (possibly also on the router).
Static configuration
No radvd or dhcp configuration. NetworkManager supports static configuration.
SLAAC without DNS configuration
/etc/radvd.conf:
interface eth0 { AdvSendAdvert on; prefix 2001:db8:1:2::/64 {}; };
DNS queries typically use IPv4. NetworkManager supports this configuration and it also works when device is ignored by NetworkManager.
SLAAC with RDNSS and DNSSL
/etc/radvd.conf:
interface eth0 { AdvSendAdvert on; prefix 2001:db8:1:2::/64 {}; RDNSS 2001:db8:1:2::ab {}; DNSSL example.net {}; };
The contents of host's /etc/resolv.conf is filled in by NetworkManager. NetworkManager currently supports RDNSS but not DNSSL. NetworkManager has problems with RDNSS but they have to be solved on IETF level.
SLAAC with DHCPv6 Information Request
/etc/radvd.conf:
interface eth0 { AdvSendAdvert on; AdvOtherConfigFlag on; prefix 2001:db8:1:2::/64 {}; };
/etc/dhcp/dhcpd6.conf:
subnet6 2001:db8:1:2::/64 { option dhcp6.name-servers 2001:db8:1:2::ab; option dhcp6.domain-search "example.net"; }
This is often used to supply DNS information to hosts that don't support RDNSS/DNSSL in Router Advertisements. NetworkManager supports this configuration.