명령어 입력 모드
프롬포트 | 명칭 | 사용 가능한 명령어 |
Router> | user mode, 사용자 모드 | 간단한 조회 명령어 |
Router# | privileged mode, 관리자 모드 | 자세한 조회 명령어 |
Router(config)# | global configuration mode, 전역 설정 모드 | 설정 명령어 |
Router(Config-if)# | interface configuration mode, 안터페이스 설정 모드 | 인터페이스에 설정하는 명령어 |
각 명령어 입력 위치 간 이동
en: enable
conf t: configure terminal
int f0/0: interface fastethernet 0/0 (모듈/포트)
exit / end
기타 명령어
?: 해당 위치에서 사용 가능한 모든 명령어 조회 가능
Tab: 나머지 명령어 완성
Ctrl + Shift + 6: 서버 등으로부터 결과를 받기 위해 기다리는 과정을 즉시 중지
CLI 명령어
- show version :라우터(스위치)의 기본적인 내용(소프트웨어 버전, 인터페이스 종류 등) 확인
- show interface: 라우터(스위치)의 모든 인터페이스 상태 확인
- show flash: 플래시 메모리 확인 -> IOS 이미지 파일에 대한 내용 확인 가능
- show running-config / show startup-config
- saving the configuration
- copy running-config, startup-config
- write
- write memory
기본 IP 입력(PC1 <-> PC2 통신)
PC1&PC2
PC1> ip 10.0.0.1/24 10.0.0.254
PC2> ip 192.168.10.1/24 192.168.10.254
R1
Router#conf t
Router(config)#int g0/0
Router(config-if)#ip addr 10.0.0.254 255.255.255.0
Router(config-if)#no sh
Router(config-if)#int g0/1
Router(config-if)#ip addr 192.168.20.1 255.255.255.0
Router(config-if)#no sh
Router(config-if)#exit
Router(config)#ip route 192.168.20.0 255.255.255.0 192.168.20.254
R2
Router#conf t
Router(config)#int g0/1
Router(config-if)#ip addr 192.168.20.254 255.255.255.0
Router(config-if)#no sh
Router(config-if)#int g0/0
Router(config-if)#ip addr 192.168.10.254 255.255.255.0
Router(config-if)#no sh
Router(config-if)#exit
Router(config)#ip route 10.0.0.0 255.255.255.0 192.168.20.1
'네트워크 > lab' 카테고리의 다른 글
IPv4, IPv6 (0) | 2024.04.05 |
---|---|
GNS 연결, access-list, Network-Automation (0) | 2024.04.05 |
DHCP&DNS (0) | 2024.04.04 |
Loopback interface, Sub-interface (0) | 2024.04.04 |
Router&Switch 접속 및 Passwd 설정 (0) | 2024.04.03 |