Skip to content

Commit

Permalink
Add AAA table description and example to Configuration.md (sonic-net#…
Browse files Browse the repository at this point in the history
…2168)

**What I did**
    Add AAA table description and example to configuration.md 

**Why I did it**
   AAA table description and example are missing in configuration.md 

**How I verified it**
    No code change, not validate.

**Details if related**
  • Loading branch information
liuh-80 authored and preetham-singh committed Aug 6, 2022
1 parent 91be6b0 commit 56b9b23
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion doc/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ This option sets the port which ntp will choose to send time update requests fro
NOTE: If a Loopback interface is defined on the switch ntp will choose this by default, so this setting
is **required** if the switch has a Loopback interface and the ntp peer does not have defined routes
for that address.

```
{
"NTP": {
Expand Down Expand Up @@ -1501,6 +1501,29 @@ The list of root ports, all possible breakout modes, and default breakout modes
}
```

### AAA

The AAA table defined the method SONiC used for Authentication, Authorization and Accounting.
The method could be:
- default
- local
- tacacs+
- radius

```
"AAA": {
"authentication": {
"login": "local"
},
"authorization": {
"login": "local"
},
"accounting": {
"login": "local"
}
}
```

For Developers
==============

Expand Down

0 comments on commit 56b9b23

Please sign in to comment.