'Basic Connectivity'에 해당되는 글 1건

[실습] LAB 1 Basic Conncectivity :: 2008/07/20 13:31

실습 예제

Packet Tracer


LAB1.pkt

Packet Tracer File


1. 라우터에 호스트 네임을 설정하여라.

Router> enable
Router# conf t
Router(config)# hostname Rack0xRy
Rack0xRy(config)#


2. 라우터에 다음과 같은 패스워드를 설정하여라.

  - Enable Secret : 'cisco'로 설정하여라.
  - Enable Password : 'ciscofan'으로 설정하여라.
  - Console : 패스워드는 'ciscocon'으로 설정하여라.
  - Aux : 패스워드는 'ciscoaux'로 설정하여라.
  - Vty : 패스워드는 'ciscotel'로 설정하여라.

RackxRy(config)# enable secret cisco
RackxRy(config)# enable password ciscofan

RackxRy(config)# line console 0
RackxRy(config-line)# login
RackxRy(config-line)# password ciscocon
RackxRy(config-line)# exit
RackxRy(config)#

RackxRy(config)# line aux 0
RackxRy(config-line)# login
RackxRy(config-line)# password ciscoaux
RackxRy(config-line)# exit
RackxRy(config)#

RackxRy(config)# line vty 0 4
RackxRy(config-line)# login
RackxRy(config-line)# password ciscotel
RackxRy(config-line)# exit
RackxRy(config)#

### 설정이 완료되었다면, User Mode로 가서 'show running-config' Command를 이용하여 설정 사항을 확인하여라.


3. 라우터 Ethernet 0에 IP 주소를 설정하여라. 이때, x는 조번호, y는 라우터 번호이다.

- R1

Rack0xR1(config)# interface loopback 0
Rack0xR1(config-if)# ip address x.x.1.1 255.255.255.0
Rack0xR1(config-if)# exit
Rack0xR1(config)#

- R2

Rack0xR2(config)# interface loopback 0
Rack0xR2(config-if)# ip address x.x.2.1 255.255.255.0
Rack0xR2(config-if)# exit
Rack0xR2(config)#

- R3

Rack0xR3(config)# interface loopback 0
Rack0xR3(config-if)# ip address x.x.3.1 255.255.255.0
Rack0xR3(config-if)# exit
Rack0xR3(config)#

### 설정이 완료되었다면, User Mode로 가서 'show running-config' Command를 이용하여 설정 사항을 확인하여라.
### 설정이 완료되었다면, User Mode로 가서 'show ip interface brief' Command를 이용하여 인터페이스 상태를 확인하여라.


4. 다음 조건을 읽고 설정을 실시하여라.


- 각각의 라우터 Serial 인터페이스를 사용하는 WAN 구간 Point-to-Point 환경에는 Layer 2 계층 WAN구간 프로토콜인 'HDLC'를 사용하여라.
  - 위의 그림을 보고 각각의 라우터 Serial 인터페이스에 IP 주소를 설정하고, 인터페이스를 활성화하여라.
  - R1의 Serial 0 인터페이스에는 V.35 DCE Type 케이블을 연결이 되어있기때문에 Clock Rate 값을 설정하여라.
  - R2의 Serial 0 인터페이스에는 V.35 DCE Type 케이블을 연결이 되어있기때문에 Clock Rate 값을 설정하여라.

- R1

Rack0xR1(config)# interface serial 0
Rack0xR1(config-if)# encapsulation hdlc  <- 않해도 자동으로 시작됨
Rack0xR1(config-if)# ip address x.x.12.1 255.255.255.0
Rack0xR1(config-if)# clock rate 64000
Rack0xR1(config-if)# no shutdown
Rack0xR1(config-if)# exit
Rack0xR1(config)#

- R2

Rack0xR2(config)# interface serial 1
Rack0xR2(config-if)# encapsulation hdlc  <- 않해도 자동으로 시작됨
Rack0xR2(config-if)# ip address x.x.12.2 255.255.255.0
Rack0xR2(config-if)# no shutdown
Rack0xR2(config-if)# exit
Rack0xR2(config)# interface serial 0
Rack0xR2(config-if)# encapsulation hdlc  <- 않해도 자동으로 시작됨
Rack0xR2(config-if)# ip address x.x.23.2 255.255.255.0
Rack0xR2(config-if)# clock rate 64000
Rack0xR2(config-if)# no shutdown

- R3

Rack0xR3(config)# interface serial 1
Rack0xR3(config-if)# encapsulation hdlc  <- 않해도 자동으로 시작됨
Rack0xR3(config-if)# ip address x.x.23.3 255.255.255.0
Rack0xR3(config-if)# no shutdown
Rack0xR3(config-if)# exit
Rack0xR3(config)#

### 설정이 완료되었다면, User Mode로 가서 'show running-config' Command를 이용하여 설정 사항을 확인하여라.
### 설정이 완료되었다면, User Mode로 가서 'show ip interface brief' Command를 이용하여 인터페이스 상태를 확인하여라.
### 설정이 완료되었다면, User Mode로 가서 'show ip route' Command를 이용하여 라우팅 테이블을 확인하여라.


5. 설정이 완료되었다면, 다음과 같은 정보 확인을 실시하여라.

  - 각각의 라우터에서 'show running-config' Command를 이용하여 설정 사항을 확인하여라.
  - 각각의 라우터에서 'show ip interface brief' Command를 이용하여 인터페이스 상태를 확인하여라.
  - 각각의 라우터에서 'show ip route' Command를 이용하여 라우팅 테이블을 확인하여 'C'라는 코드의 커넥터 경로 정보를 확인하여라.
  - 각각의 라우터들은 상대방 인접 라우터 인터페이스로 Ping 테스트를 실시하여라.


2008/07/20 13:31 2008/07/20 13:31
Name
Password
Homepage
Secret