How to make simple/basic triple aaa authentication with a Radius server

Опубликовано: 14 Апрель 2026
на канале: MysterySystems
170
3

Hi
Today we will look at how you can config triple aaa authentication with a Radius server.

R1
hostname R1

no ip domain-lookup

username Test secret Test123

enable secret Test123

ip ssh version 2

ip domain-name Test.local

crypto key generate rsa
2048

aaa new-model

aaa authentication login default group radius local

radius server host
address ipv4 192.168.10.100 auth-port 1645
key MyTripleAaaKey
exit

line con 0
logging synchronous
login authentication default
exit

line vty 0 15
logging synchronous
login authentication default
transport input ssh
exit

interface gig 0/0/0
ip address 192.168.10.1 255.255.255.0
no shutdown
exit
________________________________________________________________________
AAA Server
Give it an ip
Turn on AAA
Add R1 onto it with name, ip and key
Add user
________________________________________________________________________
PC1
Only give it an ip
________________________________________________________________________