Configuring cisco 1941w router

I was following this tutorial https://networklessons.com/uncategorized/cisco-1941w-wireless-configuration-example/ but now I am stuck in the AP interface how do i get back to my router? After following the same tutorial I cannot see the AP ssid i created. Is there anything I making a mistake over:

hostname ap
!
enable secret 5 $1$1yrR$x9p0kMDk3E.baspobgC7t0
!
no aaa new-model
ip domain name heritagecoin.com
!
!
dot11 syslog
!
dot11 ssid NWASCO-NET
   authentication open
   authentication key-management wpa
   guest-mode
   wpa-psk ascii 7 130B0013180F54647A767B
!
!
!
username Cisco password 7 13261E010803
!
!
bridge irb
!
!
interface Dot11Radio0
 description 2.4GHz Radio
 no ip address
 no ip route-cache
 shutdown
 !
 encryption mode ciphers aes-ccm
 !
 ssid NWASCO-NET
 !
 antenna gain 0
 station-role root
 no cdp enable
 bridge-group 10
 bridge-group 10 subscriber-loop-control
 bridge-group 10 block-unknown-source
 no bridge-group 10 source-learning
 no bridge-group 10 unicast-flooding
 bridge-group 10 spanning-disabled
!
interface Dot11Radio1
 description 5GHz Radio
 no ip address
 no ip route-cache
 shutdown
 !
 encryption mode ciphers aes-ccm
 !
 ssid NWASCO-NET
 !
 antenna gain 0
 dfs band 3 block
 channel dfs
 station-role root
 no cdp enable
 bridge-group 10
 bridge-group 10 subscriber-loop-control
 bridge-group 10 block-unknown-source
 no bridge-group 10 source-learning
 no bridge-group 10 unicast-flooding
 bridge-group 10 spanning-disabled
!
interface GigabitEthernet0
 description  the embedded AP GigabitEthernet 0 is an internal interface connect                             ing AP with the host router
 no ip address
 no ip route-cache
 bridge-group 1
 no bridge-group 1 source-learning
 bridge-group 1 spanning-disabled
!
interface GigabitEthernet0.10
 encapsulation dot1Q 10
 no ip route-cache
 bridge-group 10
 no bridge-group 10 source-learning
 bridge-group 10 spanning-disabled
!
interface BVI1
 ip address 10.1.1.253 255.255.255.0
 no ip route-cache
!
ip http server
no ip http secure-server
bridge 1 route ip
!
!
!
line con 0
 no activation-character
line vty 0 4
 login local
!
end

Hello Teddy,

The 1941W can be a pain to work with :grin:

I believe you can switch back with SHIFT+CTRL+6, then let go and hit X.

It’s easier though to configure SSH on the router, then use two sessions…one for the router, another for the AP. Switching back and forth to router and AP is a pain.

I see a shutdown command on your radio0 interface, make sure you remove that.

Rene