Hi new to OpenWrt and I just setup a Wiregurad VPN on my router. The VPN connection is working fine but I want to be able to disable the connection and have all the LAN traffic forwarded to WAN. When I disable my VPN connection I cannot access WAN from my LAN. I did set my LAN zone to forward both to WAN and WGZONES. I also set Gateway metrics on both my Mullvad (10) and WAN (20) interfaces.
Here is my configs:
/etc/config/network (Keys removed)
config interface 'loopback'
option device 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config globals 'globals'
option ula_prefix 'fd50:2867:c02f::/48'
config device
option name 'br-lan'
option type 'bridge'
list ports 'eth1.1'
config interface 'lan'
option device 'br-lan'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '60'
config interface 'wan'
option device 'eth0.2'
option proto 'dhcp'
option metric '20'
option peerdns '0'
config interface 'wan6'
option device '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'
option ports '1 2 3 4 6t'
config interface 'Mullvad'
option proto 'wireguard'
option private_key <PRIVATEKEY>
list addresses '10.66.2.123/32'
list addresses 'fc00:bbbb:bbbb:bb01::3:27a/128'
option force_link '1'
option metric '10'
config wireguard_Mullvad
option description 'Atlanta'
option public_key <PUBLICKEY>
list allowed_ips '0.0.0.0/0'
option route_allowed_ips '1'
option endpoint_host '66.115.180.234'
option endpoint_port '51820'
config interface 'wg0'
option proto 'wireguard'
option private_key <PRIVATEKEY>
option listen_port '51820'
list addresses '192.168.9.1/24'
option auto '0'
config wireguard_wg0 'wgclient'
option preshared_key <PRESHAREDKEY>
option public_key <PUBLICKEY>
option route_allowed_ips '1'
list allowed_ips '192.168.9.18/32'
option description 'Phone'
option private_key <PRIVATEKEY>
/etc/config/firewall (Truncated)
config defaults
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'REJECT'
option synflood_protect '1'
config zone 'lan'
option name 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
list network 'lan'
config zone 'wan'
option name 'wan'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
option masq '1'
option mtu_fix '1'
list network 'wan'
list network 'wan6'
config zone
option name 'WGZONE'
option output 'ACCEPT'
option forward 'REJECT'
option masq '1'
option mtu_fix '1'
list network 'Mullvad'
option input 'REJECT'
config forwarding
option src 'lan'
option dest 'wan'
config forwarding
option src 'lan'
option dest 'WGZONE'