Inter-VLAN Routing (Router-on-a-stick)

 

Router-on-a-stick

 

Router-on-a-stick ( Config แบบแบ่ง interface router เป็นแบบย่อยๆเชื่อมต่อเข้ากับ Trunk port L2 Switch)

Router-on-a-stick

 

 

ขั้นตอนการ config router interface เพื่อให้ network address ต่างกันหากันเจอ

 

1. SW2  Set Trunk port ( interface gigabitEthernet 0/2) เพื่อมาเชื่อมต่อกับ  Router R1 ( interface gigabitEthernet 0/1) 

SW2(config)#interface gigabitEthernet 0/2

SW2(config-if)#switchport mode trunk

 

2. Router R1  Config interface gigabitEthernet 0/1  ออกเป็น network ย่อย

 

2.1ทำการเปิดการใช้งาน interface gigabitEthernet 0/1   โดยไม่ต้องตั้งค่าaddress

R1(config)#interface gigabitEthernet 0/1

R1(config-if)#no shutdown

 

2.2 ทำการแบ่ง interface ย่อย กำหนดค่า encapsulation และ address Gateway ในแต่ละ VLAN

R1(config)#interface GigabitEthernet 0/1.10

R1(config-subif)#encapsulation dot1q 10

R1(config-subif)#ip address 192.168.10.1 255.255.255.0

R1(config-subif)#exit

 

R1(config)#interface GigabitEthernet 0/1.20

R1(config-subif)#encapsulation dot1q 20

R1(config-subif)#ip address 192.168.20.1 255.255.255.0

R1(config)#interface GigabitEthernet0/1.30

R1(config-subif)#encapsulation dot1q 30

R1(config-subif)#ip address 192.168.30.1  255.255.255.0

“encapsulation dot1q 30” คือค่า VLAN ID ที่ทำงานบน interfaceนี้

R1#show interface GigabitEthernet 0/1.10   //ไว้ใช้ดูรายละเอียดของ sub interface

 

2.3 กำหนด ip address ให้ interface  GigabitEthernet 0/0 เพื่อเชื่อมต่อไปยัง network อื่น

R1(config)#interface gigabitEthernet 0/0

R1(config-if)#ip address 199.199.199.1 255.255.255.252

R1(config-if)#no shutdown

Router-on-a-stick

 

3.Config routing protocols RIP Version 2 ให้ router R1

R1(config)#router rip

R1(config-router)#version 2

R1(config-router)#no auto-summary

R1(config-router)#network 192.168.10.1

R1(config-router)#network 192.168.20.1

R1(config-router)#network 192.168.30.1

R1(config-router)#network 199.199.199.0

 

 

ตรวจสอบ configuration ของ router R1  มีการเชื่อมต่อกับ เครือข่ายอื่นตามที่ต้องการ

Router-on-a-stick

 

ผลการทดสอบ เครื่อง server และ computer PC0 – PC5  ทุกเครื่อง ping กันเจอ

Router-on-a-stick

 

Router-on-a-stick

ประเภทเนื้อหาของ article
Computer Network
Rating
No votes yet