Which of the following commands adds a static IPv6 address to the network interface eth0?
A.
ip add addr 2001:db8::1337/64 dev eth0
B.
ip -6 add addr 2001:db8::1337/64 dev eth0
C.
ip addr add 2001:db8::1337/64 dev eth0
D.
ip -6 addr add new 2001:db8::1337/64 dev eth0
E.
ip addr add -6 2001:db8::1337/64 dev eth0
題解
「ip」指令可以顯示或是管理路由、裝置、路由政策和隧道協定。「addr」參數(子命令)可以用來設定IP位址。如果IP位址是IPv6的話,可使用「-6」參數,但也可以省略,但這個「-6」參數必須要放在子命令之前。
選項D,沒有「new」這樣的參數。
選項E,「-6」參數的位置錯誤。
因此答案是選項「C」。