OpenWrt的多WAN和静态路由设置
配置第⼆个WAN
增加新VLAN
Network->Switch 增加新的VLAN,默认安装已经存在两个VLAN ID 1和2,新增的VLAND ID为3。
对应这⾏新记录,将CPU设为tagged,选择⼀个LAN⼝为untagged,同时将这个LAN对应原来的untagged设为off,这样这个LAN⼝就可以作为新的WAN⼝使⽤,新建的这个在⽹络配置中为eth0.3
增加新Interface
Network->Interface,添加⼀个新接⼝,命名为wanb, 选择刚才创建的eth0.3,下⼀步,⾼级设置中,将访问器设为和WAN/WAN6⼀组。
增加静态路由
增加路由需要以下信息
Interface
Specifies the logical interface name of the parent (or master) interface this route belongs to; must refer to one of the defined interface sections,这条路由规则⾛的设备,例如我们需要将⼀些流量转发到wanb对应的⽹络,这⾥就要选wanb
Target
Network address,如果选择wanb,这个就是wanbi连接后,对⽅⽹络的私⽹⽹段route add 添加路由
IPv4-Netmask
Route netmask. If omitted, 255.255.255.255 is assumed which makes target a host address,对⽅私⽹⽹段的掩码,如果忽略则使⽤255.255.255.255,这种情况下target就是⼀个IP地址⽽不是范围
IPv4-Gateway
Network gateway. If omitted, the gateway from the parent interface is taken if any, otherwise creates a link scope route; if set to 0.0.0.0 no gateway will be specified for the route,wanb连接后看到的对⽅的IP,即wanb这个IP对应的⽹关的IP,如果忽略则使⽤interface的⽹关IP,或者创建⼀个link scope route;如果设为0.0.0.0则这条路由没有⽹关。
Metric
越⼩重要性越⾼
MTU
Route type
⼀般⽤单播unicast

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。