※ 쿠팡 파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있습니다.
1. HTTP 사용 해제.
Switch>enable
Switch#config t
Switch(config)#no ip http server
Switch(config)#exit
Switch#wr
2. Syslog Configuration.
Switch>enable
Switch#config t
Switch(config)#logging buffered 150000 (-> Logging Buffer Size를 필요에 따라 변경하시면 됩니다. Default는 4096) 6 (-> Log가 필요한 Message Level에 따라 설정하시면 됩니다.)
Switch (config)#logging host 192.168.16.10(-> Syslog Server IP 주소를 입력하시면 됩니다.)
Switch (config)#logging trap 6 (-> Syslog Server로 전송할 Log Message Level에 따라 설정하시면 됩니다.)
Switch (config)#service timestamps
Switch(config)#exit
Switch#wr
3. SNMP v3 Configuration.
Switch>enable
Switch#config t
Switch (config)#ip access-list standard SNMPV3 (-> 원하시는 Access-list name을 입력하시면 됩니다.)
Switch (config-std-nacl)# permit host 192.168.16.10 (-> SNMP Server 주소를 입력하시면 됩니다.)
Switch (config-std-nacl)#deny any log
Switch (config-std-nacl)#exit
Switch(config)#snmp-server group TEST(-> 프로젝트에 맞게 설정하시면 됩니다.) v3 priv(-> 가장 높은 권한으로 설정합니다.)
Switch(config)#snmp-server user snmpadmin(-> 프로젝트에 맞게 username 설정하시면 됩니다.) TEST v3 auth sha cisco1234 (-> 프로젝트에 맞게 암호 설정하시면 됩니다.) priv aes 128 cisco5678 (-> 프로젝트에 맞게 암호화 암호 설정하시면 됩니다.) access SNMPV3
Switch(config)#snmp-server host 192.168.16.10 informs (-> Trap Message Level에 따라 설정하시면 됩니다.) version 3 pri snmpadmin
Switch (config)#exit
Switch#wr
'Cisco Switch 시작하기' 카테고리의 다른 글
Cisco Switch Access Restriction and Control Plane Policing (0) | 2024.09.24 |
---|---|
Cisco Switch Banner and Login Configuration (0) | 2024.09.23 |
Cisco Switch Time and Port Speed Limit & Port Security (0) | 2024.09.22 |
Cisco Switch Name, Initial IP & SSH Configuration (0) | 2024.09.20 |
Cisco Switch 초기 Configuration - Username and Password (0) | 2024.09.19 |