네트워크관리사 2급

[네트워크 관리사 2급 실기] - 라우터 연습 문제

ITsubin 2022. 9. 22. 23:55

해당 포스팅에 있는 연습문제들은 "햄릿슈"님의 유튜브 강의 및 블로그에 있는 문제들을 재구성한 문제들입니다.

햄릿슈님의 유튜브 강의를 먼저 보고 오시는 것을 추천드립니다.

[ 햄릿슈님 유튜브 바로가기 ]  /  [ 햄릿슈님 블로그 바로가기 ]

 

Cisco Packet Tracer를 써보신 분들이라면 익숙한 인터페이스가 나옵니다.

인터페이스를 제외하고는 익숙하지 않다는 점만 빼고는 문제는 그렇게 어렵지 않은 것 같습니다.


{ 연습 프로그램 }

ICQA 홈페이지 => 자료실 => 네트워크관리사 => [ Router Emulator 프로그램 수험생 실습용 ]


{ 연습문제 }

1) 인터페이스 정보를 확인하고 저장하시오.

더보기

Router> en

Router# show interface

Router# copy r s


2) 접속한 사용자 정보를 확인하고 저장하시오.

더보기

Router> en

Router# show user

Router# copy r s


3) 라우팅 테이블 정보를 확인하고 저장하시오.

더보기

Router> en

Router# show ip route

Router# copy r s


4) 플래쉬 내용을 확인하고 저장하시오.

더보기

Router> en

Router# show flash

Router# copy r s


5) 프로세스 정보를 확인하고 저장하시오.

더보기

Router> en

Router# show process

Router# copy r s


6) ROUTER1 console 0의 패스워드를 ICQA로 설정하고 로그인하시오.

더보기

Router# en

Router# conf t

Router(config) # line console 0

Router(config-line) # password ICQA

Router(config-line) # login

Router(config) # exit

Router# exit

Router# copy r s


7) 기본 게이트웨이를 설정하시오. IP:192.168.0.10

더보기

Router> en

Router# conf t

Router(config) # ip default-gateway 192.168.0.10

Router(config) # exit

Router# copy r s


8) ROUTER1DHCP 네트워크를 192.168.100.0/24 서버이름은 ‘icqa’로 설정하시오.

더보기

Router> en

Router# conf t

Router(config) # ip dhcp pool icqa

Router(dhcp-config) # network 192.168.100.0 255.255.255.0

Router(dhcp-config) # exit

Router(config) # exit

Router# copy r s


9) ROUTER1Serial 2/0을 사용가능하게 IP 주소를 192.168.0.101/24와 두 번째 IP 192.168.0.102/24로 설정하고 활성화하시오.

더보기

Router> en

Router# conf t

Router(config) # interface serial 2/0

Router(config-if) # ip add 192.168.0.101 255.255.255.0

Router(config-if) # ip add 192.168.0.102 255.255.255.0 secondary

Router(config-if) # no shutdown

Router(config-if) # exit

Router(config) # exit

Router# copy r s


10) FastEthernet 0/0Description을 설정하시오. Description : ICQA

더보기

Router> en

Router# conf t

Router(config) # interface fastethernet 0/0

Router(config-if) # description ICQA

Router(config-if) # exit

Router(config) # exit

Router# copy r s


11) ROUTER1 Telnet에 접근하는 Passwordicqa로 설정하고 로그인하시오.

더보기

Router> en

Router# conf t

Router(config) # line vty 0 4

Router(config-line) # password icqa

Router(config-line) # exit

Router(config) # exit

Router# copy r s


12) 텔넷 연결 후 350초동안 입력이 없으면 세션이 자동 종료되도록 설정하시오.

더보기

Router> en

Router# conf t

Router(config) # line vty 0 4

Router(config-line) # exec-timeout 03 50

Router(config-line) # exit

Router(config) # exit

Router# copy r s


13) ROUTER1 Serial 2/0을 활성화시키시오.

더보기

Router> en

Router# conf t

Router(config) # interface serial 2/0

Router(config-if) # no shutdown

Router(config-if) # exit

Router(config) # exit

Router# copy r s


14) Hostnamenetwork2로 변경하고 console 0passwordroute5로 변경 후 로그인하시오.

더보기

Router> en

Router# conf t

Router(config) # hostname network2

network2(config) # line console 0

network2(config-line) # password route5

network2(config-line) # exit

network2(config) # exit

network2# copy r s


15) ROUTER 1Fast Ethernet 0/0IP192.168.0.100/24로 설정하시오.

더보기

Router> en

Router# conf t

Router(config) # interface fastethernet 0/0

Router(config-if) # ip add 192.168.0.100 255.255.255.0

Router(config-if) # exit

Router(config) # exit

Router# copy r s


16) ROUTER2Serial 2/0의 대역폭을 2048로 설정하시오.

더보기

Router> en

Router# conf t

Router(config) # interface serial 2/0

Router(config-if) # bandwidth 2048

Router(config-if) # exit

Router(config) # exit

Router# copy r s


17) ROUTER1Serial 2/0의 클럭속도를 72K로 설정하시오.

더보기

Router> en

Router# conf t

Router(config) # interface seiral 2/0

Router(config-if) # clock-late 72000

Router(config-if) # exit

Router(config) # exit

Router# copy r s