본문 바로가기

IT/네트워크관리사 2급

[실기 - 라우터] 라우터 주석 (description) 설정

반응형

[ 문제 ]

Fast Ethernet 0/0의 Description을 설정하시오.

Description : ICQA

(완료된 설정은 'Router# copy running-config startup-config'를 사용하여 startup-config에 저장)

 

 


[ 정답 ]

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

 

 


[ 풀이 ]

Router> en 사용자 모드에서 관리자 모드로 전환
Router# conf t 관리자 모드에서 전역설정 모드로 전환
Router(config)# interface fastethernet 0/0 문제의 fastethernet 0/0으로 이동
Router(config-if)# description ICQA 주석을 ICQA로 설정 (대소문자 구분 필요)
Router(config-if)# exit fastethernet 0/0에서 나가기
Router(config)# exit 전역설정 모드에서 관리자 모드로 나가기
Router# copy r s 관리자 모드에서 저장
반응형