- eth0:第一張網卡
- eth1:第二張網卡
在Ubuntu15以後,這些名稱都改變了,會像是:
- ens1f2:某張雙孔網卡的第一個孔
- ens1f3:某張雙孔網卡的第二個孔
- enp4s0:主機板上的網孔
- enp5s0:主機板上的網孔
新增/etc/udev/rules.d/10-network.rules,用MAC address去綁定網卡名稱
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="aa:bb:cc:dd:ee:f1", NAME="eth0"在這邊因為是server,所以關閉了network-manager服務,改用networking服務來設定網路,所以設定檔案會是/etc/network/interfaces,內容如下:
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="aa:bb:cc:dd:ee:f2", NAME="eth1"
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 1.2.3.4
network 1.2.3.0
netmask 255.255.255.0
broadcast 1.2.3.255
gateway 1.2.3.254
dns-nameserver 8.8.8.8
dns-nameserver 8.8.4.4
auto eth1
iface eth1 inet static
address 192.168.9.254
netmask 255.255.255.0
auto eth1:1通通都設定好以後,重新開機就會看到網卡名稱變成eth0綁定1.2.3.4這個IP與eth1綁定了192.168.9.254與192.168.8.254這兩個IP
iface eth1:1 inet static
address 192.168.8.254
netmask 255.255.255.0
參考資料
_EOF_
沒有留言:
張貼留言