openwrt 路由器网桥网关网络配置
本帖最后由 sunsili 于 2022-3-4 18:11 编辑openwrt 路由器网桥网关网络配置
打openwrt 网桥网关网络配置文件
vim /etc/config/network
按"i",编辑内容如下:
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fd59:a22b:2bea::/48'
config interface 'lan'
option type 'bridge'
option _orig_ifname 'eth0.1 ra0'
option _orig_bridge 'true'
option proto 'dhcp'
option ifname 'eth0.1 ra0'
option hostname 'gateway'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
option ports '0 1 2 3 6t'</div>
按"Esc"键,退出编辑模式。
保存退出,输入命令:
:wq注意:以“:”冒号开头
配置完毕后通过如下命令,重启网络服务,使设置生效:
/etc/init.d/network restart
如需拔号上网,同样要配置上述文件, 同时按下G+Shift键,移动至文件末尾 按下o键,输入如下内容:
config interface 'wan'
option ifname 'eth0.2'
option prote 'pppoe'
option usernaem 'pppoe_username'
option password 'pppoe_username'注意:ifname 依实际用哪个网络配置对应的网卡名称
按"Esc"键,退出编辑模式。保存退出,重启网络服务,使设置生效。
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fd94:fed1:4514::/48'
config interface 'lan'
option ifname 'eth0.1'
option force_link '1'
option macaddr '00:ca:21:11:02:50'
option type 'bridge'
option proto 'static'
option ipaddr '192.168.0.1'
option netmask '255.255.255.0'
option ip6assign '60'
config interface 'wan'
option ifname 'eth0.2'
option force_link '1'
option macaddr '00:ca:21:11:02:51'
option proto 'dhcp'
config interface 'wan6'
option ifname 'eth0.2'
option proto 'dhcpv6'
config switch
option name 'switch0'
option reset '1'
option enable_vlan '1'
config switch_vlan
option device 'switch0'
option vlan '1'
页:
[1]