BACKUP/RESTORE-TFTP, SYSLOG, NTP, RADIUS/TRACKERS,
BACKUP/RESTORE Cisco Devices:
Fast we are backup download on our TFTP server
Router#enable
Router#copy running-config tftp:
Address or name of remote host []? 8.8.8.8
Destination filename [Router-confg]? fast_backup
Writing running-config...!!
[OK - 963 bytes]
963 bytes copied in 0.035 secs (27514 bytes/sec)
we want to upload this backup on our existing router :
Router#copy tftp: running-config
Address or name of remote host []? 8.8.8.8
Source filename []? fast_backup
Destination filename [running-config]?
Accessing tftp://8.8.8.8/fast_backup...
Loading fast_backup from 8.8.8.8: !
[OK - 963 bytes]
963 bytes copied in 0.001 secs (963000 bytes/sec)
Router#
%LINK-5-CHANGED: Interface GigabitEthernet0/0.50, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0.50, changed state to up
%LINK-5-CHANGED: Interface GigabitEthernet0/0.60, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0.60, changed state to up
%SYS-5-CONFIG_I: Configured from console by console
now backup is done to upload in our router
SYSLOG configuration:
Router#
Router(config)#logging on
Router(config)#login 8.8.8.8
NTP configuration:
Router(config)#ntp server 8.8.8.8
AAA authentication Configuration RADIUS:
R1(config)#enable password 123
R1(config)#service password-encryption
R1(config)#username alamin password 123
R1(config)#line vty 0 4
R1(config-line)#transport input all
R1(config-line)#login authentication default
R1(config-line)#exit
R1(config)#radius-server host 8.8.8.8
R1(config)#aaa new-model
R1(config)#aaa authentication login default group radius local
R1(config)#
AAA authentication Configuration TACACS
R1(config)#enable password 123
R1(config)#service password-encryption
R1(config)#username alamin password 123
R1(config)#line vty 0 4
R1(config-line)#transport input all
R1(config-line)#login authentication default
R1(config-line)#exit
R1(config)#aaa new-model
R1(config)#aaa authentication login default group tacacs+ local
R1(config)#
Comments
Post a Comment