Wireless AP not showing

Hello everyone,

I need your help with the following situation:

I have installed VyOS on a Lenovo small pc and attached to it as usb 2 wireless adapters model tp-link TL-WN722N .

What I want to achieve is to get “wan” over one wireless adapter and provide “lan” over the other (access point) because I am in a location where I need to route traffic over vpn and not use directly the wireless connection from the location.

First point achieved, I connected wlan0 to the location’s wireless network and I am able to browse the internet from the router.
Second point: I’ve configured wlan1 as access-point mode, but the “problem” is that I can not see the wireless adapter doing anything physically … not able to see the SSID.

If I do “show interfaces wireless wlan1 scan” it works, I can see the networks and led light on adapter.

More information from router:

interfaces {
ethernet eth0 {
address 10.76.86.65/26
description LAN
hw-id 00:23:24:7e:1a:71
}
loopback lo {
}
wireless wlan0 {
address dhcp
hw-id a8:42:a1:b1:08:76
physical-device phy0
security {
wpa {
passphrase ****************
}
}
ssid B535_DC60
type station
}
wireless wlan1 {
address 10.76.86.66/26
channel 0
country-code ro
hw-id a8:42:a1:b0:f3:07
mode n
physical-device phy1
security {
wpa {
cipher CCMP
mode wpa2
passphrase ****************
}
}
ssid TESTING
type access-point
}
}
service {
dhcp-server {
shared-network-name VyOS {
subnet 10.76.86.64/26 {
lease 86400
option {
default-router 10.76.86.65
domain-name xxx
name-server 10.76.86.65
}
range 0 {
start 10.76.86.117
stop 10.76.86.126
}
subnet-id 1
}
}
}
dns {
forwarding {
allow-from 10.76.86.64/26
cache-size 0
listen-address 10.76.86.65
}
ssh {
port 22
}
}
system {
config-management {
commit-revisions 100
}
conntrack {
modules {
ftp
h323
nfs
pptp
sip
sqlnet
tftp
}
}
console {
device ttyS0 {
speed 115200
}
}
domain-search xxx
host-name vyos
login {
user vyos {
authentication {
encrypted-password ****************
plaintext-password ****************
}
}
}
name-server 8.8.4.4
name-server 4.2.2.2
syslog {
global {
facility all {
level info
}
facility local7 {
level debug
}
}
}
}

vyos@vyos:~$ show interfaces
Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down
Interface IP Address MAC VRF MTU S/L Description


eth0 10.76.86.65/26 00:23:24:7e:1a:71 default 1500 u/u
lo 127.0.0.1/8 00:00:00:00:00:00 default 65536 u/u
::1/128
wlan0 192.168.8.111/24 aa:42:a1:b1:08:70 default 1500 u/u
wlan1 10.76.86.66/26 aa:42:a1:b0:f3:01 default 1500 u/D (here looks to be the “problem”)

P.S.: ignore the poor config, for the moment is only the default deployment with not too much config until I figure out how I can see/broadcast the SSID .

Millions of thanks to everyone !