Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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