第九周

第九周

1、总结ip分类以及每个分类可以分配的IP数量

IP地址由两部分组成

  • 网络ID:标识网络,每个网段分配一个网络ID,处于高位
  • 主机 ID:标识单个主机,由组织分配给各设备,处于低位
类型 网络ID位数 网络数 每个网络中的主机数
A类 8(最高一位0开头) 126=2^7 2^24-2=16777214
B类 16(最高二位10开头) 2^14=16384 2^16-2=65534
C类 24(最高三位110开头) 2^21=2097152 2^8-2=254
IP地址分类.png

2、总结IP配置方法

使用掩码将IP地址分成,网络ID和主机ID。

划分子网:将一个大的网络(主机数多)划分成多个小的网络(主机数少),主机ID位数变少,网络ID位数变多,网络ID位向主机ID位借位

合并超网:将多个小网络合并成一个大网,主机ID位向网络ID位借位

3、使用nmcli实现bonding

共7种模式:0-6 Mode,主要使用Mod1 ,和Mode4.

  • 第⼆种模式:Mode=1,即: (active-backup) Active-backup policy(主-备份策略)
    特点:只有⼀个设备处于活动状态,当⼀个宕掉另⼀个⻢上由备份转换为主设备。mac地址是外部可⻅得,从外⾯看来,bond的MAC地址是唯⼀的,以避免switch(交换机)发⽣混乱。此模式只提供了容错能⼒;由此可⻅此算法的优点是可以提供⾼⽹络连接的可⽤性,但是它的资源利⽤率较低,只有⼀个接⼝处于⼯作状态,在有 N 个⽹络接⼝的情况下,资源利⽤率为1/N。
  • 第五种模式:mod=4,即:(802.3ad) IEEE 802.3adDynamic link aggregation(IEEE 802.3ad 动态链接聚合)
    特点:创建⼀个聚合组,它们共享同样的速率和双⼯设定。根据802.3ad规范将多个slave⼯作在同⼀个激活的聚合体下。
    必要条件:
    条件1:ethtool⽀持获取每个slave的速率和双⼯设定。
    条件2:switch(交换机)⽀持IEEE 802.3ad Dynamic link aggregation。
    条件3:⼤多数switch(交换机)需要经过特定配置才能⽀持802.3ad模式。

mode4需要交换机支持,下面以Mode=1做演示。

#新增加两块网卡eth1和eth2,将这两块网卡做绑定
NAME                UUID                                  TYPE      DEVICE 
eth0                fed95e28-f18c-4d8c-8f33-cdad1c41eb48  ethernet  eth0   
Wired connection 1  6b9ef669-fa55-350e-9d77-e6796abddfae  ethernet  eth1   
Wired connection 2  d6631399-4c3b-3b62-9706-280623374e99  ethernet  eth2 
# 添加一个bond接口为bond0
nmcli connection add type bond con-name bond0 ifname bond0 bond.options "mode=active-backup,miimon=1000"
root@centos8 ~]$nmcli device status
DEVICE  TYPE      STATE                                  CONNECTION         
eth0    ethernet  connected                              eth0               
eth1    ethernet  connected                              Wired connection 1 
eth2    ethernet  connected                              Wired connection 2 
bond0   bond      connecting (getting IP configuration)  bond0              
lo      loopback  unmanaged  
#给bond0添加接口
[root@centos8 ~]$nmcli connection add type ethernet slave-type bond con-name bond0-port1 ifname eth1 master bond0
Connection 'bond0-port1' (09b090c2-7952-434a-ae19-d2305ab5db69) successfully added.
[root@centos8 ~]$nmcli connection add type ethernet slave-type bond con-name bond0-port2 ifname eth2 master bond0
Connection 'bond0-port2' (961f2fd4-66f4-4343-95c3-6a42bfe9149a) successfully added.
#给bond0 添加ip地址,网关,dns
[root@centos8 ~]$nmcli connection modify bond0 ipv4.addresses '192.168.1.48' ipv4.gateway 192.168.1.252 ipv4.dns 223.5.5.5
# 激活connection:
[root@centos8 ~]$nmcli connection up bond0-port1
[root@centos8 ~]$nmcli connection up bond0-port2
[root@centos8 ~]$nmcli connection up bond0
#使bond0开机有效
[root@centos8 ~]$nmcli connection modify bond0 connection.autoconnect-slaves 1
# 再次激活connection:
[root@centos8 ~]$nmcli connection up bond0
# 验证
[root@centos8 ~]$nmcli connection show 
NAME                UUID                                  TYPE      DEVICE 
eth0                fed95e28-f18c-4d8c-8f33-cdad1c41eb48  ethernet  eth0   
bond0               33380509-8f1e-4747-8a8a-f13caa786b7b  bond      bond0  
bond0-port1         09b090c2-7952-434a-ae19-d2305ab5db69  ethernet  eth1   
bond0-port2         961f2fd4-66f4-4343-95c3-6a42bfe9149a  ethernet  eth2   
bond0               6c059a6a-9cde-4ced-a13e-78fd7c69655d  bond      --     
bond0               7d8a2468-754e-4dbb-80b6-73fef65bbfaf  bond      --     
Wired connection 1  6b9ef669-fa55-350e-9d77-e6796abddfae  ethernet  --     
Wired connection 2  d6631399-4c3b-3b62-9706-280623374e99  ethernet  --    
[root@centos8 ~]$cat /proc/net/bonding/bond0 
Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)

Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: eth1
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0

Slave Interface: eth1
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 00:0c:29:93:21:27
Slave queue ID: 0

Slave Interface: eth2
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 00:0c:29:93:21:31
Slave queue ID: 0
[root@centos8 ~]$


参考:https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/configuring_and_managing_networking/configuring-network-bonding_configuring-and-managing-networking#configuring-a-network-bond-using-nmcli-commands_configuring-network-bonding

你可能感兴趣的:(第九周)