Redhat Linux網絡卡配置與繫結

2022-09-12 07:00:17 字數 2785 閱讀 1291

redhat linux的網路配置,基本上是通過修改幾個配置檔案來實現的,雖然也可以用ifconfig來設定ip,用route來配置預設閘道器,用hostname來配置主機名,但是重啟後會丟失。

相關的配置檔案

/ect/hosts配置主機名和ip位址的對應

/etc/sysconfig/network配置主機名和閘道器

/etc/sysconfig/network-scripts/ifcfg-eth0eth0配置檔案,eth1則檔名為ifcfg-eth1,以此類推

一、網絡卡配置

假設我們要配置主機名為test,eth0的ip位址192.168.168.1/24,閘道器位址192.168.168.250

則/etc/sysconfig/network檔案內容如下:

networking=yes

hostname=test

gateway=192.168.168.250

eth0對應的配置檔案/etc/sysconfig/network-scripts/ifcfg-eth0內容如下:

device=eth0

bootproto=static

ipaddr=192.168.168.1

netmask=255.255.255.0

type=ethernet

onboot=yes

二、單網絡卡繫結多個ip

有時,我們需要在一塊網絡卡上配置多個ip,例如,在上面的例子中,我們還需要為eth0配置ip 192.168.168.2和192.168.168.3。那麼需要再在/etc/sysconfig/network-scripts下新建兩個配置檔案:

ifcfg-eth0:0內容如下:

device=eth0:0

bootproto=static

ipaddr=192.168.168.2

netmask=255.255.255.0

onboot=yes

ifcfg-eth0:1內容如下:

device=eth0:1

bootproto=static

ipaddr=192.168.168.3

netmask=255.255.255.0

onboot=yes

三、多個網絡卡繫結成一塊虛擬網絡卡

為了提供網路的高可用性,我們可能需要將多塊網絡卡繫結成一塊虛擬網絡卡對外提供服務,這樣即使其中的一塊物理網絡卡出現故障,也不會導致連線中斷。比如我們可以將eth0和eth1繫結成虛擬網絡卡bond0

首先在/etc/sysconfig/network-scripts/下建立虛擬網絡卡bond0的配置檔案ifcfg-bond0,內容如下

device=bond0

bootproto=none

broadcast=192.168.168.255

ipaddr=192.168.168.1

netmask=255.255.255.0

network=192.168.168.0

onboot=yes

type=ethernet

gateway=192.168.168.250

userctl=no

然後分別修改eth0和eth1的配置檔案

ifcfg-eth0內容:

device=eth0

bootproto=none

onboot=yes

userctl=no

master=bond0

sl**e=yes

ifcfg-eth1內容

device=eth1

bootproto=none

onboot=yes

userctl=no

master=bond0

sl**e=yes

因為linux的虛擬網絡卡是在核心模組中實現的,所以需要安裝的時候已經裝好該module。在/etc/modules.conf檔案中新增如下內容(如果沒有該檔案,則新建乙個):

alias bond0 bonding

options bond0 miimon=100 mode=1 primary=eth0

其中miimon=100表示每100ms檢查一次鏈路連線狀態,如果不通則會切換物理網絡卡

mode=1表示主備模式,也就是只有一塊網絡卡是active的,只提供失效保護。如果mode=0則是負載均衡模式的,所有的網絡卡都是active,還有其他一些模式很少用到

primary=eth0表示主備模式下eth0為預設的active網絡卡

最後,在/etc/rc.local中加入

modprobe bonding miimon=100 mode=1

重啟機器後可以看到虛擬網絡卡已經生效,可以通過插拔兩個物理網絡卡的網線來進行測試,不過linux中網絡卡接管的時間好象比較長

Redhat linux7 0 網絡卡的安裝

參考 在虛擬機器裡面安裝的redhat linux7.0系統,沒有網絡卡類似eth0 ifconfig a 沒有 ls etc sysconfig network scripts 也沒有 參考文章後測試 dmesg grep net 沒有 lspci grep i ether 沒有裝置 grep e...

redhat linux配置本地yum源

1.在光碟機中新增系統映象 rhel server 6.0 i386 iso 2.掛在光碟機 mkdri mnt packages mount dev cdrom packages 3.建立本地目錄 mkdir p opt rpm local repo 拷貝packages中的軟體包到 cp opt...

Red Hat Linux 6 配置互信

一 以下操作在需要配置互信的每個節點上執行 1 配置互相前先安裝openssh,可以使用yum方式安裝 yum install openssh 2 檢視本機 root目錄下是否有 ssh 目錄及該目前的許可權 注意 root目錄下 ssh 目錄的許可權應該為700。root abc002 pwd r...