네트워크관리사2급 실기) 라우터 기본
본문 바로가기
IT 자격증/2018 네트워크관리사

네트워크관리사2급 실기) 라우터 기본

by 코딩하는 핑가 2020. 8. 12.
반응형

네관사실기 라우터 정리.docx
0.02MB

* 참고
http://haruharu.me/
https://www.youtube.com/watch?v=iMadKdren8I&list=PLrTFeWWAg1cgwM-iu2fD3lclojap8OPQv&index=4


* 대소문자 구분 꼭 하기
* en = enable : 사용자 모드에서 관리자 모드로 전환
* conf t = configure terminal : 관리자 모드에서 전역 설정 모드로 전환
* no shutdown : 활성화
* copy r s = copy running-config startup-config

Router1> en
Router# conf t
Router1(config)# hostname ICQA
ICQA(config)# exit
ICQA(config)# copy r s

* 자주 나오는 다른 유형
1. 인터페이스 정보를 확인하라 : enable - show interface - copy r s
2. 접속한 사용자를 확인하라 : enable - show usesr(s) - copy r s
3. 라우팅 테이블을 확인하라 : enable - show ip route - copy r s
4. 플래쉬를 확인하라 : enable - show flash - copy r s

Router1> en
Router1# conf t
Router1(config)# interface fast 0/0
Router1(config-if)# ip access-group 1 in
Router1(config-if)# ip access-group 1 out
Router1(config-if)# exit

Router1(config)# exit
Router1(config)# copy r s

Router1> en
Router1# conf t
Router1(config)# ip ospf 1
Router1(config-router)# network 192.70.100.0 0.0.0.255 area 1
Router1(config-router)# network 193.150.60.0 0.0.0.255 area 1
Router1(config-router)# exit

Router1(config)# exit
Router1(config)# copy r s

반응형

댓글