자격증 공부/네트워크관리사 2급

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

startonebyone 2022. 12. 5. 13:30

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

en / conf t

interface serial 2/0

bandwidth 2048

exit / exit / copy r s(#에서)

 

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

interface serial 2/0

clock rate 72000

 

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

interface fastethernet 0/0

description ICQA

나가고 나가서 관리자 모드에서 저장.copy r s

 

Router1Serial 2/0을 사용 가능하게 IP 주소를 192.168.0.101/24와 두 번째 IP 192.168.0.102/24로 설정하고 활성화 하세요.

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

ip default-gateway 192.168.0.10

exit / copy r s

 

Router1의 DHCP 네트워크를
192.168.100.0/24 서버 이름은 ‘icqa’로 설정하시오.

ip dhcp pool icqa

network 192.168.100.0 255.255.255.0

exit / exit / copy r s

Router1Telnet에 접근하는 Passwordicqa로 설정하고 로그인 하시오.

line vty 0 4

password icqa

login

exit / exit / copy r s

 

telnet 연결 후 3분 50초 동안 입력이 없으면 세션이 자동 종료되도록 설정하시오.

line vty 0 4

exec-timeout 03 50

exit / exit / copy r s

 

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

line console 0

password ICQA

login

exit / exit / copy r s

 

Router1 Serial 2/0을 활성화 시키시오.

interface serial 2/0

no shutdown

exit / exit / copy r s

 

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

hostname network2

line console 0

password route5

login

exit / exit / copy r s

 

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

en

show interface

copy r s

 

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

en

show user

end / copy r s

 

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

en

show ip route

end / copy r s

 

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

en

show flash

end / copy r s

 

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

en

show process

copy r s

 

아래와 같이 Router1Ethernet 0 인터페이스를 설정하고, NVRAM 에 저장하시오
- en
- conf t
- int e 0
- ip addr 192.168.200.2 255.255.255.252
- ip direct-broadcast
- exit
- exit
- copy r s

 

vty 0 4까지 ssh로 접속가능하도록 설정.

line vty 0 4

transport input ssh

 

access-list 만들어주는 명령어로, 1번이 라우터로 in, out 설정

ip access-group 1 in

ip access-group 1 out

 

ospf 설정

router ospf 1

network [ip] [wildmask] area [숫자]

 

Router2Serial 2/0frame relay 방식으로 설정하시오.

en

conf t

int se 2/0

encapsulation frame-relay

end

copy r s