DHCP Issues with RT3200

I have a RT3200 made by Belkin and I have it setup to act as an AP. The issue is no clients can get IP addresses from my main firewall. It is on the same LAN as the LAN of the AP, so I am not sure what is happening. I disabled dnsmasq, firewall and odhcpd and still nothing. If I set the LAN of the AP to DHCP, it does get an IP, but wireless clients do not.

Please copy the output of the following commands and post it here using the "Preformatted text </> " button:
grafik
Remember to redact passwords, MAC addresses and any public IP addresses you may have:

cat /etc/config/network
cat /etc/config/wireless
cat /etc/config/dhcp
cat /etc/config/firewall
root@OpenWrt:~# cat /etc/config/network

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 'fd48:f0b0:9ecf::/48'

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'lan1'
        list ports 'lan2'
        list ports 'lan3'
        list ports 'lan4'

config interface 'lan'
        option proto 'dhcp'
        option device 'lan1'

root@OpenWrt:~# cat /etc/config/wireless

config wifi-device 'radio0'
        option type 'mac80211'
        option path 'platform/18000000.wmac'
        option channel '1'
        option band '2g'
        option htmode 'HT20'
        option disabled '1'

config wifi-device 'radio1'
        option type 'mac80211'
        option path '1a143000.pcie/pci0000:00/0000:00:00.0/0000:01:00.0'
        option band '5g'
        option htmode 'HE80'
        option cell_density '0'
        option channel '153'

config wifi-iface 'wifinet1'
        option device 'radio1'
        option mode 'ap'
        option ssid 'Moogie6'
        option network 'lan'
        option encryption 'psk2'

root@OpenWrt:~# cat /etc/config/dhcp

config dnsmasq
        option local '/lan/'
        option domain 'lan'
        option leasefile '/tmp/dhcp.leases'
        option ednspacket_max '1232'
        option rebind_protection '0'
        option localservice '0'
        option nonwildcard '0'
        option boguspriv '0'
        option noresolv '1'
        option nohosts '1'

config dhcp 'lan'
        option interface 'lan'
        option start '100'
        option limit '150'
        option leasetime '12h'
        option dhcpv4 'server'
        list ra_flags 'managed-config'
        list ra_flags 'other-config'
        option ra 'hybrid'
        option dhcpv6 'hybrid'
        option dns_service '0'
        option ignore '1'
        option dynamicdhcp '0'

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'

There may be another issue or the root. I gave the tablet a static IP and it cannot access anything on the network.

Change option device 'lan1' to option device 'br-lan' and restart the network service.

1 Like

I did do a default reset and it is working now. My download speed is better, but upload is still below 200, any ideas?