实现两台交换机划分VLAN配置

  • 格式:doc
  • 大小:400.00 KB
  • 文档页数:6

下载文档原格式

  / 8
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

实验九:两台交换机划分VLAN配置

实验目标:

理解虚拟VLAN基本配置;

掌握一般交换机按端口划分VLAN的配置方法;

掌握Tag VLAN配置方法

实验背景:

某一公司内财务部,销售部的PC通过2台交换机实现通信:要求财务部和销售部的PC机可以互通,但是为了数据安全起见,销售部和财务部需要进行互相隔离,现要在交换机上做适当配置来实现这一标准。

技术原理:

VLAN是指在一个物理网段内,进行逻辑的划分,划分成若干个虚拟局域网,VLAN最大的特性是不受物理位置的限制,可以进行灵活的划分。VLAN具备了一个物理网段所具备的特性。相同VLAN内的主机之间可以直接通信,不同VLAN间的主机之间相互访问必须经路由设备进行转发,广播数据包只可以在本VLAN内进行广播,不能传输到其他VLAN中。

portVLAN是实现VLAN的方式之一,他利用交换机的端口进行VLAN划分,一个端口只能属于一个VLAN。

实验步骤:新建packet tracer拓扑图

划分VLAN

将端口划分到相应VLAN中

设置VLAN Trunk属性

测试

实验设备:

Switch_2960 2台;PC4台;直连线

交换机和PC机配置过程如下:

Switch>en

Switch#conf t

Enter configuration commands, one per line. End with CNTL/Z.

Switch(config)#hostname Switch1

Switch1(config)#vlan 2

Switch1(config-vlan)#exit

Switch1(config)#vlan 3

Switch1(config-vlan)#exit

Switch1(config)#int f0/1

Switch1(config-if)#switchport access vlan 2

Switch1(config-if)#exit

Switch1(config)#int f0/2

Switch1(config-if)#switchport access vlan 3

Switch1(config-if)#exit

Switch1(config)#int f0/24

Switch1(config-if)#switchport mode trunk

(红色的是交换机自动生成的参数代码)

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to up

Switch(config-if)#end

%SYS-5-CONFIG_I: Configured from console by console Switch#show vlan

Switch>en

Switch#conf t

Switch(config)#hostname Switch2

Switch2(config)#vlan 2

Switch2(config-vlan)#exit

Switch2(config)#vlan 3

Switch2(config-vlan)#exit

Switch2(config)#int f0/1

Switch2(config-if)#switchport access vlan 2 Switch2(config-if)#exit

Switch2(config)#int f0/2

Switch2(config-if)#switchport access vlan 3 Switch2(config-if)#exit

Switch2(config)#int f0/24

Switch2(config-if)#switchport mode trunk

(红色的是交换机自动生成的参数代码)

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/24, changed state to up

Switch2(config-if)#end

%SYS-5-CONFIG_I: Configured from console by console Switch2#show vlan

四台PC机的配置省略!!!

测试:分别去测试PC1和PC3是通的,PC2和PC4是通的,其他都不通。