添加网卡的多种方法
我們向eth0中添加一塊虛擬網(wǎng)卡:
第一種方法:快遞創(chuàng)建\刪除虛擬網(wǎng)卡
sudo ifconfig eth0:0 192.168.10.10 up
以上的命令就可以在eth0網(wǎng)卡上創(chuàng)建一個叫eth0:0的虛擬網(wǎng)卡,他的地址是:192.168.1.63
如果不想要這個虛擬網(wǎng)卡了,可以使用如下命令刪除:
sudo ifconfig eth0:0 down
重啟服務(wù)器或者網(wǎng)絡(luò)后,虛擬網(wǎng)卡就沒有了.
第二種方法:修改網(wǎng)卡配置文件
在ubuntu下,網(wǎng)卡的配置文件是/etc/network/interfaces,所以我們修改它:
sudo vim /etc/network/interfaces
在這個文件中增加如下內(nèi)容并保存:
auto eth0:0
iface eth0:0 inet static
address 192.168.10.10
netmask 255.255.255.0
#network 192.168.10.1
#broadcast 192.168.1.255
保存后,我們需要重啟網(wǎng)卡(重新加載配置文件)才會生效,使用如下命令重啟:
sudo /etc/init.d/networking restart
他的優(yōu)點是重啟服務(wù)器或者網(wǎng)卡配置不會丟失。
-------------------------------------------
在linux中虛擬網(wǎng)卡的方法
?
第三種方法:創(chuàng)建tap
前兩種方法都有一個特點,創(chuàng)建的網(wǎng)卡可有不同的ip地址,但是Mac地址相同。無法用來創(chuàng)建虛擬機(jī)。
添加虛擬網(wǎng)卡tap
tunctl -b
?
附上相關(guān)命令簡介:
顯示網(wǎng)橋信息
?brctl show ? ?
添加網(wǎng)橋
brctl addbr virbr0
激活網(wǎng)橋
ip link set virbr0 up
添加虛擬網(wǎng)卡tap
tunctl -b
tap0 -------> 執(zhí)行上面使命就會生成一個tap,后綴從0,1,2依次遞增 ?
激活創(chuàng)建的tap
ip link set tap0 up
將tap0虛擬網(wǎng)卡添加到指定網(wǎng)橋上。
brctl addif br0 tap0
--------------------------------------
給網(wǎng)橋配制ip地址
ifconfig virbr1 169.254.251.4 up?
將virbr1網(wǎng)橋上綁定的網(wǎng)卡eth5解除
brctl delif virb1 eth5 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? ? ? ? ? ? ? ? ? ? ? ? ??
給virbr1網(wǎng)橋添加網(wǎng)卡eth6
brctl addif virbr1 eth6 ? ??
?
轉(zhuǎn)載于:https://www.cnblogs.com/henglinux/p/9571517.html
總結(jié)
- 上一篇: 流利说递交招股书:上半年亏1.8亿 王翌
- 下一篇: js实现数据结构及算法之二叉树(Bina