본문 바로가기

자격증/네트워크 관리사 2급 - 실기 기록

네트워크 관리사 2급 실기 ( 라우터 총 정리 )

728x90
반응형

 


[ 문제 1 ]

ROUTER2의 호스트 이름을 ICQA 로 설정 후 저장.

더보기

 

en

conf t

hostname ICQA

exit

copy r s


[ 문제 2 ]

사용자 모드에서 관리자 모드로 전환 후 저장

더보기

 

en

copy r s

 


[ 문제 3 ]

ROUTER 1의 FastEthernet 의 0/0 의 IP 를 192.168.0.100 / 24 로 설정 후 저장

더보기

 

en

conf t

int fastethernet 0/0

ip add 192.168.0.100 255.255.255.0

exit

exit

copy r s


[ 문제 4 ]

아래와 같이 Router1의 Ethernet0 인터페이스를 설정하고, NVRAM 에 저장.

Router#show running-config

Bilding confoguration ...

Using #### out of ##### bytes

!

version##.#

!

Interface Ethernet 0 

Ip address 192.168.200.2 255.255.255.252

ip directed-broadcast

 

더보기

 

en

conf t

int ethernet 0

ip add 192.168.200.2 255.255.255.252

ip directed-broadcast

exit

exit

copy r s


[ 문제 5 ]

Router1의 Serial 0의 대역폭을 2048로 설정 후 저장

더보기

 

en

conf t

int serial 0

ban 2048

exit

exit

copy r s


[ 문제 6 ]

Router1의 Serial 0의 클럭속도를 56 K로 설정 후 저장

더보기

 

en

conf t

int serial 0

clock rate 56000

exit

exit

copy r s


[ 문제 7 ]

Ethernet 0의 description 을 설정하고 저장

description : ICQA

더보기

 

en

conf t 

int ethernet 0

des ICQA

exit

exit

copy r s


[ 문제 8 ]

Ethernet 0 의 IP Address 를 192.168.2.1 / 30 과 192.168.3.1 / 30 Secondary 로 설정하고 저장.

더보기

 

en

conf t

int ethernet 0

ip add 192.168.2.1 255.255.255.252

ip add 192.168.3.1 255.255.255.252 secondary

exit

exit

copy r s


[ 문제 9 ]

Default-Gateway 를 설정 후 저장

ip : 192.168.0.10

더보기

 

en

conf t

ip default-gateway 192.168.0.10

exit

copy r s


[ 문제 10 ]

Router1 Telnet 에 접근하는 Password 를 "TELPass" 로 설정 후 상태 저장

더보기

 

en

conf t

line vty 0 4

password TELPass

login

exit

exit

copy r s


[ 문제 11 ]

Telnet 에 5분 50초 동안 신호가 없을 시 해당 세션을 자동으로 종료하도록 라우터 설정.

더보기

 

en

conf t

line vty 0 4

exec-timeout 05 50

login

exit

exit

copy r s


[ 문제 12 ]
Router1 console의 패스워드를 ICQACon 으로 설정하고 저장

더보기

 

en

conf t

line con 0

password ICQACon

login

exit

exit

copy r s


[ 문제 13 ]

Router2의 Interface Serial 0 을 활성화 시키고 저장.

더보기

 

en

conf t

int serial0

no shutdown

exit

exit

copy r s


[ 문제 14 ]

HostName 을 soobin로 변경하고, Console 0 의 비밀번호를 1234 로 변경하고 로그인.

더보기

 

en

conf t

hostname soobin

line con 0

password 1234

login

exit

exit

copy r s

 


 

728x90
반응형