A adição de um endereço IPv6 é muito similar ao endereço "IP ALIAS" nas interfaces IPv4 no Linux.
Uso:
# /sbin/ip -6 addr add <ipv6address>/<prefixlength> dev <interface> |
Exemplo:
# /sbin/ip -6 addr add 2001:0db8:0:f101::1/64 dev eth0 |
Uso:
# /sbin/ifconfig <interface> inet6 add <ipv6address>/<prefixlength> |
Exemplo:
# /sbin/ifconfig eth0 inet6 add 2001:0db8:0:f101::1/64 |