From 00266891a9f41e5bd37100b05237e865cde429b2 Mon Sep 17 00:00:00 2001 From: liuh-80 <58683130+liuh-80@users.noreply.github.com> Date: Thu, 10 Mar 2022 12:16:38 +0800 Subject: [PATCH] Add AAA table description and example to Configuration.md (#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** --- doc/Configuration.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/doc/Configuration.md b/doc/Configuration.md index 167983def71d..b5890681ce41 100644 --- a/doc/Configuration.md +++ b/doc/Configuration.md @@ -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": { @@ -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 ==============