Hi,
I am using several OM2P as AP's, they have 2 ports (wan/lan). Actually I only use the lan port because using them as AP and not as gateway. I was able to set up a private/bridged wireless without any problems. But I am not able to configure a guest wifi, even following the simple instructions on https://openwrt.org/docs/guide-user/network/wifi/guestwifi/guest-wlan. I can even run all the configuration given at that page but when I connect to the guest wireless, a tracert stops on the static IP from the guest Wifi AP.
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.1.1 0.0.0.0 UG 0 0 0 br-lan
192.168.0.0 * 255.255.252.0 U 0 0 0 br-lan
192.168.30.0 * 255.255.255.0 U 0 0 0 wlan0-1
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 'fd47:8fc8:6cc1::/48'
config interface 'lan'
option ifname 'eth0'
option proto 'dhcp'
option type 'bridge'
config interface 'wan'
option ifname 'eth1'
option proto 'dhcp'
option type 'bridge'
config interface 'lanpriv'
option enabled '1'
option ifname 'ssid_priv'
option mtu '1500'
option proto 'none'
config device 'guest_dev'
option type 'bridge'
option name 'br-guest'
config interface 'guest'
option proto 'static'
option device 'br-guest'
option ipaddr '192.168.30.1'
option netmask '255.255.255.0'
config wifi-device 'radio0'
option type 'mac80211'
option hwmode '11g'
option path 'pci0000:00/0000:00:00.0'
option htmode 'HT20'
option disabled '0'
option channel 'auto'
option country '00'
config wifi-iface 'wifi_ssid_priv'
option device 'radio0'
option disabled '0'
option encryption 'psk-mixed'
option ft_over_ds '1'
option ft_psk_generate_local '0'
option hidden '0'
option ieee80211r '0'
option ieee80211w '0'
option ifname 'ssid_priv'
option isolate '0'
option key 'lucas15.20'
option macfilter 'disable'
option mode 'ap'
option network 'lan wan lanpriv'
option reassociation_deadline '1000'
option rsn_preauth '0'
option ssid 'Michael PRIV'
option wds '0'
option wmm '1'
config wifi-iface 'guest'
option device 'radio0'
option mode 'ap'
option network 'guest'
option ssid 'guest'
option encryption 'none'
config dnsmasq 'dnsmasq1'
option authoritative '1'
option boguspriv '1'
option domain 'lan'
option domainneeded '1'
option expandhosts '1'
option filterwin2k '0'
option leasefile '/tmp/dhcp.leases'
option local '/lan/'
option localise_queries '1'
option localservice '1'
option nonegcache '0'
option nonwildcard '1'
option readethers '1'
option rebind_localhost '1'
option rebind_protection '1'
option resolvfile '/tmp/resolv.conf.auto'
config dhcp 'lan'
option interface 'lan'
option ignore '1'
config dhcp 'wan'
option interface 'wan'
option ignore '1'
config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
option loglevel '4'
config dhcp 'guest'
option interface 'guest'
option start '100'
option limit '150'
option leasetime '1h'
option netmask '255.255.255.0'
config defaults 'defaults'
option forward 'REJECT'
option input 'ACCEPT'
option output 'ACCEPT'
option synflood_protect '1'
config include 'include1'
option path '/etc/firewall.user'
config forwarding 'guest_wan'
option src 'guest'
option dest 'wan'
config zone 'guest'
option name 'guest'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
list network 'guest'
config forwarding 'guest_lan'
option src 'guest'
option dest 'lan'
config rule 'guest_dns'
option name 'Allow-DNS-Guest'
option src 'guest'
option dest_port '53'
option proto 'tcp udp'
option target 'ACCEPT'
config rule 'guest_dhcp'
option name 'Allow-DHCP-Guest'
option src 'guest'
option src_port '68'
option dest_port '67'
option proto 'udp'
option family 'ipv4'
option target 'ACCEPT'
Any help would be very welcome !