För att säkra åtkomst till en router/switch har vi två alternativ:
- Via en lokal databas
- Via en TACACS+ eller RADIUS server
Exempel
Studera en stund nätverkstopologin nedan. AAA autentisering konfigureras i tre olika alternativ: lokal databas, TACACS+, och RADIUS server.
Konfigurationer:
- Router R1
- Router# config term
- Router(config)# hostname R1
- R1(config)# interface g0/1
- R1(config-if)# ip address 192.168.1.1 255.255.255.0
- R1(config-if)# no shut
- R1(config)# interface s0/0/0
- R1(config-if)# ip address 10.1.1.2 255.255.255.252
- R1(config-if)# clock rate 64000
- R1(config-if)# no shut
- R1(config-if)# end
- Router R2
- Router# config term
- Router(config)# hostname R2
- R2(config)# interface g0/1
- R2(config-if)# ip address 192.168.2.1 255.255.255.0
- R2(config-if)# no shut
- R2(config)# interface s0/0/0
- R2(config-if)# ip address 10.1.1.1 255.255.255.252
- R2(config-if)# no shut
- R2(config)# interface s0/0/1
- R2(config-if)# ip address 10.2.2.1 255.255.255.252
- R2(config-if)# clock rate 64000
- R2(config-if)# no shut
- R2(config-if)# end
- Router R3
- Router# config term
- Router(config)# hostname R3
- R3(config)# interface g0/1
- R3(config-if)# ip address 192.168.3.1 255.255.255.0
- R3(config-if)# no shut
- R3(config-if)# exit
- R3(config)# interface s0/0/1
- R3(config-if)# ip address 10.2.2.2 255.255.255.252
- R3(config-if)# no shut
- R3(config-if)# end
- Router R1
- R1# configure terminal
- R1(config)# router eigrp 1
- R1(config-router)# no auto-summary
- R1(config-router)# network 192.168.1.0 0.0.0.255
- R1(config-router)# network 10.1.1.0 0.0.0.3
- R1(config-router)# end
- Router R2
- R2# configure terminal
- R2(config)# router eigrp 1
- R2(config-router)# no auto-summary
- R2(config-router)# network 192.168.2.0 0.0.0.255
- R2(config-router)# network 10.1.1.0 0.0.0.3
- R2(config-router)# network 10.2.2.0 0.0.0.3
- R2(config-router)# end
- Router R3
- R3# configure terminal
- R3(config)# router eigrp 1
- R3(config-router)# no auto-summary
- R3(config-router)# network 192.168.3.0 0.0.0.255
- R3(config-router)# network 10.2.2.0 0.0.0.3
- R3(config-router)# end
- AAA autentisering för konsolåtkomst
- R1#configure terminal
- R1(config)# enable secret enpass
- R1(config)# username admin privilege 15 secret cisco1515
- R1(config)# username user1 privilege 1 secret cisco111
- R1(config)# username user9 privilege 9 secret cisco999
- R1(config)# aaa new-model
- R1(config)# aaa authentication login default local-case
- R1(config)# line console 0
- R1(config-line)# login authentication default
- R1(config-line)# end
- Testa konsolåtkomst
- R1# exit
- Username: Admin1
- Password: admin1pass
R1> - AAA autentisering för SSH-åtkomst
- R1#configure terminal
- R1(config)# ip domain-name diginto.se
- R1(config)# crypto key generate rsa
How many bits in the modulus [512]: 1024 - R1(config)# aaa authentication login SSH-LOGIN local
- R1(config)# line vty 0 4
- R1(config-line)# login authentication SSH-LOGIN
- R1(config-line)# transport input ssh
- R1(config-line)# end
- R1#
- Verifiera SSH anslutning från PC-A
PC> ssh -l Admin1 192.168.1.1
open
Password: admin1pass
|
|