aaa/authentication

Configures, retrieves, and modifies AAA login sequence.

Resource URIs

URI Description
<base_URI>/config/running/aaa/authentication Configures AAA login sequence.
GET URIs Description
<base_URI>/config/running/aaa/authentication Configures AAA login sequence.
<base_URI>/config/running/aaa/authentication/login Specifies the type of server that will be used for authentication, authorization, and accounting (AAA) on the device. The local server is the default.
<base_URI>/config/running/aaa/authentication/login/first Configures the primary source of authentication.
<base_URI>/config/running/aaa/authentication/login/second Configures the secondary source of authentication.
PATCH URIs Payload Description
<base_URI>/config/running/aaa/authentication/login <login><first>{enumeration}</first></login> Configures the order of sources for login and sets the primary source of authentication.
PUT URIs Payload Description
<base_URI>/config/running/aaa/authentication/login/first <first>{enumeration}</first> Configures the order of sources for login and sets the primary source of authentication.
<base_URI>/config/running/aaa/authentication/login/second <second>{enumeration}</second> Configures the order of sources for login and sets the secondary source of authentication.
DELETE URIs
<base_URI>/config/running/aaa/authentication/login/first
<base_URI>/config/running/aaa/authentication/login/second

Usage Guidelines

GET, POST, PUT, PATCH, DELETE, OPTIONS, and HEAD operations are supported.

Examples

URI

The following example uses the GET option to retrieve the configuration details.

http://host:80/rest/config/running/aaa/authentication

None

<authentication xmlns="urn:brocade.com:mgmt:brocade-aaa" 
xmlns:y="http://brocade.com/ns/rest" y:self="/rest/config/running/aaa/authentication">
  <login y:self="/rest/config/running/aaa/authentication/login">
    <first>radius</first>
    <second>local-auth-fallback</second>
  </login>
</authentication>

URI

The following example uses the PUT option to configure AAA login sequence.

http://host:80/rest/config/running/aaa/authentication/login/first

<first>radius</first>

None

URI

The following example uses the DELETE option to remove AAA login sequence.

http://host:80/rest/config/running/aaa/authentication/login/first

None

None