如何在Fedora上设定和取消IPv6地址

如何在Fedora上设定和取消IPv6地址

1.列出当前的IPv6地址

使用 "ip"

使用方法:

# /sbin/ip -6 addr show dev <interface>

例子:一个静态的主机地址

# /sbin/ip -6 addr show dev eth0


2: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_ fast qlen 100


inet6 fe80::210:a4ff:fee3:9566/10 scope link


inet6 3ffe:ffff:0:f101::1/64 scope global


inet6 fec0:0:0:f101::1/64 scope site

自动设定的地址和它的存活时间:

# /sbin/ip -6 addr show dev eth0 


3: eth0: <BROADCAST,MULTICAST,PROMISC,UP> mtu 1500 qdisc pfifo_fast qlen 100 


inet6 2002:d950:f5f8:f101:2e0:18ff:fe90:9205/64 scope global dynamic 


  valid_lft 16sec preferred_lft 6sec 


inet6 3ffe:400:100:f101:2e0:18ff:fe90:9205/64 scope global dynamic 


  valid_lft 2591997sec preferred_lft 604797sec inet6 fe80::2e0:18ff:fe90:9205/10 scope link

使用 "ifconfig"

使用方法:

# /sbin/ifconfig <interface>

例子,它只列出IPv6地址:

# /sbin/ifconfig eth0 |grep "inet6 addr:"


inet6 addr: fe80::210:a4ff:fee3:9566/10 Scope:Link


inet6 addr: 3ffe:ffff:0:f101::1/64 Scope:Global


inet6 addr: fec0:0:0:f101::1/64 Scope:Site

2.增加一个IPv6地址

如何在Fedora上设定和取消IPv6地址

其原理同IPv4的"IP ALIAS"(IP别名)相同

使用 "ip"

使用方法:

# /sbin/ip -6 addr add <ipv6address>/<prefixlength> dev <interface>

例子:

# /sbin/ip -6 addr add 3ffe:ffff:0:f101::1/64 dev eth0

使用 "ifconfig"

使用方法:

# /sbin/ifconfig <interface> inet6 add <ipv6address>/<prefixlength>

例子:

# /sbin/ifconfig eth0 inet6 add 3ffe:ffff:0:f101::1/64

3.移除IPv6地址

这个不常用, 不要用它移除不存在的地址,一些早期的核心会因为受不了而挂掉。

使用 "ip"

使用方法:

# /sbin/ip -6 addr del <ipv6address>/<prefixlength> dev <interface>

例子:

# /sbin/ip -6 addr del 3ffe:ffff:0:f101::1/64 dev eth0

使用 "ifconfig"

使用方法:

# /sbin/ifconfig <interface> inet6 del <ipv6address>/<prefixlength>

相关推荐