linux系統單網絡卡繫結雙IP的方法

2021-04-28 13:02:23 字數 988 閱讀 4746

linux系統單網絡卡繫結雙ip的方法

1. 進入目錄:

cd /etc/sysconfig/network-scripts/

# advanced micro devices [amd] 79c970 [pcnet32 lance]

device=eth0

bootproto=static

broadcast=192.168.0.255

hwaddr=00:0c:29:25:96:a3

#第1個ip

ipaddr=192.168.0.2

netmask=255.255.255.0

network=192.168.0.0

onboot=yes

gateway=192.168.0.1

3. 儲存退出,然後再拷貝乙個ifcfg-eth0,如:

cp ifcfg-eth0 ifcfg-eth1

# advanced micro devices [amd] 79c970 [pcnet32 lance]

#注意:裝置還是eth0

device=eth0

bootproto=static

broadcast=192.168.0.255

hwaddr=00:0c:29:25:96:a3

#第二個ip

ipaddr=192.168.0.3

netmask=255.255.255.0

network=192.168.0.0

onboot=yes

5.重啟網絡卡

service network restart

linux 單網絡卡繫結多個IP

linux 單網絡卡繫結多個ip 配置預設閘道器 預設閘道器的檔案 etc sysconfig network 內容如下 其中test為主機名稱 networking yes hostname test gateway 192.168.168.250 或 nozeroconf yes gateway...

CentOS 6 單網絡卡繫結雙IP

centos 6 單網絡卡繫結雙ip os cnetos 6.8 初始網絡卡配置檔案 root localhost vim etc sysconfig network scripts ifcfg eth0 device eth0 type ethernet uuid d3fde489 9b67 45...

linux 系統單網絡卡繫結多個IP位址方法

如果linux 系統只有乙個物理網絡卡,而在實際使用中,有時需要配置單網絡卡具備多個ip 位址。步驟 1 root登入 linux系統 2 檢視現有網路配置 root localhost cd etc sysconfig network scripts root localhost network ...