Cisco 명령어 정리

  오늘은 Cisco 명령을 정리해보려고 합니다. 제가 다니는 회사는 현재 L3에 대한 유지보수를 맺지 않아 장애가 터졌을 시 확인 해야 할 부분을 대비하기 위한 정리입니다. 앞으로는 다른 형식으로 유지보수로 업무기안을 올린 상태지만 우리같은 담당자들은... 대비를 해야합니다. 그런 의미로 정리를 하였습니다.   Cisco router 명령어 정리  1. 라우터 이름 설정   borisrouter#conf t  borisrouter(config)#hostname boris 2. 관리 비밀번호 설정 borisrouter(config)#enable secret (원하는 패스워드  boris )                           enable password  (원하는 패스워드  boris )   3. 텔넷 비밀번호 설정 borisrouter(config)#line vty 0 4 borisrouter(config-line)#login borisrouter(config-line)#password cisco   4. 텔넷 연결 세션 보기 borisrouter#show session   5. 세션 종료 borisrouter#disconnect   6. 라우터 IP 설정 borisrouter#conf t borisrouter(config)#interface fa 0/0 borisrouter(config-if)#ip address 100.100.100.254 255.255.255.0   7. 포트 동작 시키기 borisrouter(config-if)#no shutdown   8. VLAN 1 및 IP 설정 borisrouter(config)interface fastEthernet 0/0.1 borisr...