cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
258
Views
0
Helpful
2
Replies

auth group to access NSO and API

nisheeth
Level 1
Level 1

Hi

I can create auth group in NSO.

To which service I should associate the authgroup that will enable me to access NSO API, Devices and configure them

Nisheeth

 

2 Replies 2

snovello
Cisco Employee
Cisco Employee

https://developer.cisco.com/docs/nso/guides/the-nso-device-manager/#authentication-groups

Describes authgroups, they store the credentials to access devices. They have no connection to services nor the NSO API.

If you are looking for authorization inside NSO, there is info in the admin guide, also look under AAA and NACM.

For my automation I have created two REST API endpoint 

Workflow Start  EP  http://localhost:8080/workflow/workflow-start

Workflow Status  EP  http://localhost:8080/workflow/workflow-status

ConfigUpdate Start  EP  http://localhost:8080/conf-upd/conf-upd-start

ConfigUpdate Status  EP  http://localhost:8080/conf-upd/conf-upd-status

In the workflow I include config updates and send Request to Workflow-start REST API

I need to assign the auth group to my conf-upd-start and conf-up-status so that I dont need to send not send credentials in plain text.

how can i do this with the NSO 

Nisheeth