Posts

Showing posts from January, 2024

CISCO SNMP Config

 SNMPv2C Config ==================== snmp-server host 192.168.245.1 admin snmp-server community public ro snmp-server community private rw snmp-server enable traps SNMPv3 Config ======================= ip access-list SNMP_ACL permit 192.168.245.0 0.0.0.255 exit snmp-server view SNMP_VIEW iso include snmp-server group SNMP_GP priv v3 priv read SNMP_VIEW access-list SNMP_ACL snmp-server host 192.168.245.1 version 3 priv ycit snmp-server user ycit SNMP_GP v3 auth md5 testing123 priv des testing123 snmp-server enable traps snmp-server inform
Cisco Config Backup   FTP SERVER Username and Password Assign To Switch ================================================= ip ftp username ycit ip ftp password ycit123 Manual Backup to FTP Server =========================== copy startup-config ftp://10.16.10.1/test.txt Auto Backup To FTP Server when Type "write memory command" ========================== archive path ftp://10.16.10.1/test.txt write memory Verify =========================== show archive   #check archived files show archive config differences ftp://10.16.10.1/test.txt ftp://10.16.10.1/test1.txt #compare between two file in ftp server clear archive log config #clear archive log

SSH CONFIGURATION

 SSH CONFIG =========== 1.Create Domain Name for rsa create     (config)#ip domain name ycit.com 2.Generate RSA Key     (config)#crypto key generate rsa modulus 1024 3.Create Virtual Terminal Session (default =5)     (config)#line vty 0 4     (config-line)#transport input ssh     (config-line)#login local 4.Create Username and Password (also enable password)     (config)#username admin secret cisco     (config)#enable secret cisco

Telnet Configuration

Image
 Telnet ^^^^^^           line vty 0 4 transport input telnet password cisco    Troubleshooting     #show users