码迷,mamicode.com
首页 > 其他好文 > 详细

高级网络配置

时间:2017-05-25 21:55:23      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:master   网桥   watch   网络   网卡   

 

###############team###############

1.team 也是链路聚合的一种方式,最多支持8块网卡

支持模式

广播

轮询

主备

负载均衡

 

2.配置

nmcli connection add con-name team0 ifname team0 type team config ‘{"runner":{"name":"activebackup"}}‘ ip4 172.25.254.195/24

nmcli connection add con-name eth0 ifname eth0 type team-slave master team0

nmcli connection add con-name eth1 ifname eth1 type team-slave maste

r team0

3.测试

watch -n 1 teamdctl team0 stat

ifconfig eth0 down

ifconfig eth0 up

 

 

##################网桥######################

配置方式

systemctl stop NetworkManager.service

vim /etc/sysconfig/network-scripts/ifcfg-enp0s25

DEVICE=enp0s25

ONBOOT=yes

BOOTPROTO=none

BRIDGE=br0

 

vim /etc/sysconfig/network-scripts/ifcfg-br0

DEVICE=enp0s25

ONBOOT=yes

BOOTPROTO=none

IPADDR=172.25.254.95

NETMASK=255.255.255.0

TYPE=Bridge

 

 

systemctl restart network

systemctl start NetworkManager.service

 

ifconfig

 

 

 

 

######命令管理方式

#添加

systemctl stop NetworkManager

brctl show

brctl addbr br0

brctl addif br0 eth0

ifconfig eth0 up

ifconfig br0 172.25.254.195 netmask 255.255.255.0

brctl show

ping 172.25.254.95

 

#删除

ifconfig br0 down

brctl delif br0 eth0

brctl delbr br0

brctl show

 


高级网络配置

标签:master   网桥   watch   网络   网卡   

原文地址:http://12920735.blog.51cto.com/12910735/1929504

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!