Skip to content

Commit 0026689

Browse files
authored
Add AAA table description and example to Configuration.md (sonic-net#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**
1 parent 29d5d8d commit 0026689

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

doc/Configuration.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -1048,7 +1048,7 @@ This option sets the port which ntp will choose to send time update requests fro
10481048
NOTE: If a Loopback interface is defined on the switch ntp will choose this by default, so this setting
10491049
is **required** if the switch has a Loopback interface and the ntp peer does not have defined routes
10501050
for that address.
1051-
1051+
10521052
```
10531053
{
10541054
"NTP": {
@@ -1501,6 +1501,29 @@ The list of root ports, all possible breakout modes, and default breakout modes
15011501
}
15021502
```
15031503

1504+
### AAA
1505+
1506+
The AAA table defined the method SONiC used for Authentication, Authorization and Accounting.
1507+
The method could be:
1508+
- default
1509+
- local
1510+
- tacacs+
1511+
- radius
1512+
1513+
```
1514+
"AAA": {
1515+
"authentication": {
1516+
"login": "local"
1517+
},
1518+
"authorization": {
1519+
"login": "local"
1520+
},
1521+
"accounting": {
1522+
"login": "local"
1523+
}
1524+
}
1525+
```
1526+
15041527
For Developers
15051528
==============
15061529

0 commit comments

Comments
 (0)