네트워크관리사 2급/네트워크관리사 2급 실기

네트워크관리사 2급 실기 라우터 인터페이스 문제 interface fastethernet serial

라린 2025. 1. 13. 11:53

2025.01.07 - [네트워크관리사 2급/네트워크관리사 2급 실기] - 네트워크관리사 2급 실기 라우터 확인(show), 설정 문제

 

네트워크관리사 2급 실기 라우터 확인(show), 설정 문제

https://larin.tistory.com/8 네트워크관리사 2급 실기 라우터 기출 문제네트워크관리사 2급 실기 15번~18번 문제는 라우터 문제입니다.오늘은 지난 2019년부터 2022년까지의 실기 라우터 기출문제를 준비

larin.tistory.com

 

앞전에는 라우터 확인, 설정 문제를 정리해 공유했는데, 오늘은 인터페이스 관련문제를 정리해 공유해보려고 해요! 인터페이스 문제는 fastethernet과 serial 문제가 있어요! 복잡하지 않으니 바로 시작해보겠습니다.

 

serial

1. serial 2/0의 대역폭을 2048로 설정하고 저장하시오.

Router> enable (en)

Router# config terminal (conf t)

Router(config)# interface serial 2/0 (int se 2/0)

Router(config-if)# bandwidth 2048

Router(config-if)# exit

Router(config)# exit

Router# copy r s

 

2. serial 2/0clock rate72k로 설정하고 저장하시오.

Router> en

Router# conf t

Router(config)# int se 2/0

Router(config-if)# clock rate 72000

Router(config-if)# exit

Router(config)# exit

Router# copy r s

 

3. router2interface serial 0/0를 활성화시키고 저장하시오.

Router> en

Router# conf t

Router(config)# int se 0/0

Router(config-if)# no shutdown

Router(config-if)# exit

Router(config)# exit

Router# copy r s

 

4. serial 2/0frame relay 방식으로 캡슐화 하시오.

Router> en

Router# conf t

Router(config)# int se 0/0

Router(config-if)# encapsulation frame-relay

Router(config-if)# exit

Router(config)# exit

Router# copy r s

 

fastethernet

1. fastethernet 0/0descriptionICQA로 설정하고 저장하시오.

Router> en

Router# conf t

Router(config)# interface fastethernet 0/0 (int fas 0/0)

Router(config-if)# description ICQA

Router(config-if)# exit

Router(config)# exit

Router# copy r s

 

2. 아래와 같이 인터페이스를 설정하고 저장하시오.

- interface fastethernet 0/0

- ip address 192.168.200.2 255.255.255.252

Router> en

Router# conf t

Router(config)# int fas 0/0

Router(config-if)# ip address 192.168.200.2 255.255.255.252 (ip add ~)

Router(config-if)# exit

Router(config)# exit

Router# copy r s

 

3. fastethernet 0/0 ip address192.168.2.1/30192.168.3.1/30 secondary로 설정하고 저장하시오.

Router> en

Router# conf t

Router(config)# int fas 0/0

Router(config-if)# ip address 192.168.200.2 255.255.255.252 (ip add ~)

Router(config-if)# ip address 192.168.200.2 255.255.255.252 secondary (ip add ~ sec)

Router(config-if)# exit

Router(config)# exit

Router# copy r s

 

4. router1access-list 1이 설정되어 있을 때, fastethernet 0/0에 적용하시오.

Router> en

Router# conf t

Router(config)# int fas 0/0

Router(config-if)# ip access-group 1 in

Router(config-if)# exit

Router(config)# exit

Router# copy r s

 

참고로 문제에 저장하라는 말이 없더라도 exit, exit, copy r s 는 꼭 입력하고, exit 두번 입력하는 것과 end 한번 입력하는 것과 같으니 대신해도 됩니다.