Fritzbox 7362 set WAN to LAN1

The Fritzbox 7362 SL has no WAN Port. Unfortunaly in the standard config the WAN is set to DSL which i do not have.
Which change do I need to do to, to set the WAN Port to the LAN1 Port?
WAN have to be DHCP

What is the output of uci show network ? Paste in preformatted text </> please.

1 Like
root@OpenWrt:~# uci show network
network.loopback=interface
network.loopback.ifname='lo'
network.loopback.proto='static'
network.loopback.ipaddr='127.0.0.1'
network.loopback.netmask='255.0.0.0'
network.globals=globals
network.globals.ula_prefix='fd76:e639:f536::/48'
network.atm=atm-bridge
network.atm.vpi='1'
network.atm.vci='32'
network.atm.encaps='llc'
network.atm.payload='bridged'
network.atm.nameprefix='dsl'
network.dsl=dsl
network.dsl.annex='b'
network.dsl.tone='av'
network.lan=interface
network.lan.type='bridge'
network.lan.ifname='eth0.1'
network.lan.proto='static'
network.lan.ipaddr='192.168.1.1'
network.lan.netmask='255.255.255.0'
network.lan.ip6assign='60'
network.lan_dev=device
network.lan_dev.name='eth0.1'
network.lan_dev.macaddr='C8:0E:14:C6:66:5D'
network.wan=interface
network.wan.ifname='dsl0'
network.wan.proto='pppoe'
network.wan.username='username'
network.wan.password='password'
network.wan.ipv6='1'
network.wan_dev=device
network.wan_dev.name='dsl0'
network.wan_dev.macaddr='C8:0E:14:C6:66:60'
network.wan6=interface
network.wan6.ifname='@wan'
network.wan6.proto='dhcpv6'
network.@switch[0]=switch
network.@switch[0].name='switch0'
network.@switch[0].reset='1'
network.@switch[0].enable_vlan='1'
network.@switch_vlan[0]=switch_vlan
network.@switch_vlan[0].device='switch0'
network.@switch_vlan[0].vlan='1'
network.@switch_vlan[0].ports='0 1 2 4 6t'

Please be aware that due to the Installation of a snapshot I have no LuCI. Therefore I do have to change the config via terminal

You have a switch there with one VLAN, so you can edit the /etc/config/network and add one more VLAN to be assigned to one of the available ports.
Remove the port from VLAN1 and make sure port 6 is tagged on the new VLAN, as this is the CPU.
You'll have something like this:

network.@switch_vlan[0].vlan='1'
network.@switch_vlan[0].ports='1 2 4 6t'
network.@switch_vlan[1].vlan='2'
network.@switch_vlan[1].ports='0 6t'

Read here: https://openwrt.org/docs/guide-user/network/vlan/switch_configuration

@trendy how does this set-up looks in the etc/config/network/ file. i'm unable to configure the set up to get the same output with the uci show network as you have it

Better start your own topic, this one is dead for a couple of years already.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.