通过创建 bond 网卡,绑定两个网卡(各 1G )连接至光猫,进行拨号。由于运营商一般提供 20%的上浮带宽,因此 speedtest 测试可以达到 1200M 左右。
安装所需软件,启用 bond 支持
opkg update
opkg install kmod-bonding luci-proto-bonding proto-bonding
通过配置自动启动脚本实现,加入该脚本的指令会在开机后自动执行
vi /etc/rc.local
需要添加的内容如下(添加至 exit 0之前),需要根据实际情况修改网卡名称,此步骤务必小心。
ip link add bond-wan type bond mode balance-rr 添加 bond 类型的虚拟接口 名称为 bond-wan
ip link set eth1 type bond_slave #配置网卡 eth1 模式
ip link set eth2 type bond_slave
ip link set eth1 master bond-wan #加入名称为 bond-wan 的 bond 类型网卡
ip link set eth2 master bond-wan
#可选步骤 ip addr add 192.168.1.2/24 dev bond-wan
ip link set bond-wan up #启动该网卡
另外,加入拨号 bond 的网卡需要从 br-lan 中移除。
修改 wan 接口的网卡为 bond-wan ,重启软路由后正常拨号即可
openwrt 设置路径:network-interface-找到 wan 点击 edit
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.