1. 정보 확인하고 저장하기


- 테이블 정보를 확인하고 저장하기 -

en

show ip route

copy r s


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

en

show interface

copy r s


- 사용자 정보를 확인하고 저장 -

en

show user

copy r s


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

en

show process

copy r s


- 플래쉬 내용을 확인하고 저장 -

en

show flash

copy r s


- 소프트웨어 버전 조회 -

en

show version

copy r s



2.  설정후 저장하기

Interface fastethernet 0/0 의 IP와 Sub넷 설정

IP: 192.168.0.100/24 

fastethernet 활성화

 

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

 

DHCP 네트워크 IP: 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

 

Serial 2/0을 사용가능하게 IP주소를 변경
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

 

Serial 2/0의 대역폭을 2048로 설정

 

en
conf t
interface serial 2/0
bandwidth 2048
exit
exit
copy r s

 

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

 

en
conf t
line console 0
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

 

Telnet Password를 icqa로 설정 후 로그인

 

en
conf t
line vty 0 4
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

 

FastEthernet 0/0 Description 설정
Description(주석) : ICQA

 

en
conf t
interface fastethernet 0/0
description ICQA
exit
exit
copy r s
 
Serial 2/0의 클럭속도 72K로 설정
 
en
conf t
interface serial 2/0
clock rate 72000
exit
exit
copy r s
 
Hostname을 network2로 변경
console 0의 password를 route5로 변경
로그인
 
en
conf t
hostname network2
line console 0
password route5
login
exit
exit
copy r s


+ Recent posts