aaa/authentication

Configures, retrieves, and modifies AAA login sequence.

Resource URIs

URI Description
/restconf/data/brocade-aaa:aaa-config/aaa/authentication Configures AAA login sequence.
GET URIs Description
/restconf/data/brocade-aaa:aaa-config/aaa/authentication Configures AAA login sequence.
/data/brocade-aaa:aaa-config/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.
/restconf/data/brocade-aaa:aaa-config/aaa/authentication/login/first Configures the primary source of authentication.
/restconf/data/brocade-aaa:aaa-config/aaa/authentication/login/second Configures the secondary source of authentication.
PATCH URIs Payload Description
/data/brocade-aaa:aaa-config/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
/restconf/data/brocade-aaa:aaa-config/aaa/authentication/login/first <first>{enumeration}</first> Configures the order of sources for login and sets the primary source of authentication.
/restconf/data/brocade-aaa:aaa-config/aaa/authentication/login/second <second>{enumeration}</second> Configures the order of sources for login and sets the secondary source of authentication.
DELETE URIs
/restconf/data/brocade-aaa:aaa-config/aaa/authentication/login/first
/restconf/data/brocade-aaa:aaa-config/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:443/data/brocade-aaa:aaa-config/aaa/authentication

None

<aaa-config xmlns="urn:brocade.com:mgmt:brocade-aaa">
				<aaa>
					<authentication>
						<login>
							<second/>
						</login>
					</authentication>
				</aaa>
			</aaa-config>

URI

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

http://host:443/data/brocade-aaa:aaa-config/aaa/authentication/login/first

<first>radius</first>

None

URI

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

http://host:443/data/brocade-aaa:aaa-config/aaa/authentication/login/first

None

None