Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 system {
    authentication-order [ tacplus password ];
    tacplus-server {
        172.16.133.12 secret "$9$EHdyvLdVYoaUdb4ZGDPf"; ## SECRET-DATA
    }
    accounting {
        events [ login change-log interactive-commands ];
        destination {
            tacplus {
                server {
                  172.16.133.12 secret "$9$HmQntpBEhrtuRSylXx"; ## SECRET-DATA
                }
            }
        }
    }
   login {
        user remote {
            uid 2001;
            class super-user;
        }
    }
}

...

set system authentication-order tacplus
set system authentication-order password
set system tacplus-server 172.16.133.12 secret "$9$EHdyvLdVYoaUdb4ZGDPf"
set system accounting events login
set system accounting events change-log
set system accounting events interactive-commands
set system accounting destination tacplus server 172.16.133.12 secret "$9$HmQntpBEhrtuRSylXx"
set system login user remote uid 2001
set system login user remote class super-user

...