본문 바로가기

네트워크

Cisco Packet Tracer (패킷 트레이서) 2- 라우터 3대 IP할당

설정파일 :

부팅할때 설정파일 _>RAM메모리에 올림 startup-config

메모리에 올라와있는 설정파일 running-config (RAM) 전원 끄면 없어짐 ,저장해야함

show run 메모리에 저장되어있는 config를 보여줌

Router#show ip interface brief 라우터 인터페이스를 간결하게 보여줌

 

 

 

 

 

 

 

 

Sungsu_R fa0/0 120.1.2.126 255.255.255.128

Sungsu_R fa0/1 120.1.2.241 255.255.255.248

KunDae_R fa0/0 120.1.2.190 255.255.255.192

KunDae_R fa1/0 120.1.2.246 255.255.255.248

KunDae_R fa1/1 120.1.2.249 255.255.255.248

Guui_R fa0/0 120.1.2.222 255.255.255.224

Guui_R fa1/0 120.1.2.254 255.255.255.248

Guui_R fa0/1 120.1.2.238 255.255.255.240

 

 

 

 

R1

Router>en

Router#conf t

Router(config)#hostname Sungsu_R

Sungsu_R(config)#int fa 0/1

Sungsu_R(config-if)#ip address 120.1.2.241 255.255.255.248

Sungsu_R(config-if)#no shutdown

KunDae_R(config-if)#exit

 

Sungsu_R(config)#int fa 0/0

Sungsu_R(config-if)#ip address 120.1.2.126 255.255.255.128

Sungsu_R(config-if)#no shutdown

KunDae_R(config-if)#exit

 

 

 

 

R2

Router>en

Router#conf t

Router(config)#hostname KunDae_R

KunDae_R(config)#interface fa1/0

KunDae_R(config-if)#ip address 120.1.2.246 255.255.255.248

KunDae_R(config-if)#no shutdown

KunDae_R(config-if)#exit

 

KunDae_R(config)#int fa 0/0

KunDae_R(config-if)#ip address 120.1.2.190 255.255.255.192

KunDae_R(config-if)#no sh

KunDae_R(config-if)#exit

 

KunDae_R(config)#int fa 1/1

KunDae_R(config-if)#ip address 120.1.2.249 255.255.255.248

KunDae_R(config-if)#no sh

KunDae_R(config)#ex

KunDae_R#wr

 

 

R3

Router>en

Router#conf terminal

Router(config)#hostname Guui_R

Guui_R(config)#int fa 1/0

Guui_R(config-if)#ip address 120.1.2.254 255.255.255.248

Guui_R(config-if)#no shutdown

Guui_R(config-if)#ex

 

Guui_R(config)#int fa 0/0

Guui_R(config-if)#ip add 120.1.2.222 255.255.255.224

Guui_R(config-if)#no shutdown

Guui_R(config-if)#ex

 

Guui_R(config)#int fa 0/1

Guui_R(config-if)#ip address 120.1.2.238 255.255.255.240

Guui_R(config-if)#no sh

Guui_R(config-if)#ex

Guui_R(config)#ex

Guui_R#wr

 

 

 

PC0

IP Address  120.1.2.2

Subnet mask  255.255.255.128

Default Gateway 120.1.2.126

 

PC1

IP Address  120.1.2.3

Subnet mask  255.255.255.128

Default Gateway 120.1.2.126

 

PC2

IP Address  120.1.2.130

Subnet mask  255.255.255.192

Default Gateway 120.1.2.190

 

PC3

IP Address  120.1.2.131

Subnet mask  255.255.255.192

Default Gateway 120.1.2.190

 

PC4

IP Address  120.1.2.194

Subnet mask  255.255.255.224

Default Gateway 120.1.2.222

 

PC5

IP Address  120.1.2.194

Subnet mask  255.255.255.224

Default Gateway 120.1.2.222

 

PC6

IP Address  120.1.2.226

Subnet mask  255.255.255.240

Default Gateway 120.1.2.238

 

PC7

IP Address  120.1.2.227

Subnet mask  255.255.255.240

Default Gateway 120.1.2.238

 

IP 할당을 해준 후 PC0에서 PC6으로 ping을 보내봅니다

 

같은 네트워크 대역이 아니므로 ping이 가지 않습니다.(Sungsu_R 라우팅 테이블에 Network D 대역이 없기 때문)

PC0에서 PC6으로 ping이 가게 하려면 라우팅 테이블에 네트워크 대역을 따로 설정해주어야 합니다.

 

daaa0555.tistory.com/33

 

Cisco Packet Tracer (패킷 트레이서) 3 -Static Routing 설정하기

Network A 120.1.2.0/25 Network B 120.1.2.128/26 Network C 120.1.2.192/27 Network D 120.1.2.224/28 Network E 120.1.2.240/29 Network F 120.1.2.248/29 C - connected Sungsu_R#show ip route C 120.1.2.0/..

daaa0555.tistory.com

->Static Routing 설정하기