본문 바로가기
네트워크관리사 2급

네트워크 관리사2급-라우터 명령어

by 웹하는빡통 2019. 12. 16.

네트워크 관리사2급-라우터 명령어 단골 문제 모음

 

===========================

ip/서브넷마스크 설정

ena
conf t
inter fa0/0
ip add 192.168.125.2 255.255.255.0
no shutdown
exit
exit
copy r s
===========================
대역폭 설정 문제
ex) serial 2/0의 대역폭을 설정하라
ena
conf t
interface serial 2/0
bandwidth 2048
exit 
exit
copy r s
============================
clock 설정 문제
ex) serial 2/0의 클럭속도를 72k로 설정하시오
ena 
conf t
interface serial 2/0
clock rate 72000
exit
exit
copy r s
============================
fastethernet 0/0의 description설정문제
ex)fastethernet 0/0의 description을 설정하시오 디스크립션:ICQA

ena
conf t
inter fa 0/0
description ICQA
exit
exit
copy r s
============================
secondary 문제
ex)serial 2/0을 사용가능하게 ip주소를 192.168.0.101/24와 두번째 ip
192.168.0.102/24로 설정하고 활성화하시오.

ena 
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
==============================
기본 게이트웨이 설정하는 문제
ex)기본 게이트웨이 ip 192.168.0.10을 설정하시오

ena
conf t
ip default-gateway 192.168.0.10
exit
copy r s
===============================
DHCP 설정문제
ex)DHCP네트워크를 192.168.100.0/24 서버이름은 icqa로 설정하시오

ena
conf t
ip dhcp pool icqa
network 192.168.100.0 255.255.255.0
exit
exit
copy r s 
==================================
라우터 텔넷 패스워드 설정 문제
ex) telnet에 접근하는 password를 icqa로 설정하고 로그인 하시오.  

en 
conf t
line vty 0 4(텔넷 설정 명령어) 
(가상터미널을 0~4까지 총 5개 사용할께라는 의미)
(config-line)#password icqa
(config-line)#login
exit
exit
copy r s
====================================
라우터 텔넷 세션 자동종료 설정 문제
ex)텔넷 연결 후 3분 50초 동안 입력이 없으면 세션이 자동 종료되도록 설정하시오.

en
conf t
line vty 0 4
exec-timeout 03 50 
exit
exit
copy r s
===================================
라우터 콘솔 패스워드 설정 문제
ex) console 0의 패스워드를 ICQA로 설정하고 로그인하시오.

en
conf t
line console 0
password ICQA
login
exit
exit
copy r s 
==================================
라우터 활성화 설정 문제
ex) serial 2/0을 활성화 시키시오.  

en
conf t
interface serial 2/0 
no shutdown(활성화문제니깐)
exit
exit
copy r s
==================================
라우터 default-network설정 문제
ex)default-network:192.168.0.10을 설정하시오

en
conf t
ip default-network 192.168.0.10
exit
copy r s
================================== 
호스트이름 설정 문제 + 콘솔 패스워드 변경 후 로그인
ex)hostname을 network2로 변경하고 console 0의 password를 route5로 변경 후 로그인하시오.  

en
conf t
hostname network2
line console 0
password route5
login
exit
exit
copy r s
======================================

댓글