본문 바로가기
시작/TIL(Today I Learned)

네트워크 관리사 2급 실기 기출문제 - 라우터

by 백씨네 2024. 6. 22.

모드 종류

  • 사용자 모드 : Router>
  • 관리자 모드 : Router#
  • 설정모드 : Router(config)#
  • 라인설정모드 : Router(config-line)#
  • 인터페이스 모드 : Router(config-if)#

 

FastEthernet 0/0의 IP를 192.168.0.100/24 로 설정

접기/펼치기

en
conf t
interface fastethernet 0/0
ip add 192.168.0.100 255.255.255.0
no shutdown
exit
exit
copy r s

 

 

Serial 2/0 대역폭 2048로 설정

접기/펼치기

en

conf t

interface serial 2/0

bandwidth 2048

exit

exit

copy r s

 

 

Serial 2/0 클럭속도 72k

접기/펼치기
en
conf t
interface serial 2/0
clock rate 72000
exit
exit
copy r s

 

 

FastEthernet 0/0 Description : ICQA 설정

접기/펼치기

en

conf t

interface fastethernet 0/0

description ICQA

exit

exit

copy r s

 

 

Serial 2/0을 사용가능하게 IP 주소를 192.168.0.101/24와 두번째 IP 192.168.0.102.24로 설정

접기/펼치기

en

conf t

interface serial 2/0

ip add 192.168.0.101 255.255.255.0

ip add 192.168.0.102 255.255.255.0 secondary

no shutdown

exit

exit

copy r s

 

 

기본 게이트웨이 설정 IP: 192.168.0.10 +

접기/펼치기

en
conf t
ip default-gateway 192.168.0.10
exit
copy r s

 

 

기본 네트워크를 192.168.0.10 으로 설정

접기/펼치기
en
conf t
ip default-network 192.168.0.10
exit
copy r s

 

 

DHCP 네트워크를 192.168.100.0/24 서버이름 : icqa +

접기/펼치기

en

conf t

ip dhcp pool icqa

network 192.168.100.0 255.255.255.0

exit

exit

copy r s

 

 

Telnet password를 icqa로 변경 +

접기/펼치기

en

conf t

line vty 0 4

password icqa

login # 반드시 로그인

exit

exit

copy r s

 

 

Telnet 연결 후 3분 50초 동안 입력 없으면 세션 자동 종료 +

접기/펼치기

en
conf t
line vty 0 4
exec-timeout 03 50
exit
exit
copy r s

 

 

console 0의 패스워드를 ICQA로 설정하고 로그인

접기/펼치기

en

conf t

line console 0

password ICQA

login

exit

exit

copy r s

 

 

Serial 2/0 활성화

접기/펼치기

en

conf t

interface serial 2/0

no shutdown

exit

exit

copy r s

 

 

Hostname을 network2로 변경하고 console 0의 password를 router5로 변경 후 로그인 +

접기/펼치기

en

conf t

hostname network2

line console 0

password router 5

login

exit

exit

copy r s

 

 

인터페이스 정보를 확인하고 저장

접기/펼치기

en

show interface

copy r s

 

 

접속한 사용자 정보 확인 후 저장

접기/펼치기

en

show user

copy r s

 

 

라우팅 테이블 정보를 확인하고 저장 +

접기/펼치기

en

show ip route

copy r s

 

 

플래시 정보를 확인하고 저장 +

접기/펼치기

en

show flash

copy r s

 

 

프로세스 정보를 확인하고 저장 +

접기/펼치기
en
show process
copy r s

 

 

router에 access-list 1이 설정되어 있을 때 fastethernet 0/0에 적용하시오

접기/펼치기

pc -> router : in
router -> pc : out

en
conf t
ip access-group 1 in 
ip access-group 1 out
exit
exit
copy r s

 

 

router 1 에 OSPF 를 설정하시오 x

접기/펼치기
en
conf t
router ospf 1
network 192.70.100.0 0.0.0.255 a

 

 

정적 라우팅

접기/펼치기
en
conf t
ip route 192.188.20.0 255.255.255.0 176.18.1.2
exit
copy r s

댓글