What is the command to add another IP address to an interface that already has (at least) one IP address?
A.
ifconfig eth0:1 192.168.1.2
B.
ifconfig eth0 192.168.1.2
C.
ipconfig eth0:1 192.168.1.2
D.
ipconfig eth0 192.168.1.2
E.
ifconfig eth0:sub1 192.168.1.2
題解
「ifconfig」指令可以設定網路介面。「ipconfig」是Windows作業系統的指令。
選項A,正確答案。在網路介面後面接上冒號和別名,就是由該網路介面產生出來的虛擬網路介面。
選項B,錯誤答案。根據題目要求,應在同一個網路介面上產生多個虛擬網路介面來設定不同的IP位址。
選項C,沒有「ipconfig」指令。
選項D,沒有「ipconfig」指令。
選項E,正確答案。理由同選項A。