※ 쿠팡 파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있습니다.
1. Banner Configuration.
(1) General Banner.
Switch>enable
Switch#config t
Switch(config)#banner motd “$(hostname) will be under maintenance on May 24th. Connectivity issues may be present.” (-> " "안에 원하시는 내용을 작성하시면 됩니다.)
Switch(config)#exit
Switch#wr
(2) Login Banner.
Switch>enable
Switch#config t
Switch(config)#banner login “Access for authorized users only. Please enter your username and password.”
Switch(config)#exit
Switch#wr
(3) Login 완료 후 EXEC Banner.
Switch>enable
Switch#config t
Switch(config)#banner exec “Welcome to $(hostname). Please remember to save all of your changes.”
Switch(config)#exit
Switch#wr
2. Login 시도 제한.
Switch>enable
Switch#config t
Switch(config)#login block-for 60 attempts 3 within 30 (-> 제한 시간 및 시도 횟수를 목적에 맞게 설정하시면 됩니다.)
Switch(config)#login delay 3 (-> 연속 Login 시간 제한을 원하시는 값으로 설정하시면 됩니다.)
Switch(config)#exit
Switch#wr
3. Login 동시 접속자 수 제한.
Switch>enable
Switch#config t
Switch(config)#ip ssh maxstartups 2 (-> 최대 접속자 수를 원하시는 값으로 설정하시면 됩니다.)
Switch(config)#exit
Switch#wr
4. Idle Time Configuration.
Switch>enable
Switch#config t
Switch(config)#line vty 0 15
Switch(config-line)#session-timeout 10 (-> 원하시는 시간 (분)을 설정하시면 됩니다.)
Switch(config-line)#exec-timeout 10 0 (-> 원하시는 분, 초를 설정하시면 됩니다.)
Switch(config-line)#exit
Switch(config)#line console 0
Switch(config-line)#session-timeout 10
Switch(config-line)#exec-timeout 10 0
Switch(config-line)#end
Switch#wr
'Cisco Switch 시작하기' 카테고리의 다른 글
Cisco Switch Interface Trunking and Rapid PVST (0) | 2024.09.25 |
---|---|
Cisco Switch Access Restriction and Control Plane Policing (0) | 2024.09.24 |
Cisco Switch Time and Port Speed Limit & Port Security (0) | 2024.09.22 |
Cisco Switch Disabling HTTP and Syslog & SNMP Configuration (0) | 2024.09.21 |
Cisco Switch Name, Initial IP & SSH Configuration (0) | 2024.09.20 |