Creating Wifi AP Hotspot on Jetson Nano

Hi,

I set up the connection using these commands:

nmcli con add type wifi ifname wlan0 mode ap con-name WIFI_AP ssid MY_AP

nmcli con modify WIFI_AP 802-11-wireless.band bg

nmcli con modify WIFI_AP 802-11-wireless.channel 1

nmcli con modify WIFI_AP 802-11-wireless-security.key-mgmt wpa-psk

nmcli con modify WIFI_AP 802-11-wireless-security.psk 11223344

nmcli con modify WIFI_AP ipv4.method shared

nmcli con modify WIFI_AP ipv4.addr 192.168.5.1/24

nmcli con up WIFI_AP

The connection worked the first time but after reboot it is not connecting anymore.
When I run the nmcli con up WIFI_AP command, i keep getting the following error message:
Error: Connection activation failed: 802.1X supplicant took too long to authenticate.

I even tried restarting the network manager but it did not help.
Any ideas?