ubuntu下双网卡桥接

Posted Oops!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu下双网卡桥接相关的知识,希望对你有一定的参考价值。

1. 安装 brctl工具
sudo apt-get install bridge-utils
2. 添加桥
# brctl addbr br0 #创建桥接 br0
# brctl addif br0 eth0 eth1 #添加 eth0, eth1 到 br0
# ifconfig br0 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255 up
3. 打开ip转发
sudo vim /etc/sysctl.conf
net.ipv4.ip_forward=1
去掉该行前面的注释符#
sudo sysctl -p /etc/sysctl.conf
文件立即生效
 
3. 修改配置
vim /etc/network/interfaces
auto lo br0
iface lo inet loopback
auto eth0
iface eth0 inet manual
auto eth1
iface eth1 inet manual
iface br0 inet dhcp
bridge_ports eth0 eth1
 
或者使用静态IP
 
iface br0 inet static
bridge_ports eth0 eth1
address 192.168.1.2
broadcast 192.168.1.255
netmask 255.255.255.0
gateway 192.168.1.1
 
4. 重启机器
 
实例配置:
 

[email protected]:~# cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo br0
iface lo inet loopback
auto enp4s0
iface enp4s0 inet manual
auto enx000ec6d22489
iface enx000ec6d22489 inet manual
iface br0 inet static
bridge_ports enp4s0 enx000ec6d22489
address 192.168.4.147
broadcast 192.168.4.255
netmask 255.255.255.0
gateway 192.168.4.1
dns-nameservers 114.114.114.114

 

[email protected]:~# ifconfig
br0 Link encap:以太网 硬件地址 00:0e:c6:d2:24:89
inet 地址:192.168.4.147 广播:192.168.4.255 掩码:255.255.255.0
inet6 地址: fe80::20e:c6ff:fed2:2489/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 跃点数:1
接收数据包:26213 错误:0 丢弃:0 过载:0 帧数:0
发送数据包:13242 错误:0 丢弃:0 过载:0 载波:0
碰撞:0 发送队列长度:1000
接收字节:33057941 (33.0 MB) 发送字节:1009375 (1.0 MB)

enp4s0 Link encap:以太网 硬件地址 c8:5b:76:96:54:8d
UP BROADCAST RUNNING MULTICAST MTU:1500 跃点数:1
接收数据包:47984 错误:0 丢弃:2 过载:0 帧数:0
发送数据包:14024 错误:0 丢弃:47 过载:0 载波:0
碰撞:0 发送队列长度:1000
接收字节:35367800 (35.3 MB) 发送字节:1116775 (1.1 MB)

enx000ec6d22489 Link encap:以太网 硬件地址 00:0e:c6:d2:24:89
UP BROADCAST MULTICAST MTU:1500 跃点数:1
接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
碰撞:0 发送队列长度:1000
接收字节:0 (0.0 B) 发送字节:0 (0.0 B)

 
































以上是关于ubuntu下双网卡桥接的主要内容,如果未能解决你的问题,请参考以下文章

linux下双网卡能不能设置同一网段

Linux下双网卡绑定bond0

Linux下双网卡绑定bond0

aix下双网卡绑定后想改变主备网卡模式怎么改

Redhat7.0版本下双网卡绑定

centos7下双网卡电信联通双通配置