其他分享
首页 > 其他分享> > 网卡聚合、静态路由

网卡聚合、静态路由

作者:互联网

网卡聚合

创建聚合网卡

nmcli conn add type team ifname team1 con-name team1 config '{"runner":{"name":"loadbalance"}}'

#    type team
#    指定聚合网卡类型

绑定物理网卡

nmcli conn add type team-slave ifname ens33 con-name team1-ens33 master team1
nmcli conn add type team-slave ifname ens37 con-name team1-ens37 master team1


#    type team-slave
#    为聚合网卡绑定物理网卡 

配置IP

激活网卡

验证通信

静态路由

开启路由转发

  添加静态路由

route add -net 网段 gw 下一跳地址

删除静态路由

route del -net 网段 gw 下一跳地址

查看内核参数

[root@hosta ~]# sysctl -a

[root@hosta ~]# sysctl -a | grep "ip_forward"
net.ipv4.ip_forward = 0

永久修改内核参数

[root@hosta ~]# vim /etc/sysctl.conf 
net.ipv4.ip_forward = 1

// 让系统重新读取/etc/sysct.conf文件,让修改立即生效
[root@hosta ~]# sysctl -p
net.ipv4.ip_forward = 1

[root@hosta ~]# sysctl -a | grep "ip_forward"
net.ipv4.ip_forward = 1

标签:聚合,ip,team1,网卡,forward,sysctl,net,路由
来源: https://blog.csdn.net/hsjdhkdd/article/details/122745636