注:我的是eth0,但別的電腦可能不同,具體檢視命令ifconfig,將你電腦出現的ethx替換成下文的eth0
第一種方法:快遞建立\刪除虛擬網絡卡
sudo ifconfig eth0:0 192.168.10.10 up
以上的命令就可以在eth0網絡卡上建立乙個叫eth0:0的虛擬網絡卡,他的位址是:192.168.1.63
如果不想要這個虛擬網絡卡了,可以使用如下命令刪除:
sudo ifconfig eth0:0 down
重啟伺服器或者網路後,虛擬網絡卡就沒有了.
第二種方法:修改網絡卡配置檔案
在ubuntu下,網絡卡的配置檔案是/etc/network/inte***ces,所以我們修改它:
sudo
gedit /etc/network/
inte***ce
s 照eth0新增eth0:0
auto eth0
iface eth0 inet static
name ethernet lan card
address 192.168.1.2
netmask 255.255.255.0
network 192.168.1.1
broadcast 192.168.1.255
gateway 192.168.1.254
auto eth0:0
iface eth0:0 inet static
name ethernet lan card
address 192.168.1.3
netmask 255.255.255.0
network 192.168.1.1
broadcast 192.168.1.255
gateway 192.168.1.254
然後重啟服務
sudo
/etc/init.d/networking restart
測試新的ip位址
ping 192.168.1.2
ping 192.168.1.3
linux 單網絡卡繫結多個IP
linux 單網絡卡繫結多個ip 配置預設閘道器 預設閘道器的檔案 etc sysconfig network 內容如下 其中test為主機名稱 networking yes hostname test gateway 192.168.168.250 或 nozeroconf yes gateway...
linux 系統單網絡卡繫結多個IP位址方法
如果linux 系統只有乙個物理網絡卡,而在實際使用中,有時需要配置單網絡卡具備多個ip 位址。步驟 1 root登入 linux系統 2 檢視現有網路配置 root localhost cd etc sysconfig network scripts root localhost network ...
ubuntu下一塊網絡卡繫結多個ip
常常我們有需要乙個網絡卡象windows一樣設定多個ip。下面我們看看在ubuntu下怎麼樣做.我們先開啟網路介面的檔案 sudo vi etc network inte ces 只需 eth0 新增eth0 0 auto eth0 iface eth0 inet static address 19...