ubuntu 多网卡配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu 多网卡配置相关的知识,希望对你有一定的参考价值。
参考技术A 环境ubuntu16.04通过ifconfig查看网卡的信息,也可以使用ls /proc/sys/net/ipv4/conf/
:
通过命令 vim /etc/network/interfaces
发现修改了比如从192.168.1.2修改到了192.168.1.3以后,ip并没有生效,此时有两步可以操作:
测试网卡的带宽可以使用iperf3 进行测试:
对某一网卡进行配置:
ifconfig eth0 192.168.1.3 netmask 255.255.255.0
Ubuntu:双(多)网卡绑定(bonding)配置
step 0:安装网卡绑定的功能
apt-get install ifenslave
step 1:加载内核模块:编辑 /etc/modules,添加:
bonding
step 2:编辑网卡配置:/etc/network/interfaces
auto enp0s3 iface enp0s3 inet dhcp auto enp0s8 iface enp0s8 inet manual bond-master bond1 auto enp0s9 iface enp0s9 inet manual bond-master bond1 auto bond1 iface bond1 inet static bond-slaves enp0s8 enp0s9 bond-mode 1 address 192.168.56.200/24
以上是关于ubuntu 多网卡配置的主要内容,如果未能解决你的问题,请参考以下文章