wifi-qcom/AX manual WiFi uplink

I am told:

"As of today, wifi-qcom/AX driver is equipped with only Home-AP quickSet preset.

Manual configuration required."

Which is fine, I have been trying to do that. My issue is, trying to connect to an existing WiFi gives me the message, “not running”. What does this even mean?

If memory serves me well, it shows that there are no clients connected to the radio.

Do you want to have feedback on your config?

/export file=anynameyoulike

Remove serial and any other private info.

Yes I would, but I am traveling at the moment. I have the radio, but no antennas to power it up safely. Gimme two days to get home.

# 1970-01-04 19:32:18 by RouterOS 7.15.3
# software id = 71D5-TJ45
#
# model = L11UG-5HaxD
# serial number = _________
/interface bridge
add name=bridge1 protocol-mode=none
/interface list
add name=WAN
add name=LAN
/interface wifi channel
add band=5ghz-ac disabled=no name=AC
/interface wifi security
add authentication-types=wpa2-psk disabled=no encryption=tkip name=riv
/interface wifi
set [ find default-name=wifi1 ] configuration.country="United States" .mode=\
    station-pseudobridge .ssid=RivGuest security=riv \
    security.authentication-types=wpa2-psk .encryption=tkip
/interface wifi configuration
add channel=AC country="United States" disabled=no mode=station name=\
    pseudobridge security=riv security.authentication-types=wpa2-psk \
    .encryption=tkip ssid=RivGuest
/ip pool
add name=dhcp ranges=192.168.88.3-192.168.88.254
add name=dhcp_pool1 ranges=192.168.88.2-192.168.88.254
/ip dhcp-server
# DHCP server can not run on slave interface!
add address-pool=dhcp_pool1 interface=ether1 name=dhcp2
/interface bridge nat
# no interface
add action=accept chain=srcnat out-interface=wifi1
/interface bridge port
add bridge=bridge1 interface=ether1 trusted=yes
/ip neighbor discovery-settings
set discover-interface-list=LAN
/interface detect-internet
set detect-interface-list=WAN internet-interface-list=WAN lan-interface-list=\
    LAN wan-interface-list=WAN
/interface list member
add interface=wifi1 list=WAN
add interface=bridge1 list=LAN
/ip address
add address=192.168.88.1/24 interface=ether1 network=192.168.88.0
/ip dhcp-client
add disabled=yes interface=ether1
add interface=wifi1
/ip dhcp-server
add address-pool=dhcp disabled=yes interface=*2 name=dhcp1
/ip dhcp-server network
add address=192.168.88.0/24 dns-server=8.8.8.8 gateway=192.168.88.1 netmask=\
    24
/ip firewall nat
# no interface
add action=masquerade chain=srcnat out-interface=wifi1
/system identity
set name=phone
/system note
set show-at-login=no
/system routerboard settings
set silent-boot=yes

I see the guest WiFi in the config, but don’t know enough to understand if even that is right.

I was able to use an older radio and get a working config as an example. There are only two parts that don't transfer.

set [ find default-name=wlan1 ] band=5ghz-a/n country="united states" \
    disabled=no frequency=5825 installation=outdoor ssid=TheDen \
    wireless-protocol=nv2-nstreme-802.11
/interface wireless security-profiles
set [ find default=yes ] authentication-types=wpa-psk,wpa2-psk group-ciphers=\
    tkip,aes-ccm mode=dynamic-keys supplicant-identity=MikroTik \
    unicast-ciphers=tkip,aes-ccm

I was able to get some of the stuff to translate into the new "wifi" driver. The nv2-nstreme-802.11 protocol is apparently not available, so I'm not sure what to do about that but it's not the only part that I couldn't figure out. Best I could do is below.

/interface wifi
set [ find default-name=wlan1 ] channel.band=5ghz-n configuration.country="United States" \
    disabled=no channel.frequency=5825 configuration.ssid=TheDen
/interface wifi/security/
set [ find default=yes ] authentication-types=wpa-psk,wpa2-psk group-ciphers=tkip

As such, I still get the same error and this is the output from my wifi interface status.

Flags: M - master; D - dynamic; B - bound; X - disabled, I - inactive, R - running 
 0 M BI default-name="wifi1" name="wifi1" l2mtu=1560 mac-address=D4:01:C3:BA:19:51 arp-timeout=auto radio-mac=D4:01:C3:BA:19:51 
        configuration.mode=station .ssid="TheDen" .country=United States 
        channel.frequency=5825 .band=5ghz-ax

Seems like master shouldn't be the state...