nmcli connection add con-name bond0 ifname bond0 type bond mode active-backup ip4 172.25.70.50/24 ##添加bond nmcli connection add con-name eth0 ifname eth0 type bond-slave master bond0 ##添加eth0到bond nmcli connection add con-name eth1 ifname eth1 type bond-slave master bond0 ##添加eth1到bond
- step5 测试
ifconfig eth0 down ##关闭eth0时eth1立刻接替eth0的工作仍然能ping通172.25.70.250 ifconfig eth0 up ##打开eth0,但此时工作的是eth1 ifconfig eth1 down ##关闭eth1,此时eth0接替eth1继续工作
ping 172.25.70.250 watch -n 1 teamdctl team0 state
- step3 配置网络
nmcli connecion add con-name team0 ifname team0 type team config '{"runner":{"name":"activebackup"}}' ip4 172.25.70.50/24 ##添加team nmcli connection add con-name eth0 ifname eth0 type team-slave master team0 ##添加eth0 nmcli connection add con-name eth1 ifname eth1 type team-slave master team0 ##添加eth1
- step4 测试
ifconfig eth0 down ##关闭eth0时,eth1立刻接替eth0的工作。仍然能ping通172.25.70.250 ifconfig eth0 up ##打开eth0,但此时工作的是eth1 ifconfig eth1 down ##关闭eth1,此时eth0接替eth1继续工作
3.网络桥接的配置
桥接的作用:连接两个不同直接通信的接口
实验步骤: step1 在真机中删除所有网卡
cd /etc/sysconfig/network-scripts/ ls ##删除除了ifcfg-lo以外的所有ifcfg-的文件 vim ifcfg-wlp2s0 ##配置物理网卡 DEVICE=wlp2s0 BOOTPROTO=none ONBOOT=yes IPADDR=172.25.70.250 NETMASK=255.255.255.0 systemctl restart network ##重启网络
在本课程中,我们将深入探讨 Linux 系统中的基础命令与操作,重点讲解网络配置的相关知识。首先,我们会介绍 IP 地址的概念及其在网络协议中的作用,特别是 IPv4(Internet Protocol Version 4)的具体应用和配置方法。通过实际操作和示例,帮助初学者更好地理解和掌握这些基本技能。 ...
[详细]