Self-Improvement

3) Switch Telnet/Console Password 본문

네트워크/Switch

3) Switch Telnet/Console Password

JoGeun 2018. 10. 20. 14:00

*L2 Swtich IP 설정
스위치를 관리하기 위해서 텔넷 접속을 하거나 또는 스위치 ping 테스트, Cisco IOS 다운로드/업로드를 하기 위해서는 IP 주소가 필요하다. 그렇기 때문에 vlan1 도메인 인터페이스에 설정한다. 
--------------------Switch---------------
Switch>enable
Switch#show vlan brief (vlan 정보를 볼수 있음)
Switch#conf t
Switch(config)#inter vlan 1
Switch(config-if)#ip add x.x.x.x x.x.x.x
Switch(config-if)#no shutdown
Switch(config-if)#exit
Switch(config)#ip default-gateway x.x.x.x (외부에서도 Telnet으로 접속할 수 있게하는 설정)
--------------------------------------------

*Switch 패스워드 설정
라우터에서 사용하는 명령어를 그대로 설정하면 되지만 텔넷과 같은 VTY라인 패스워드는 기본 동시 접속이 16개 임을 명심한다.
--------------------Switch---------------
Switch>enable
Switch#conf t
Switch(config)#enable secret xxx
Switch(config)#line con 0 (콘솔접속시 설정)
Switch(config-line)#password xxx
Switch(config-line)#login (login local은 이름과 비밀번호 두개를 묻는다)
Switch(config-line)#line vty 0 15 (텔넷접속시 설정)
Switch(config-line)#password xxx
Switch(config-line)#login

--------------------------------------------

'네트워크 > Switch' 카테고리의 다른 글

6) Switch STP  (0) 2018.10.20
5) Switch VTP  (0) 2018.10.20
4) Switch 기본 Vlan  (0) 2018.10.20
2) 기본 네트워크 구성 실습  (0) 2018.10.20
1) LAN구간 통신방법, 메모리공간 등 이론  (0) 2018.10.20