GL-AR300M - No Public IP on WAN

Hi, anyone have any ideas on what is happening here?
Updated to the latest for this device. 23.05.3

If I connect the WAN of the AR300M to the LAN of my router (192.168.15.xxx) it obtains an IP and all is good.

If I connect the WAN to my ISP modem being a public IP it fails to obtain an IP but packets are sent and received but no internet connection.

I am trying to use this with a Starlink dish via an aftermarket POE injector. If I connect my laptop to the POE injector it obtains an IP and if have internet but connect the AR300M same as above.
Seems like it only wants 192.168.xxx.xxx address and wont accept a public one on the WAN port.

I have check all that I can find in the forum and google searches.
I have tried reseting to default.
I have 2 x GL.iNET ARM300M behaving like this, they also failed to connect to Public WAN out of the box.

Any ideas/suggestions will be appreciated.

Starlink connected to my laptop.

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 'fd82:1020:b710::/48'

config device
	option name 'br-lan'
	option type 'bridge'
	list ports 'eth0'

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 'eth1'
	option proto 'dhcp'

config interface 'wan6'
	option device 'eth1'
	option proto 'dhcpv6'

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

config dnsmasq
	option domainneeded '1'
	option boguspriv '1'
	option filterwin2k '0'
	option localise_queries '1'
	option rebind_protection '1'
	option rebind_localhost '1'
	option local '/lan/'
	option domain 'lan'
	option expandhosts '1'
	option nonegcache '0'
	option cachesize '1000'
	option authoritative '1'
	option readethers '1'
	option leasefile '/tmp/dhcp.leases'
	option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
	option nonwildcard '1'
	option localservice '1'
	option ednspacket_max '1232'
	option filter_aaaa '0'
	option filter_a '0'

config dhcp 'lan'
	option interface 'lan'
	option start '100'
	option limit '150'
	option leasetime '12h'
	option dhcpv4 'server'
	option dhcpv6 'server'
	option ra 'server'
	option ra_slaac '1'
	list ra_flags 'managed-config'
	list ra_flags 'other-config'

config dhcp 'wan'
	option interface 'wan'
	option ignore '1'
	option start '100'
	option limit '150'
	option leasetime '12h'

config odhcpd 'odhcpd'
	option maindhcp '0'
	option leasefile '/tmp/hosts/odhcpd'
	option leasetrigger '/usr/sbin/odhcpd-update'
	option loglevel '4'

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

config defaults
	option syn_flood '1'
	option input 'REJECT'
	option output 'ACCEPT'
	option forward 'REJECT'

config zone
	option name 'lan'
	list network 'lan'
	option input 'ACCEPT'
	option output 'ACCEPT'
	option forward 'ACCEPT'

config zone
	option name 'wan'
	option input 'REJECT'
	option output 'ACCEPT'
	option forward 'REJECT'
	option masq '1'
	option mtu_fix '1'
	list network 'wan6'
	list network 'wan'

config forwarding
	option src 'lan'
	option dest 'wan'

config rule
	option name 'Allow-DHCP-Renew'
	option src 'wan'
	option proto 'udp'
	option dest_port '68'
	option target 'ACCEPT'
	option family 'ipv4'

config rule
	option name 'Allow-Ping'
	option src 'wan'
	option proto 'icmp'
	option icmp_type 'echo-request'
	option family 'ipv4'
	option target 'ACCEPT'

config rule
	option name 'Allow-IGMP'
	option src 'wan'
	option proto 'igmp'
	option family 'ipv4'
	option target 'ACCEPT'

config rule
	option name 'Allow-DHCPv6'
	option src 'wan'
	option proto 'udp'
	option dest_port '546'
	option family 'ipv6'
	option target 'ACCEPT'

config rule
	option name 'Allow-MLD'
	option src 'wan'
	option proto 'icmp'
	option src_ip 'fe80::/10'
	list icmp_type '130/0'
	list icmp_type '131/0'
	list icmp_type '132/0'
	list icmp_type '143/0'
	option family 'ipv6'
	option target 'ACCEPT'

config rule
	option name 'Allow-ICMPv6-Input'
	option src 'wan'
	option proto 'icmp'
	list icmp_type 'echo-request'
	list icmp_type 'echo-reply'
	list icmp_type 'destination-unreachable'
	list icmp_type 'packet-too-big'
	list icmp_type 'time-exceeded'
	list icmp_type 'bad-header'
	list icmp_type 'unknown-header-type'
	list icmp_type 'router-solicitation'
	list icmp_type 'neighbour-solicitation'
	list icmp_type 'router-advertisement'
	list icmp_type 'neighbour-advertisement'
	option limit '1000/sec'
	option family 'ipv6'
	option target 'ACCEPT'

config rule
	option name 'Allow-ICMPv6-Forward'
	option src 'wan'
	option dest '*'
	option proto 'icmp'
	list icmp_type 'echo-request'
	list icmp_type 'echo-reply'
	list icmp_type 'destination-unreachable'
	list icmp_type 'packet-too-big'
	list icmp_type 'time-exceeded'
	list icmp_type 'bad-header'
	list icmp_type 'unknown-header-type'
	option limit '1000/sec'
	option family 'ipv6'
	option target 'ACCEPT'

config rule
	option name 'Allow-IPSec-ESP'
	option src 'wan'
	option dest 'lan'
	option proto 'esp'
	option target 'ACCEPT'

config rule
	option name 'Allow-ISAKMP'
	option src 'wan'
	option dest 'lan'
	option dest_port '500'
	option proto 'udp'
	option target 'ACCEPT'

Log after reset and connecting WAN to Starlink.


Fri Mar 22 22:09:55 2024 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Fri Mar 22 22:09:55 2024 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Fri Mar 22 22:09:56 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Mar 22 22:09:56 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Fri Mar 22 22:10:13 2024 authpriv.info dropbear[1188]: Not backgrounding
Fri Mar 22 22:10:18 2024 daemon.notice wpa_supplicant[1296]: Successfully initialized wpa_supplicant
Fri Mar 22 22:10:19 2024 user.notice : Added device handler type: bonding
Fri Mar 22 22:10:19 2024 user.notice : Added device handler type: 8021ad
Fri Mar 22 22:10:19 2024 user.notice : Added device handler type: 8021q
Fri Mar 22 22:10:19 2024 user.notice : Added device handler type: macvlan
Fri Mar 22 22:10:19 2024 user.notice : Added device handler type: veth
Fri Mar 22 22:10:19 2024 user.notice : Added device handler type: bridge
Fri Mar 22 22:10:19 2024 user.notice : Added device handler type: Network device
Fri Mar 22 22:10:19 2024 user.notice : Added device handler type: tunnel
Fri Mar 22 22:10:21 2024 daemon.notice procd: /etc/rc.d/S50uhttpd: 4+0 records in
Fri Mar 22 22:10:21 2024 daemon.notice procd: /etc/rc.d/S50uhttpd: 4+0 records out
Fri Mar 22 22:10:22 2024 daemon.notice procd: /etc/rc.d/S50uhttpd: Generating EC private key
Fri Mar 22 22:10:22 2024 daemon.notice procd: /etc/rc.d/S50uhttpd: Generating selfsigned certificate with subject 'C=ZZ,ST=Somewhere,L=Unknown,O=OpenWrtc26c65f1,CN=OpenWrt,' and validity 20240322221022-20260322221022
Fri Mar 22 22:10:23 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Fri Mar 22 22:10:23 2024 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Fri Mar 22 22:10:24 2024 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Fri Mar 22 22:10:24 2024 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Fri Mar 22 22:10:24 2024 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Fri Mar 22 22:10:24 2024 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Fri Mar 22 22:10:25 2024 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Fri Mar 22 22:10:25 2024 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Fri Mar 22 22:10:25 2024 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Fri Mar 22 22:10:25 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Fri Mar 22 22:10:27 2024 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN
Fri Mar 22 22:10:28 2024 kern.info kernel: [   56.178072] eth0: link up (1000Mbps/Full duplex)
Fri Mar 22 22:10:28 2024 kern.info kernel: [   56.193625] br-lan: port 1(eth0) entered blocking state
Fri Mar 22 22:10:28 2024 kern.info kernel: [   56.199060] br-lan: port 1(eth0) entered disabled state
Fri Mar 22 22:10:28 2024 kern.info kernel: [   56.204858] device eth0 entered promiscuous mode
Fri Mar 22 22:10:28 2024 kern.info kernel: [   56.232180] br-lan: port 1(eth0) entered blocking state
Fri Mar 22 22:10:28 2024 kern.info kernel: [   56.237672] br-lan: port 1(eth0) entered forwarding state
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'lan' is enabled
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'lan' is setting up now
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'lan' is now up
Fri Mar 22 22:10:28 2024 daemon.notice netifd: bridge 'br-lan' link is up
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'loopback' is enabled
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'loopback' is now up
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'wan' is enabled
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'wan6' is enabled
Fri Mar 22 22:10:28 2024 daemon.notice netifd: bridge 'br-lan' link is down
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'lan' has link connectivity loss
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Network device 'eth0' link is up
Fri Mar 22 22:10:28 2024 daemon.notice netifd: bridge 'br-lan' link is up
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Network device 'lo' link is up
Fri Mar 22 22:10:28 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Fri Mar 22 22:10:29 2024 kern.info kernel: [   57.227859] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Fri Mar 22 22:10:29 2024 daemon.info procd: - init complete -
Fri Mar 22 22:10:29 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Fri Mar 22 22:10:30 2024 daemon.info urandom_seed[2050]: Seed saved (/etc/urandom.seed)
Fri Mar 22 22:10:31 2024 kern.info kernel: [   59.465779] eth1: link up (100Mbps/Full duplex)
Fri Mar 22 22:10:31 2024 kern.info kernel: [   59.470524] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Fri Mar 22 22:10:31 2024 daemon.notice netifd: Network device 'eth1' link is up
Fri Mar 22 22:10:31 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Fri Mar 22 22:10:31 2024 daemon.notice netifd: Interface 'wan' is setting up now
Fri Mar 22 22:10:31 2024 daemon.notice netifd: Interface 'wan6' has link connectivity
Fri Mar 22 22:10:31 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Fri Mar 22 22:10:31 2024 daemon.notice netifd: wan (2195): udhcpc: started, v1.36.1
Fri Mar 22 22:10:31 2024 daemon.err odhcp6c[2196]: Failed to send RS (Address not available)
Fri Mar 22 22:10:32 2024 daemon.err odhcp6c[2196]: Failed to send SOLICIT message to ff02::1:2 (Address not available)
Fri Mar 22 22:10:32 2024 daemon.notice netifd: wan (2195): udhcpc: broadcasting discover
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Fri Mar 22 22:10:35 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Mar 22 22:10:35 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Mar 22 22:10:35 2024 daemon.notice netifd: wan (2195): udhcpc: broadcasting discover
Fri Mar 22 22:10:38 2024 daemon.notice netifd: wan (2195): udhcpc: broadcasting discover
Fri Mar 22 22:11:09 2024 daemon.notice netifd: Network device 'eth1' link is down
Fri Mar 22 22:11:09 2024 daemon.notice netifd: Interface 'wan' has link connectivity loss
Fri Mar 22 22:11:09 2024 daemon.notice netifd: Interface 'wan6' has link connectivity loss
Fri Mar 22 22:11:09 2024 kern.info kernel: [   97.943945] eth1: link down
Fri Mar 22 22:11:09 2024 daemon.notice netifd: wan (2195): udhcpc: received SIGTERM
Fri Mar 22 22:11:09 2024 daemon.notice netifd: wan (2195): udhcpc: entering released state
Fri Mar 22 22:11:10 2024 daemon.notice netifd: wan (2195): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wan" } (Permission denied)
Fri Mar 22 22:11:10 2024 daemon.notice netifd: Interface 'wan' is now down
Fri Mar 22 22:11:10 2024 daemon.notice netifd: Interface 'wan6' is now down
Fri Mar 22 22:11:11 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:11:27 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:11:43 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:13:56 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.83 48:65:ee:1c:0e:32
Fri Mar 22 22:13:56 2024 daemon.info dnsmasq-dhcp[1]: DHCPNAK(br-lan) 192.168.1.83 48:65:ee:1c:0e:32 address not available
Fri Mar 22 22:13:56 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:13:57 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.83 48:65:ee:1c:0e:32
Fri Mar 22 22:13:57 2024 daemon.info dnsmasq-dhcp[1]: DHCPNAK(br-lan) 192.168.1.83 48:65:ee:1c:0e:32 address not available
Fri Mar 22 22:14:01 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:14:01 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 48:65:ee:1c:0e:32
Fri Mar 22 22:14:01 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:14:01 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 48:65:ee:1c:0e:32
Fri Mar 22 22:14:01 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:14:02 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:14:02 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.163 48:65:ee:1c:0e:32 Wilsons-MBP
Fri Mar 22 22:14:06 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:15:00 2024 daemon.err uhttpd[1596]: [info] luci: accepted login on /admin/system/flash for root from 192.168.1.163
Fri Mar 22 22:15:40 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Mar 22 22:15:40 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Mar 22 22:15:40 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Mar 22 22:15:42 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:16:03 2024 daemon.notice netifd: radio0 (2782): WARNING: Variable 'data' does not exist or is not an array/object
Fri Mar 22 22:16:03 2024 daemon.notice hostapd: Set new config for phy phy0:
Fri Mar 22 22:16:03 2024 daemon.notice wpa_supplicant[1296]: Set new config for phy phy0
Fri Mar 22 22:16:04 2024 daemon.notice wpa_supplicant[1296]: Set new config for phy phy0
Fri Mar 22 22:16:04 2024 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Fri Mar 22 22:16:04 2024 daemon.notice hostapd: Restart interface for phy phy0
Fri Mar 22 22:16:04 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=1 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40] channel=1  interface=phy0-ap0 bssid=94:83:c4:38:6a:0b ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 auth_algs=1 wpa=0 ssid=OpenWrt bridge=br-lan wds_bridge= snoop_iface=br-lan qos_map_set=0,0,2,16,1,1,255,255,18,22,24,38,40,40,44,46,48,56 #default_macaddr nas_identifier=9483c4386a0b  (phy phy0) --> new PHY
Fri Mar 22 22:16:04 2024 kern.info kernel: [  392.870454] br-lan: port 2(phy0-ap0) entered blocking state
Fri Mar 22 22:16:04 2024 kern.info kernel: [  392.876416] br-lan: port 2(phy0-ap0) entered disabled state
Fri Mar 22 22:16:04 2024 kern.info kernel: [  392.882555] device phy0-ap0 entered promiscuous mode
Fri Mar 22 22:16:04 2024 kern.info kernel: [  392.989578] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap0: link becomes ready
Fri Mar 22 22:16:04 2024 kern.info kernel: [  392.996719] br-lan: port 2(phy0-ap0) entered blocking state
Fri Mar 22 22:16:04 2024 kern.info kernel: [  393.002500] br-lan: port 2(phy0-ap0) entered forwarding state
Fri Mar 22 22:16:04 2024 daemon.notice netifd: Network device 'phy0-ap0' link is up
Fri Mar 22 22:16:04 2024 daemon.notice hostapd: phy0-ap0: interface state UNINITIALIZED->ENABLED
Fri Mar 22 22:16:04 2024 daemon.notice hostapd: phy0-ap0: AP-ENABLED
Fri Mar 22 22:16:05 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Fri Mar 22 22:16:06 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Mar 22 22:16:06 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Mar 22 22:16:06 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Mar 22 22:16:07 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:16:47 2024 daemon.notice netifd: Network device 'eth1' link is up
Fri Mar 22 22:16:47 2024 daemon.notice netifd: Interface 'wan6' has link connectivity
Fri Mar 22 22:16:47 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Fri Mar 22 22:16:47 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Fri Mar 22 22:16:47 2024 daemon.notice netifd: Interface 'wan' is setting up now
Fri Mar 22 22:16:47 2024 kern.info kernel: [  435.945694] eth1: link up (100Mbps/Full duplex)
Fri Mar 22 22:16:48 2024 daemon.notice netifd: wan (3125): udhcpc: started, v1.36.1
Fri Mar 22 22:16:48 2024 daemon.notice netifd: wan (3125): udhcpc: broadcasting discover
Fri Mar 22 22:16:51 2024 daemon.notice netifd: wan (3125): udhcpc: broadcasting discover
Fri Mar 22 22:16:54 2024 daemon.notice netifd: wan (3125): udhcpc: broadcasting discover
Fri Mar 22 22:18:50 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 100.91.87.219 48:65:ee:1c:0e:32
Fri Mar 22 22:18:50 2024 daemon.info dnsmasq-dhcp[1]: DHCPNAK(br-lan) 100.91.87.219 48:65:ee:1c:0e:32 wrong address
Fri Mar 22 22:18:50 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:18:52 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:18:52 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.163 48:65:ee:1c:0e:32 Wilsons-MBP
Fri Mar 22 22:19:07 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 100.91.87.219 48:65:ee:1c:0e:32
Fri Mar 22 22:19:07 2024 daemon.info dnsmasq-dhcp[1]: DHCPNAK(br-lan) 100.91.87.219 48:65:ee:1c:0e:32 wrong address
Fri Mar 22 22:19:07 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:19:07 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 48:65:ee:1c:0e:32
Fri Mar 22 22:19:07 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:19:08 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:19:08 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.163 48:65:ee:1c:0e:32 Wilsons-MBP
Fri Mar 22 22:19:10 2024 daemon.info dnsmasq-dhcp[1]: DHCPDISCOVER(br-lan) 48:65:ee:1c:0e:32
Fri Mar 22 22:19:10 2024 daemon.info dnsmasq-dhcp[1]: DHCPOFFER(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:19:10 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:19:11 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:19:11 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.163 48:65:ee:1c:0e:32 Wilsons-MBP
Fri Mar 22 22:19:15 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:19:19 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:20:01 2024 daemon.notice netifd: Network device 'eth1' link is down
Fri Mar 22 22:20:01 2024 daemon.notice netifd: Interface 'wan6' has link connectivity loss
Fri Mar 22 22:20:01 2024 daemon.notice netifd: Interface 'wan' has link connectivity loss
Fri Mar 22 22:20:01 2024 kern.info kernel: [  629.383926] eth1: link down
Fri Mar 22 22:20:01 2024 daemon.notice netifd: wan (3125): udhcpc: received SIGTERM
Fri Mar 22 22:20:01 2024 daemon.notice netifd: wan (3125): udhcpc: entering released state
Fri Mar 22 22:20:01 2024 daemon.notice netifd: wan (3125): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wan" } (Permission denied)
Fri Mar 22 22:20:01 2024 daemon.notice netifd: Interface 'wan' is now down
Fri Mar 22 22:20:01 2024 daemon.notice netifd: Interface 'wan6' is now down
Fri Mar 22 22:20:02 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:20:43 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Mar 22 22:20:43 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Mar 22 22:20:43 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Mar 22 22:20:44 2024 daemon.notice netifd: Interface 'wan' is setting up now
Fri Mar 22 22:20:44 2024 daemon.notice netifd: Interface 'wan' is now up
Fri Mar 22 22:20:44 2024 user.notice firewall: Reloading firewall due to ifup of wan (eth1)
Fri Mar 22 22:20:45 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Fri Mar 22 22:20:47 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Mar 22 22:20:47 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Mar 22 22:20:49 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:21:41 2024 daemon.notice netifd: Interface 'wan' is now down
Fri Mar 22 22:21:41 2024 daemon.notice netifd: Interface 'wan' is setting up now
Fri Mar 22 22:21:41 2024 daemon.notice netifd: Interface 'wan' is now up
Fri Mar 22 22:21:42 2024 user.notice firewall: Reloading firewall due to ifup of wan (eth1)
Fri Mar 22 22:21:42 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: reading /tmp/resolv.conf.d/resolv.conf.auto
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using nameserver 1.1.1.1#53
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using nameserver 8.8.8.8#53
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Fri Mar 22 22:22:24 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Fri Mar 22 22:22:26 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Mar 22 22:22:26 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Mar 22 22:22:26 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Mar 22 22:22:27 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:24:11 2024 daemon.notice netifd: Interface 'wan' is now down
Fri Mar 22 22:24:11 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Mar 22 22:24:12 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Fri Mar 22 22:24:13 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Fri Mar 22 22:24:13 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Fri Mar 22 22:24:14 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:33:00 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:41:56 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:44:19 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:44:19 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.163 48:65:ee:1c:0e:32
Fri Mar 22 22:44:19 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.163 48:65:ee:1c:0e:32 Wilsons-MBP
Fri Mar 22 22:44:23 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:44:28 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!
Fri Mar 22 22:45:26 2024 authpriv.info dropbear[4733]: Child connection from 192.168.1.163:63876
Fri Mar 22 22:45:26 2024 authpriv.info dropbear[4733]: Exit before auth from <192.168.1.163:63876>: Exited normally
Fri Mar 22 22:46:00 2024 authpriv.info dropbear[4734]: Child connection from 192.168.1.163:63877
Fri Mar 22 22:46:02 2024 authpriv.notice dropbear[4734]: Auth succeeded with blank password for 'root' from 192.168.1.163:63877
Fri Mar 22 22:48:01 2024 daemon.warn odhcpd[1471]: No default route present, overriding ra_lifetime!

No, this isn't a thing. It's more likely it is a coincidence than a fact of operation here.

Just FYI - you don't actually have a public IPv4 address in the screenshot -- that is a CG-NAT address. But that's not critical here.

Have you tried rebooting your starlink modem? I don't know how it handles changing equipment, but some modems (for example, cable modems) will learn a MAC address and then will only provide an address to that singluar piece of equipment (some systems may provide more addresses, but may still have a limited number of slots).

So you may need to restart your starlink system -- possibly a few times and/or leave it powered down for a few minutes. If that doesn't solve the problem, ask Starlink if there are any things you (or they) need to do in order to connect a new router behind their system.

1 Like

I agree just any 192.168 network I give it, no problems.
100.xx.xx.xx it doesn't want to know it.

I realise it's a CG-NAT just said Public for ease.

I have tried rebooting the Starlink, been trying to resolve this on/off for 2 week so any MAC leases should have reset.
I've setup many Starlink terminals with various other routers and never had an issues like this.

This isn't an Starlink issue, I've tried a few ISP's with these routers and can't get them to work.

This is the DHCP request from your device followed by starlink device saying "no, you can't use that IP" -- so the question is why starlink is giving the DHCPNAK in the first place.

The problem is not with your OpenWrt device, per se... it's doing what it is told based on the lease denial. I'd recommend asking starlink why this is happening.

1 Like

That's the address another router (not running openwrt) gets and my laptop when connected to Starlink with no issues.

Just tried on my home ISP again and got the same response in the log (different IP of course)

I understand that is what you're seeing... but there's still an open question -- what does starlink do when different devices are connected.

To be clear -- a cable modem will not issue an address to a device that has a different MAC address than what has been learned until/unless that learned mac is cleared. Starlink might be doing something similar.

Have you tried cloning the MAC addres of your Mac's ethernet adapter into the GL-AR300M?

Yep, same result.


1 Like

Have you contacted starlink to ask them why you are seeing the nak?

https://www.reddit.com/r/Starlink/comments/mdmg9a/wan_dhcp_address_issue/?rdt=50052

1 Like

This is quite an old bug,

Actually, no, notice it says DHCPREQUEST(br-lan) 100.91.87.219

This looks to me like it is the laptop still with its unexpired lease from Starlink, now connected to the wireless of the ar300m.

My first stab at a guess is that he has connected the lan port of the ar300m to the Starlink ethernet adaptor.....

1 Like

I think we are getting hung up on Starlink, there could be an issue here but I am unable to get an IP from any modem.

eth1 is the default WAN after reset and I am using the port label WAN on the AR300M.

Connecting eth1 to my NBN FTTP NTD.

Tue Apr 16 19:43:38 2024 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Tue Apr 16 19:43:38 2024 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Apr 16 19:43:39 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Apr 16 19:43:39 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Tue Apr 16 19:43:40 2024 authpriv.info dropbear[998]: Not backgrounding
Tue Apr 16 19:43:45 2024 daemon.notice wpa_supplicant[1106]: Successfully initialized wpa_supplicant
Tue Apr 16 19:43:45 2024 user.notice : Added device handler type: bonding
Tue Apr 16 19:43:45 2024 user.notice : Added device handler type: 8021ad
Tue Apr 16 19:43:45 2024 user.notice : Added device handler type: 8021q
Tue Apr 16 19:43:45 2024 user.notice : Added device handler type: macvlan
Tue Apr 16 19:43:45 2024 user.notice : Added device handler type: veth
Tue Apr 16 19:43:45 2024 user.notice : Added device handler type: bridge
Tue Apr 16 19:43:45 2024 user.notice : Added device handler type: Network device
Tue Apr 16 19:43:45 2024 user.notice : Added device handler type: tunnel
Tue Apr 16 19:43:49 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Tue Apr 16 19:43:49 2024 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Tue Apr 16 19:43:50 2024 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Tue Apr 16 19:43:50 2024 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Tue Apr 16 19:43:50 2024 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Tue Apr 16 19:43:50 2024 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Tue Apr 16 19:43:51 2024 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Tue Apr 16 19:43:51 2024 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Tue Apr 16 19:43:51 2024 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Tue Apr 16 19:43:51 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Tue Apr 16 19:43:53 2024 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN
Tue Apr 16 19:43:54 2024 kern.info kernel: [   36.459967] eth0: link up (1000Mbps/Full duplex)
Tue Apr 16 19:43:54 2024 kern.info kernel: [   36.473811] br-lan: port 1(eth0) entered blocking state
Tue Apr 16 19:43:54 2024 kern.info kernel: [   36.479250] br-lan: port 1(eth0) entered disabled state
Tue Apr 16 19:43:54 2024 kern.info kernel: [   36.485055] device eth0 entered promiscuous mode
Tue Apr 16 19:43:54 2024 kern.info kernel: [   36.515964] br-lan: port 1(eth0) entered blocking state
Tue Apr 16 19:43:54 2024 kern.info kernel: [   36.521400] br-lan: port 1(eth0) entered forwarding state
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'lan' is enabled
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'lan' is setting up now
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'lan' is now up
Tue Apr 16 19:43:54 2024 daemon.notice netifd: bridge 'br-lan' link is up
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'loopback' is enabled
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'loopback' is now up
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'wan' is enabled
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'wan6' is enabled
Tue Apr 16 19:43:54 2024 daemon.notice netifd: bridge 'br-lan' link is down
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'lan' has link connectivity loss
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Network device 'eth0' link is up
Tue Apr 16 19:43:54 2024 daemon.notice netifd: bridge 'br-lan' link is up
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Network device 'lo' link is up
Tue Apr 16 19:43:54 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Tue Apr 16 19:43:55 2024 daemon.notice netifd: radio0 (1738): WARNING: Variable 'data' does not exist or is not an array/object
Tue Apr 16 19:43:55 2024 kern.info kernel: [   37.463096] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Tue Apr 16 19:43:56 2024 kern.info kernel: [   38.665973] eth1: link up (100Mbps/Full duplex)
Tue Apr 16 19:43:56 2024 kern.info kernel: [   38.670711] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Tue Apr 16 19:43:56 2024 daemon.notice netifd: Network device 'eth1' link is up
Tue Apr 16 19:43:56 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Tue Apr 16 19:43:56 2024 daemon.notice netifd: Interface 'wan' is setting up now
Tue Apr 16 19:43:56 2024 daemon.notice netifd: Interface 'wan6' has link connectivity
Tue Apr 16 19:43:56 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Tue Apr 16 19:43:56 2024 daemon.info procd: - init complete -
Tue Apr 16 19:43:56 2024 kern.debug kernel: [   38.878502] ath: EEPROM regdomain: 0x8024
Tue Apr 16 19:43:56 2024 kern.debug kernel: [   38.882681] ath: EEPROM indicates we should expect a country code
Tue Apr 16 19:43:56 2024 kern.debug kernel: [   38.889034] ath: doing EEPROM country->regdmn map search
Tue Apr 16 19:43:56 2024 kern.debug kernel: [   38.894528] ath: country maps to regdmn code: 0x3b
Tue Apr 16 19:43:56 2024 kern.debug kernel: [   38.899478] ath: Country alpha2 being used: AU
Tue Apr 16 19:43:56 2024 kern.debug kernel: [   38.904074] ath: Regpair used: 0x3b
Tue Apr 16 19:43:56 2024 kern.debug kernel: [   38.907674] ath: regdomain 0x8024 dynamically updated by user
Tue Apr 16 19:43:56 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Tue Apr 16 19:43:57 2024 daemon.notice netifd: wan (1948): udhcpc: started, v1.36.1
Tue Apr 16 19:43:57 2024 daemon.err odhcp6c[1950]: Failed to send RS (Address not available)
Tue Apr 16 19:43:57 2024 daemon.notice hostapd: Set new config for phy phy0:
Tue Apr 16 19:43:57 2024 daemon.notice wpa_supplicant[1106]: Set new config for phy phy0
Tue Apr 16 19:43:57 2024 daemon.err odhcp6c[1950]: Failed to send SOLICIT message to ff02::1:2 (Address not available)
Tue Apr 16 19:43:58 2024 daemon.notice netifd: wan (1948): udhcpc: broadcasting discover
Tue Apr 16 19:44:00 2024 daemon.notice wpa_supplicant[1106]: Set new config for phy phy0
Tue Apr 16 19:44:00 2024 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Tue Apr 16 19:44:00 2024 daemon.notice hostapd: Restart interface for phy phy0
Tue Apr 16 19:44:00 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AU ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=1 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40] channel=1  interface=phy0-ap0 bssid=94:83:c4:3b:c4:67 ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=7104552695Ws! wpa_psk_file=/var/run/hostapd-phy0-ap0.psk auth_algs=1 wpa=2 wpa_pairwise=CCMP ssid=Wilson 2 bridge=br-lan wds_bridge= snoop_iface=br-lan wpa_disable_eapol_key_retries=0 wpa_key_mgmt=WPA-PSK okc=0 disable_pmksa_caching=1 dynamic_vlan=0 vlan_naming=1 vlan_no_bridge=1 vlan_file=/var/run/hostapd-phy
Tue Apr 16 19:44:00 2024 kern.info kernel: [   42.720310] br-lan: port 2(phy0-ap0) entered blocking state
Tue Apr 16 19:44:00 2024 kern.info kernel: [   42.726168] br-lan: port 2(phy0-ap0) entered disabled state
Tue Apr 16 19:44:00 2024 kern.info kernel: [   42.732302] device phy0-ap0 entered promiscuous mode
Tue Apr 16 19:44:00 2024 daemon.notice hostapd: phy0-ap0: interface state UNINITIALIZED->COUNTRY_UPDATE
Tue Apr 16 19:44:00 2024 kern.info kernel: [   42.997115] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap0: link becomes ready
Tue Apr 16 19:44:00 2024 kern.info kernel: [   43.004269] br-lan: port 2(phy0-ap0) entered blocking state
Tue Apr 16 19:44:00 2024 kern.info kernel: [   43.010050] br-lan: port 2(phy0-ap0) entered forwarding state
Tue Apr 16 19:44:00 2024 daemon.notice netifd: Network device 'phy0-ap0' link is up
Tue Apr 16 19:44:01 2024 daemon.notice hostapd: phy0-ap0: interface state COUNTRY_UPDATE->ENABLED
Tue Apr 16 19:44:01 2024 daemon.notice hostapd: phy0-ap0: AP-ENABLED
Tue Apr 16 19:44:01 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Tue Apr 16 19:44:02 2024 daemon.notice netifd: wan (1948): udhcpc: broadcasting discover
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Apr 16 19:44:03 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Tue Apr 16 19:44:03 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Tue Apr 16 19:44:05 2024 daemon.notice netifd: wan (1948): udhcpc: broadcasting discover
Tue Apr 16 19:44:11 2024 daemon.info hostapd: phy0-ap0: STA d2:9c:f1:96:9a:71 IEEE 802.11: authenticated
Tue Apr 16 19:44:11 2024 daemon.info hostapd: phy0-ap0: STA d2:9c:f1:96:9a:71 IEEE 802.11: associated (aid 1)
Tue Apr 16 19:44:11 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED d2:9c:f1:96:9a:71 auth_alg=open
Tue Apr 16 19:44:11 2024 daemon.info hostapd: phy0-ap0: STA d2:9c:f1:96:9a:71 WPA: pairwise key handshake completed (RSN)
Tue Apr 16 19:44:11 2024 daemon.notice hostapd: phy0-ap0: EAPOL-4WAY-HS-COMPLETED d2:9c:f1:96:9a:71
Tue Apr 16 19:44:13 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.174 d2:9c:f1:96:9a:71
Tue Apr 16 19:44:13 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.174 d2:9c:f1:96:9a:71
Tue Apr 16 19:44:15 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.174 d2:9c:f1:96:9a:71
Tue Apr 16 19:44:15 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.174 d2:9c:f1:96:9a:71
Tue Apr 16 19:44:29 2024 daemon.err uhttpd[1399]: [info] luci: accepted login on /admin/network/network for root from 192.168.1.174
Tue Apr 16 19:47:04 2024 daemon.info hostapd: phy0-ap0: STA 38:f9:d3:c4:36:63 IEEE 802.11: authenticated
Tue Apr 16 19:47:04 2024 daemon.info hostapd: phy0-ap0: STA 38:f9:d3:c4:36:63 IEEE 802.11: associated (aid 2)
Tue Apr 16 19:47:04 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED 38:f9:d3:c4:36:63 auth_alg=open
Tue Apr 16 19:47:04 2024 daemon.info hostapd: phy0-ap0: STA 38:f9:d3:c4:36:63 WPA: pairwise key handshake completed (RSN)
Tue Apr 16 19:47:04 2024 daemon.notice hostapd: phy0-ap0: EAPOL-4WAY-HS-COMPLETED 38:f9:d3:c4:36:63
Tue Apr 16 19:47:04 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.197 38:f9:d3:c4:36:63
Tue Apr 16 19:47:04 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.197 38:f9:d3:c4:36:63 Wilsons-MBP
Tue Apr 16 19:48:41 2024 daemon.notice netifd: wan (1948): udhcpc: received SIGTERM
Tue Apr 16 19:48:41 2024 daemon.notice netifd: wan (1948): udhcpc: entering released state
Tue Apr 16 19:48:41 2024 daemon.notice netifd: Interface 'wan6' is now down
Tue Apr 16 19:48:41 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Tue Apr 16 19:48:42 2024 daemon.notice netifd: wan (1948): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wan" } (Permission denied)
Tue Apr 16 19:48:42 2024 daemon.notice netifd: Interface 'wan' is now down
Tue Apr 16 19:48:42 2024 daemon.notice netifd: Interface 'wan' is setting up now
Tue Apr 16 19:48:42 2024 daemon.notice netifd: wan (2340): udhcpc: started, v1.36.1
Tue Apr 16 19:48:42 2024 daemon.notice netifd: wan (2340): udhcpc: broadcasting discover
Tue Apr 16 19:48:43 2024 daemon.warn odhcpd[1281]: No default route present, overriding ra_lifetime!
Tue Apr 16 19:48:45 2024 daemon.notice netifd: wan (2340): udhcpc: broadcasting discover
Tue Apr 16 19:48:49 2024 daemon.notice netifd: wan (2340): udhcpc: broadcasting discover
Tue Apr 16 19:48:59 2024 daemon.warn odhcpd[1281]: No default route present, overriding ra_lifetime!
Tue Apr 16 19:49:15 2024 daemon.warn odhcpd[1281]: No default route present, overriding ra_lifetime!
Tue Apr 16 19:49:15 2024 daemon.notice netifd: Network device 'eth1' link is down
Tue Apr 16 19:49:15 2024 daemon.notice netifd: Interface 'wan' has link connectivity loss
Tue Apr 16 19:49:15 2024 daemon.notice netifd: Interface 'wan6' has link connectivity loss
Tue Apr 16 19:49:15 2024 kern.info kernel: [  357.944116] eth1: link down
Tue Apr 16 19:49:15 2024 daemon.notice netifd: wan (2340): udhcpc: received SIGTERM
Tue Apr 16 19:49:15 2024 daemon.notice netifd: wan (2340): udhcpc: entering released state
Tue Apr 16 19:49:15 2024 daemon.notice netifd: Interface 'wan6' is now down
Tue Apr 16 19:49:16 2024 daemon.notice netifd: wan (2340): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wan" } (Permission denied)
Tue Apr 16 19:49:16 2024 daemon.notice netifd: Interface 'wan' is now down
Tue Apr 16 19:49:17 2024 daemon.warn odhcpd[1281]: No default route present, overriding ra_lifetime!
Tue Apr 16 19:50:09 2024 daemon.err uhttpd[1399]: [info] luci: accepted login on /admin/status/logs for root from 192.168.1.197
1 Like

Not using the Starlink router so no wireless. POE injector - LAN direct to laptop or WAN of AR300M.

Trying eth1/eth0 for WAN and both WAN/LAN ports on AR300M.

Tue Apr 16 20:21:26 2024 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses!
Tue Apr 16 20:21:26 2024 user.notice dnsmasq: Allowing 127.0.0.0/8 responses
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Apr 16 20:21:27 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Apr 16 20:21:27 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 names
Tue Apr 16 20:21:28 2024 authpriv.info dropbear[998]: Not backgrounding
Tue Apr 16 20:21:32 2024 daemon.notice wpa_supplicant[1106]: Successfully initialized wpa_supplicant
Tue Apr 16 20:21:33 2024 user.notice : Added device handler type: bonding
Tue Apr 16 20:21:33 2024 user.notice : Added device handler type: 8021ad
Tue Apr 16 20:21:33 2024 user.notice : Added device handler type: 8021q
Tue Apr 16 20:21:33 2024 user.notice : Added device handler type: macvlan
Tue Apr 16 20:21:33 2024 user.notice : Added device handler type: veth
Tue Apr 16 20:21:33 2024 user.notice : Added device handler type: bridge
Tue Apr 16 20:21:33 2024 user.notice : Added device handler type: Network device
Tue Apr 16 20:21:33 2024 user.notice : Added device handler type: tunnel
Tue Apr 16 20:21:37 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/network
Tue Apr 16 20:21:37 2024 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/wireless
Tue Apr 16 20:21:37 2024 user.notice ucitrack: Setting up /etc/config/luci-splash reload dependency on /etc/config/firewall
Tue Apr 16 20:21:37 2024 user.notice ucitrack: Setting up /etc/config/qos reload dependency on /etc/config/firewall
Tue Apr 16 20:21:37 2024 user.notice ucitrack: Setting up /etc/config/miniupnpd reload dependency on /etc/config/firewall
Tue Apr 16 20:21:38 2024 user.notice ucitrack: Setting up /etc/config/odhcpd reload dependency on /etc/config/dhcp
Tue Apr 16 20:21:39 2024 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount
Tue Apr 16 20:21:39 2024 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led
Tue Apr 16 20:21:39 2024 user.notice ucitrack: Setting up /etc/config/luci_statistics reload dependency on /etc/config/system
Tue Apr 16 20:21:39 2024 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/system
Tue Apr 16 20:21:41 2024 daemon.notice procd: /etc/rc.d/S96led: setting up led LAN
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'loopback' is enabled
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'loopback' is setting up now
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'loopback' is now up
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'wan' is enabled
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'wan6' is enabled
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'lan' is enabled
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'lan' is setting up now
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'lan' is now up
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Network device 'lo' link is up
Tue Apr 16 20:21:42 2024 daemon.notice netifd: Interface 'loopback' has link connectivity
Tue Apr 16 20:21:42 2024 daemon.notice netifd: radio0 (1727): WARNING: Variable 'data' does not exist or is not an array/object
Tue Apr 16 20:21:44 2024 kern.info kernel: [   38.346126] eth1: link up (100Mbps/Full duplex)
Tue Apr 16 20:21:44 2024 kern.info kernel: [   38.350869] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Tue Apr 16 20:21:44 2024 daemon.notice netifd: Network device 'eth1' link is up
Tue Apr 16 20:21:44 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Tue Apr 16 20:21:44 2024 daemon.notice netifd: Interface 'wan' is setting up now
Tue Apr 16 20:21:44 2024 daemon.notice netifd: Interface 'wan6' has link connectivity
Tue Apr 16 20:21:44 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Tue Apr 16 20:21:44 2024 daemon.info procd: - init complete -
Tue Apr 16 20:21:44 2024 kern.debug kernel: [   38.577290] ath: EEPROM regdomain: 0x8024
Tue Apr 16 20:21:44 2024 kern.debug kernel: [   38.581465] ath: EEPROM indicates we should expect a country code
Tue Apr 16 20:21:44 2024 kern.debug kernel: [   38.587819] ath: doing EEPROM country->regdmn map search
Tue Apr 16 20:21:44 2024 kern.debug kernel: [   38.593316] ath: country maps to regdmn code: 0x3b
Tue Apr 16 20:21:44 2024 kern.debug kernel: [   38.598261] ath: Country alpha2 being used: AU
Tue Apr 16 20:21:44 2024 kern.debug kernel: [   38.602848] ath: Regpair used: 0x3b
Tue Apr 16 20:21:44 2024 kern.debug kernel: [   38.606461] ath: regdomain 0x8024 dynamically updated by user
Tue Apr 16 20:21:45 2024 daemon.notice netifd: wan (1944): udhcpc: started, v1.36.1
Tue Apr 16 20:21:45 2024 daemon.err odhcp6c[1950]: Failed to send RS (Address not available)
Tue Apr 16 20:21:45 2024 daemon.err odhcp6c[1950]: Failed to send SOLICIT message to ff02::1:2 (Address not available)
Tue Apr 16 20:21:45 2024 daemon.notice hostapd: Set new config for phy phy0:
Tue Apr 16 20:21:45 2024 daemon.notice wpa_supplicant[1106]: Set new config for phy phy0
Tue Apr 16 20:21:46 2024 daemon.notice netifd: wan (1944): udhcpc: broadcasting discover
Tue Apr 16 20:21:47 2024 daemon.notice wpa_supplicant[1106]: Set new config for phy phy0
Tue Apr 16 20:21:47 2024 user.notice firewall: Reloading firewall due to ifup of lan (br-lan)
Tue Apr 16 20:21:47 2024 daemon.notice hostapd: Set new config for phy phy0: /var/run/hostapd-phy0.conf
Tue Apr 16 20:21:47 2024 daemon.notice hostapd: Restart interface for phy phy0
Tue Apr 16 20:21:48 2024 daemon.notice hostapd: Configuration file: data: driver=nl80211 logger_syslog=127 logger_syslog_level=2 logger_stdout=127 logger_stdout_level=2 country_code=AU ieee80211d=1 hw_mode=g supported_rates=60 90 120 180 240 360 480 540 basic_rates=60 120 240 beacon_int=100 chanlist=1 #num_global_macaddr=1 ieee80211n=1 ht_coex=0 ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][TX-STBC][RX-STBC1][DSSS_CCK-40] channel=1  interface=phy0-ap0 bssid=94:83:c4:3b:c4:67 ctrl_interface=/var/run/hostapd ap_isolate=1 bss_load_update_period=60 chan_util_avg_period=600 disassoc_low_ack=1 skip_inactivity_poll=0 preamble=1 wmm_enabled=1 ignore_broadcast_ssid=0 uapsd_advertisement_enabled=1 utf8_ssid=1 multi_ap=0 wpa_passphrase=7104552695Ws! wpa_psk_file=/var/run/hostapd-phy0-ap0.psk auth_algs=1 wpa=2 wpa_pairwise=CCMP ssid=Wilson 2 bridge=br-lan wds_bridge= snoop_iface=br-lan wpa_disable_eapol_key_retries=0 wpa_key_mgmt=WPA-PSK okc=0 disable_pmksa_caching=1 dynamic_vlan=0 vlan_naming=1 vlan_no_bridge=1 vlan_file=/var/run/hostapd-phy
Tue Apr 16 20:21:48 2024 kern.info kernel: [   42.383658] br-lan: port 1(phy0-ap0) entered blocking state
Tue Apr 16 20:21:48 2024 kern.info kernel: [   42.389448] br-lan: port 1(phy0-ap0) entered disabled state
Tue Apr 16 20:21:48 2024 kern.info kernel: [   42.395661] device phy0-ap0 entered promiscuous mode
Tue Apr 16 20:21:48 2024 daemon.notice hostapd: phy0-ap0: interface state UNINITIALIZED->COUNTRY_UPDATE
Tue Apr 16 20:21:48 2024 kern.info kernel: [   42.677222] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap0: link becomes ready
Tue Apr 16 20:21:48 2024 kern.info kernel: [   42.684351] br-lan: port 1(phy0-ap0) entered blocking state
Tue Apr 16 20:21:48 2024 kern.info kernel: [   42.690126] br-lan: port 1(phy0-ap0) entered forwarding state
Tue Apr 16 20:21:48 2024 daemon.notice netifd: Network device 'phy0-ap0' link is up
Tue Apr 16 20:21:48 2024 daemon.notice netifd: bridge 'br-lan' link is up
Tue Apr 16 20:21:48 2024 daemon.notice netifd: Interface 'lan' has link connectivity
Tue Apr 16 20:21:48 2024 kern.info kernel: [   42.733347] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready
Tue Apr 16 20:21:48 2024 daemon.notice netifd: wan (1944): udhcpc: broadcasting discover
Tue Apr 16 20:21:48 2024 daemon.notice hostapd: phy0-ap0: interface state COUNTRY_UPDATE->ENABLED
Tue Apr 16 20:21:48 2024 daemon.notice hostapd: phy0-ap0: AP-ENABLED
Tue Apr 16 20:21:49 2024 daemon.notice netifd: Wireless device 'radio0' is now up
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: started, version 2.90 cachesize 1000
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: DNS service limited to local subnets
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-nftset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: using only locally-known addresses for test
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: using only locally-known addresses for onion
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: using only locally-known addresses for localhost
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: using only locally-known addresses for local
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: using only locally-known addresses for invalid
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: using only locally-known addresses for bind
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: using only locally-known addresses for lan
Tue Apr 16 20:21:50 2024 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Tue Apr 16 20:21:50 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Tue Apr 16 20:21:51 2024 daemon.notice netifd: wan (1944): udhcpc: broadcasting discover
Tue Apr 16 20:21:53 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Apr 16 20:21:53 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Tue Apr 16 20:21:53 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Tue Apr 16 20:22:05 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:13 2024 daemon.info hostapd: phy0-ap0: STA 38:f9:d3:c4:36:63 IEEE 802.11: authenticated
Tue Apr 16 20:22:13 2024 daemon.info hostapd: phy0-ap0: STA 38:f9:d3:c4:36:63 IEEE 802.11: associated (aid 1)
Tue Apr 16 20:22:13 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED 38:f9:d3:c4:36:63 auth_alg=open
Tue Apr 16 20:22:13 2024 daemon.info hostapd: phy0-ap0: STA 38:f9:d3:c4:36:63 WPA: pairwise key handshake completed (RSN)
Tue Apr 16 20:22:13 2024 daemon.notice hostapd: phy0-ap0: EAPOL-4WAY-HS-COMPLETED 38:f9:d3:c4:36:63
Tue Apr 16 20:22:13 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.197 38:f9:d3:c4:36:63
Tue Apr 16 20:22:13 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.197 38:f9:d3:c4:36:63 Wilsons-MBP
Tue Apr 16 20:22:13 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:18 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:21 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:22 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:30 2024 daemon.err uhttpd[1399]: [info] luci: accepted login on /admin/network/network for root from 192.168.1.197
Tue Apr 16 20:22:43 2024 daemon.info hostapd: phy0-ap0: STA d2:9c:f1:96:9a:71 IEEE 802.11: authenticated
Tue Apr 16 20:22:43 2024 daemon.info hostapd: phy0-ap0: STA d2:9c:f1:96:9a:71 IEEE 802.11: associated (aid 2)
Tue Apr 16 20:22:43 2024 daemon.notice hostapd: phy0-ap0: AP-STA-CONNECTED d2:9c:f1:96:9a:71 auth_alg=open
Tue Apr 16 20:22:43 2024 daemon.info hostapd: phy0-ap0: STA d2:9c:f1:96:9a:71 WPA: pairwise key handshake completed (RSN)
Tue Apr 16 20:22:43 2024 daemon.notice hostapd: phy0-ap0: EAPOL-4WAY-HS-COMPLETED d2:9c:f1:96:9a:71
Tue Apr 16 20:22:43 2024 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.174 d2:9c:f1:96:9a:71
Tue Apr 16 20:22:43 2024 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.174 d2:9c:f1:96:9a:71
Tue Apr 16 20:22:43 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:48 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:52 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:57 2024 kern.info kernel: [  112.036618] eth1: link down
Tue Apr 16 20:22:57 2024 daemon.err odhcp6c[1950]: Failed to send RS (Network unreachable)
Tue Apr 16 20:22:57 2024 daemon.notice netifd: Interface 'wan' is disabled
Tue Apr 16 20:22:57 2024 daemon.notice netifd: Interface 'wan6' is disabled
Tue Apr 16 20:22:57 2024 daemon.notice netifd: Network device 'eth1' link is down
Tue Apr 16 20:22:57 2024 daemon.notice netifd: Interface 'wan' has link connectivity loss
Tue Apr 16 20:22:57 2024 daemon.notice netifd: Interface 'wan6' has link connectivity loss
Tue Apr 16 20:22:57 2024 daemon.notice netifd: wan (1944): udhcpc: read error: Network is down, reopening socket
Tue Apr 16 20:22:58 2024 daemon.notice netifd: wan (1944): udhcpc: sendto: Network is down
Tue Apr 16 20:22:58 2024 daemon.notice netifd: wan (1944): udhcpc: received SIGTERM
Tue Apr 16 20:22:58 2024 daemon.notice netifd: wan (1944): udhcpc: entering released state
Tue Apr 16 20:22:58 2024 daemon.notice netifd: wan (1944): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wan" } (Permission denied)
Tue Apr 16 20:22:58 2024 daemon.notice netifd: Interface 'wan' is now down
Tue Apr 16 20:22:58 2024 daemon.notice netifd: Interface 'wan' is enabled
Tue Apr 16 20:22:58 2024 daemon.notice netifd: Interface 'wan6' is enabled
Tue Apr 16 20:22:58 2024 daemon.err odhcp6c[1950]: Failed to send SOLICIT message to ff02::1:2 (Network unreachable)
Tue Apr 16 20:22:58 2024 daemon.notice netifd: Interface 'wan6' is now down
Tue Apr 16 20:22:59 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:22:59 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Apr 16 20:22:59 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Tue Apr 16 20:22:59 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Tue Apr 16 20:23:00 2024 kern.info kernel: [  114.506137] eth1: link up (100Mbps/Full duplex)
Tue Apr 16 20:23:00 2024 kern.info kernel: [  114.510919] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
Tue Apr 16 20:23:00 2024 daemon.notice netifd: Network device 'eth1' link is up
Tue Apr 16 20:23:00 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Tue Apr 16 20:23:00 2024 daemon.notice netifd: Interface 'wan' is setting up now
Tue Apr 16 20:23:00 2024 daemon.notice netifd: Interface 'wan6' has link connectivity
Tue Apr 16 20:23:00 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Tue Apr 16 20:23:00 2024 daemon.notice netifd: wan (2849): udhcpc: started, v1.36.1
Tue Apr 16 20:23:00 2024 daemon.err odhcp6c[2851]: Failed to send RS (Address not available)
Tue Apr 16 20:23:01 2024 daemon.notice netifd: wan (2849): udhcpc: broadcasting discover
Tue Apr 16 20:23:01 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:23:01 2024 daemon.err odhcp6c[2851]: Failed to send SOLICIT message to ff02::1:2 (Address not available)
Tue Apr 16 20:23:04 2024 daemon.notice netifd: wan (2849): udhcpc: broadcasting discover
Tue Apr 16 20:23:07 2024 daemon.notice netifd: wan (2849): udhcpc: broadcasting discover
Tue Apr 16 20:23:09 2024 daemon.notice netifd: wan (2849): udhcpc: received SIGTERM
Tue Apr 16 20:23:09 2024 daemon.notice netifd: wan (2849): udhcpc: entering released state
Tue Apr 16 20:23:10 2024 daemon.notice netifd: Interface 'wan6' is now down
Tue Apr 16 20:23:10 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Tue Apr 16 20:23:10 2024 daemon.notice netifd: wan (2849): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wan" } (Permission denied)
Tue Apr 16 20:23:10 2024 daemon.notice netifd: Interface 'wan' is now down
Tue Apr 16 20:23:10 2024 daemon.notice netifd: Interface 'wan' is setting up now
Tue Apr 16 20:23:10 2024 daemon.notice netifd: wan (2962): udhcpc: started, v1.36.1
Tue Apr 16 20:23:10 2024 daemon.notice netifd: wan (2962): udhcpc: broadcasting discover
Tue Apr 16 20:23:11 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:23:13 2024 daemon.notice netifd: wan (2962): udhcpc: broadcasting discover
Tue Apr 16 20:23:16 2024 daemon.notice netifd: wan (2962): udhcpc: broadcasting discover
Tue Apr 16 20:23:50 2024 daemon.notice netifd: wan (2962): udhcpc: received SIGTERM
Tue Apr 16 20:23:50 2024 daemon.notice netifd: wan (2962): udhcpc: entering released state
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan6' is now down
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan6' has link connectivity loss
Tue Apr 16 20:23:50 2024 kern.info kernel: [  164.282254] eth0: link up (1000Mbps/Full duplex)
Tue Apr 16 20:23:50 2024 kern.info kernel: [  164.316582] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Network device 'eth0' link is up
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan6' has link connectivity
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan6' is setting up now
Tue Apr 16 20:23:50 2024 daemon.notice netifd: wan (2962): Command failed: ubus call network.interface notify_proto { "action": 0, "link-up": false, "keep": false, "interface": "wan" } (Permission denied)
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan' is now down
Tue Apr 16 20:23:50 2024 kern.info kernel: [  164.561433] eth1: link down
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan' is disabled
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan' has link connectivity loss
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan' is enabled
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan' has link connectivity
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Interface 'wan' is setting up now
Tue Apr 16 20:23:50 2024 daemon.notice netifd: Network device 'eth1' link is down
Tue Apr 16 20:23:50 2024 daemon.err odhcp6c[3163]: Failed to send RS (Address not available)
Tue Apr 16 20:23:50 2024 daemon.notice netifd: wan (3175): udhcpc: started, v1.36.1
Tue Apr 16 20:23:51 2024 daemon.notice netifd: wan (3175): udhcpc: broadcasting discover
Tue Apr 16 20:23:51 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:23:52 2024 daemon.info dnsmasq[1]: read /etc/hosts - 12 names
Tue Apr 16 20:23:52 2024 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 4 names
Tue Apr 16 20:23:52 2024 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses
Tue Apr 16 20:23:53 2024 daemon.warn odhcpd[1280]: No default route present, overriding ra_lifetime!
Tue Apr 16 20:23:54 2024 daemon.notice netifd: wan (3175): udhcpc: broadcasting discover
Tue Apr 16 20:23:57 2024 daemon.notice netifd: wan (3175): udhcpc: broadcasting discover

I can clearly see your logs the ar300m wireless accepting a wireless connection...

Also, as far as I know, the Starlink router turns its wireless off if you plug in the ethernet adaptor.

In addition the logs show a whole host of non-standard extras being loaded up.
I can confirm that the ar300m works just fine with both snapshot and 23.05.x, even with cg-nat addressing so very likely you have something very wrong with your configs somewhere.

Have you tried a default reflash on the ar300m?

What is this for? The Starlink dish I presume. The ar300m does not support POE, it requires a 5v USB supply.

I assume this would be my laptop connecting to AR300M to view the Web UI.

Not using the Starlink router. Terminate the Dish cable to RJ45 and connect to this POE Injector.

I believe I have, this is simple as?
System - BackUp/Flash Firmware - Flash Firmware - Upload latest - uncheck keep settings.

To power the Starlink dish.

If you have an ar300m-16 (the nor only version, and the only one still manufactured), then yes, flashing the nor only firmware like this from Luci will be fine.
But if you do this on an older nand/nor version you will only be flashing the nor chip, but still booting from the nand chip.

The list of things being loaded in your logs implies lots of extra stuff over and above the basic flash.

Perhaps you are still booting from the original gl-inet image on nand?

The model is NOR so I used the NOR build firmware although it says ath79/nand for the target platform?

I see in the log eth1 come up at 100 Mb (which is the maximum capability of the SoC), OpenWrt makes DHCP requests on eth1 which are not answered, then 15 seconds later eth1 goes down presumably because the Dishy brought its end down. Some time later the process repeats.

It is quite possible that Dishy does not like a 100 Mb connection and the other equipment was successful because it is gigabit. Do you have a gigabit switch that you could put in line between the AR300M and the Starlink?

1 Like