1. 程式人生 > >ubuntu下IPv6查詢相關命令

ubuntu下IPv6查詢相關命令

查詢預設閘道器

 /sbin/ip -6 route show dev eth0

/bin/ip -6 route show dev eth0

/bin/ip route show dev eth0

/sbin/ip route show dev eth0

ip -6 addr show eth0

 

新增閘道器

route -A inet6 add default gw 2001:f80:754::1 eth1

ifconfig bond0 add 2001:f80:754::51/64

route -A inet6 add default gw 2001:f80:754::1 bond0

route -A inet6 add default gw 2001:f80:754::1/64 bond0

 

新增ip地址

ifconfig eth0 add 2001:f80:754::4/64

 

啟動網絡卡

ifconfig eth0 up

ifconfig eth0 down

ifup eth0

ifdown eth0    

ifdown -af

ifup -af