Replies: 1 comment
-
I was able to get your example working with a few modifications to the ConnectionSettings values. conn := map[string]map[string]interface{}{
"802-11-wireless": map[string]interface{}{
"ssid": []byte("HELLO"),
"mode": "ap",
"security": "802-11-wireless-security",
},
"802-11-wireless-security": map[string]interface{}{
"psk": "HELLO123",
"key-mgmt": "wpa-psk",
},
} Additional step is to manually assign an IP address. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
yields...
Beta Was this translation helpful? Give feedback.
All reactions