單臂路由的應用

2021-10-22 05:05:21 字數 3134 閱讀 2745

1、 實驗目的

通過本實驗可以:

掌握交換機上 vlan 的建立和劃分

掌握 trunk 的作用

掌握 vtp 的作用與配置

掌握單臂路由原理與配置

理解 trunk 鏈路上的 802.1q 標記的作用

2、 拓撲結構

3、 實驗需求

參照邏輯拓撲,使用合適的線纜完成物理拓撲的搭建

在 switch1 上建立兩個 vlan,vlan10 和 vlan20,並將 vlan10 命名

為 sales,將 vlan20 命名為 engineers

完成必要的配置,實現兩交換的 vlan 資料庫同步,並使用相關命令驗證和檢視 vlan 資料庫的資訊

將連線 pc1 和 pc3 的交換埠劃分進 vlan10,將連線 pc2 的交換埠

劃分進 vlan20 中,並為各 pc 配置合適的 ip 位址和閘道器

5)使用 show vlan brief 檢視各交換機的 vlan 介面資訊

6)測試各主機之間的連通性

此時pc1 ping不通pc2

在交換機和路由器上完成必要的配置,實現各主機間可以互相通訊

此時,全部pc都可以通訊。

sw1的配置:

switch(config)#vlan 10

switch(config-vlan)#exi

switch(config)#vlan 20

switch(config-vlan)#exi

switch(config)#vlan 10

switch(config-vlan)#name sales

switch(config-vlan)#vlan 20

switch(config-vlan)#name engineers

switch(config)#vtp domain a

switch(config)#vtp password 123

switch(config)#vtp mode server

switch(config)#int f0/3

switch(config-if)#switchport trunk encapsulation dot1q

switch(config-if)#switchport mode trunk

switch(config)#int f0/1

switch(config-if)#switchport mode access

switch(config-if)#switchport access vlan 10

switch(config-if)#int f0/2

switch(config-if)#switchport mode access

switch(config-if)#switchport access vlan 20

switch(config)#int f0/4

switch(config-if)#switchport trunk encapsulation dot1q

switch(config-if)#switchport mode trunk

sw2的配置:

switch(config)#vtp domain a

switch(config)#vtp password 123

switch(config)#vtp mode client

switch(config)#int f0/3

switch(config-if)#switchport trunk encapsulation dot1q

switch(config-if)#switchport mode trunk

switch(config)#int f0/1

switch(config-if)#switchport mode access

switch(config-if)#switchport access vlan 10

r1的配置:

router(config)#int f0/1

router(config-if)#no sh

router(config-if)#int f0/1.10

router(config-subif)#encapsulation dot1q 10

router(config-subif)#ip address 192.168.10.254 255.255.255.0

router(config)#int f0/1.20

router(config-subif)#encapsulation dot1q 20

router(config-subif)#ip address 192.168.20.254 255.255.255.0

由於沒有pc機映象,所以用路由器來當作pc機(路由器的路由功能關閉之後相當於pc機)。

hybrid應用和單臂路由技術

一 hybrid 混合埠 1 啟動裝置,設定pc3 pc4的ip位址和子網掩碼 client1 client2 server1的ip位址 2 設定sw2引數 undo terminal monitor 關閉彈窗 system view 進入系統試圖 huawei user inte ce conso...

單臂路由練習

使用單臂路由實現vlan間通訊 給交換機配置名字 使用單臂路由實現vlan間通訊 router0配置 router config int f0 0 router config if no shutdown router config if ex router config int f0 0.1 ro...

單臂路由實驗

1.按圖配置pc的ip位址和閘道器位址 2.在s1交換機上建立vlan10和vlan20,分別把介面加入到vlan,並設定串列埠型別允許vlan10和20通過 3.在r1路由器上配置子介面 4.驗證網路是否連通 1.按要求配置pc的ip位址和閘道器 略 2.在s1交換機上建立vlan10和20,分別...