2020. 5. 10.

[네트워크 관리사] 실기 라우터 설정 2 정리



문제 6 default gateway

기본 게이트웨이를 설정하시오. IP : 192.168.0.10
(완료된 설정은 'Router#copy running-config startup-config'를 사용하여 startup-config에 저장하고 이외 저장 명령어는 사용금지)

Router> en
# (enable) : 사용자 모드에서 관리자 모드로 전환

Router# conf t
# (configure terminal) : 관리자 모드에서 전역설정 모드로 전환

Router(config)# ip default-gateway 192.168.0.10
# 문제에 제시된 default-gateway IP 설정

Router(config)# exit
# 전역 설정 모드에서 나가기

Router# copy r s
#(copy running-config startup-config) : 저장 명령어

Router > en 
Router* conf t 
Enter configuration commands, one per line. 
End 
Router (config) # ip default-gateway 192. IEE..o.10 
Router (config) # exit 
with 
CNIL/Z. 
*sys-s-CONFIG 
. Configured from console by console 
Router* copy s 
Destination filename [startup-config) 
Building configuration...

확인
show running-config



문제 7 DHCP 서버 이름 변경

ROUTER1 DHCP 네트워크를 192.168.100.0/24 서버이름은 'icqa'로 설정하시오.
(완료된 설정은 'Router#copy running-config startup-config'를 사용하여 startup-config에 저장하고 이외의 저장 명령어는 사용금지)

Router> en
# (enable) : 사용자 모드에서 관리자 모드로 전환

Router# conf t
#(configure terminal) : 관리자 모드에서 전역설정 모드로 전환

Router(config)# ip dhcp pool icqa
# 문제에서 제시된 dhcp 서버 이름을 icqa로 설정

Router(dhcp-config)# network 192.168.100.0 255.255.255.0
# dhcp 서버 IP 주소 설정

Router(dhcp-config)# exit
# dhcp 설정에서 나가기

Router(config)# exit
# 전역 설정에서 나가기

Router# copy r s
#(copy running-config startup-config) : 저장 명령어

Router > en 
Router* conf t 
Enter configuration commands, 
Router (config) # ip dhcp pool 
Router network 
Router exit 
Router (config) # exit 
one per Line. 
1 cqa 
132.1Es.100.o 
*sys-s-CONFIG 
. Configured from console 
by 
End with CNIL/Z. 
ass.2ss.2ss.o 
console 
Router* copy s 
Destination filename [startup-config) 
Building configuration...

확인
show running-config



문제 8 텔넷 패스워드

ROUTER1 Telnet에 접근하는 Password icqa로 설정하고 로그인 하시오.
(완료된 설정은 'Router#copy running-config startup-config'를 사용하여 startup-config에 저장하고 이외 저장 명령어는 사용금지)

Router> en
# (enable) : 사용자 모드에서 관리자 모드로 전환

Router# conf t
# (configure terminal) : 관리자 모드에서 전역설정 모드로 전환

Router(config)# line vty 0 4
# 텔넷 설정 명령어(가상 터미널을 0~4까지 총 5개 사용하겠다의 의미)

Router(config-line)# password icqa
# 텔넷 패스워드를 icqa로 설정

Router(config-line)# login
# 텔넷 로그인

Router(config-line)# exit
# 텔넷 설정 모드에서 나가기

Router(config)# exit
# 전역설정 모드에서 나가기

Router# copy r s
# (copy running-cofig startup-config) : 저장 명령어

Router > en 
Router* conf t 
Enter configuration commands, 
Router (config) 
# line vCy 0 4 
Router (config-line) # password 
Router (config-line) # login 
Router (config-line) # exit 
Router (config) 
exit 
*sys-s-CONFIG 
one per 
1 cqa 
line. 
End 
with 
CNIL/Z. 
. Configured from console 
Router* copy s 
Destination filename [startup-config) 
Building configuration... 
by 
console

확인

show running-config

line vty 0 4 
Password icqa 
log in 
end


문제 9 텔넷 자동 세션 종료

텔넷 연결 후 3 50초 동안 입력이 없으면 세션이 자동 종료되도록 설정하시오.
(완료된 설정은 'Router#copy running-config startup-config'를 사용하여 startup-config에 저장하고 이외 저장 명령어는 사용금지)

Router> en
# (enable) : 사용자 모드에서 관리자 모드로 전환

Router# conf t
# (configure terminal) : 관리자 모드에서 전역설정 모드로 전환

Router(config)# line vty 0 4
# 텔넷 설정 명령어(가상 터미널을 0~4까지 총 5개 사용하겠다 의미)

Router(config-line)# exec-timeout 03 50
# 텔넷 3 50초 간 응답없으면 세션 연결 종료 설정 (03 50 = 3 50)

Router(config-line)# exit
# 텔넷 설정 모드에서 나가기

Router(config)# exit
#  전역설정 모드에서 나가기

Router# copy r s
# (copy running-config startup-config) : 저장 명령어

Router > en 
Router* conf t 
Enter configuration commands, one 
Router (config) # line vCy 0 4 
Router (config-line) # exec-timeout 
Router (config-line) # exit 
Router (config) # exit 
per line. 
os so 
End 
with 
CNIL/Z. 
*sys-s-CONFIG 
. Configured from console 
by 
console 
Router* copy s 
Destination filename [startup-config) 
Building configuration...

확인

show running-config

line vCy 0 4 
exec-timeout OS SO 
password icqa 
login


문제 10 콘솔 패스워드 설정

 ROUTER1 console 0의 패스워드를 ICQA로 설정하고 로그인하시오.
(완료된 설정은 'Router#copy running-config startup-config'를 사용하여 startup-config에 저장하고 이외 저장 명령어는 사용금지)

Router> en
# (enable) : 사용자 모드에서 관리자 모드로 전환

Router# conf t
# (configure terminal) : 관리자 모드에서 전역설정 모드로 전환

Router(config)# line console 0
# 문제에 제시된 console 0으로 이동

Router(config-line)# password ICQA
# 패스워드를 'ICQA'로 설정

Router(config-line)# login : console 0
# 로그인

Router(config-line)# exit
# console 0에서 나가기

Router(config)# exit
# 전역설정에서 나가기

Router# copy r s
# (copy running-config startup-config) : 저장 명령어

Router > en 
Router* conf t 
Enter configuration commands, one per 
Router (config) # line console O 
Router (config-line) # password ICQ 
Router (config-line) # console O 
Unrecogni zed command 
Router exit 
Router (config) # exit 
line. 
End 
with 
CNIL/Z. 
*sys-s-CONFIG 
. Configured from console 
by 
console 
Router* copy s 
Destination filename [startup-config) 
Building configuration...

확인

show running-config




댓글 없음:

댓글 쓰기