博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vlan基本命令配置 trunk链路配置
阅读量:5077 次
发布时间:2019-06-12

本文共 3280 字,大约阅读时间需要 10 分钟。

1 案例1:vlan基本命令

1.1 问题

1)在交换机上创建vlan10,修改名称为web并查看vlan配置

2)删除vlan10,查看vlan配置

3)创建vlan20,将端口f0/1加入此vlan,查看vlan配置

4)将f0/1从vlan20中删除,查看vlan配置

1.2 步骤

实现此案例需要按照如下步骤进行

步骤一:在交换机上创建vlan10,修改名称为web并查看vlan配置

  1. Switch>enable
  2. Switch#configure terminal
  3. Switch(config)#vlan 10
  4. Switch(config-vlan)#name web
  5. Switch(config-vlan)#end
  6. Switch#show vlan brief

步骤二:删除vlan10,查看vlan配置

  1. Switch#configure terminal
  2. Switch(config)#no vlan 10
  3. Switch(config)#end
  4. Switch#show vlan brief

步骤三:创建vlan20,将f0/1端口加入此vlan,查看vlan配置

  1. Switch#configure terminal
  2. Switch(config)#vlan 20
  3. Switch(config-vlan)#exit
  4. Switch(config)#interface fastethernet 0/1
  5. Switch(config-if)#switchport access vlan 20
  6. Switch(config)#end
  7. Switch#show vlan brief

步骤四:将f0/1端口从vlan20中删除,查看vlan配置

  1. Switch#configure terminal
  2. Switch(config)#interface fastethernet 0/1
  3. Switch(config-if)#no switchport access vlan 20
  4. Switch(config)#end
  5. Switch#show vlan brief

2 2 案例2:vlan基本配置

2.1 问题

在交换机上创建以下vlan,按照拓扑图-1将端口加入到指定的vlan并配置服务器IP地址,实现通vlan主机的通信

图-1

2.2 步骤

  1. Switch>enable
  2. Switch#configure terminal
  3. Switch(config)#vlan 2
  4. Switch(config-vlan)#vlan 3
  5. Switch(config-vlan)#exit
  6. Switch(config)#interface range fastEthernet 0/3-4
  7. Switch(config-if-range)#switchport access vlan 2
  8. Switch(config-vlan)#exit
  9. Switch(config)#interface range fastEthernet 0/5-6
  10. Switch(config-if-range)#switchport access vlan 3
  11. Switch#show vlan brief

3 3 案例3:跨交换机同vlan通信

3.1 问题

通过配置交换机实现图-2中的vlan主机互通

图-2

3.2 步骤

S1配置

  1. Switch#configure terminal
  2. Switch(config)#interface fastethernet 0/7
  3. Switch(config-if)#switchport access vlan 3

S2配置

  1. Switch>enable
  2. Switch#configure terminal
  3. Switch(config)#vlan 3
  4. Switch(config-vlan)#exit
  5. Switch(config)#interface range fastEthernet 0/5-7
  6. Switch(config-if-range)#switchport access vlan 3

4 4 案例4:trunk链路配置

4.1 问题

如图-3所示

1)配置s1的f0/1端口为trunk模式,分别查看两台交换机f0/1端口的状态

2)恢复s1的f0/1端口为默认模式,分别查看两台交换机f0/1端口的状态

图-3

4.2 步骤

配置s1的f0/1口为trunk模式,分别查看两台交换机f0/1端口状态

  1. Switch>enable
  2. Switch#configure terminal
  3. Switch(config)#interface fastEthernet 0/1
  4. Switch(config-if)#switchport mode trunk
  5. Switch(config-if)#end
  6. Switch#show interfaces fastEthernet 0/1 switchport

恢复s1的f0/1口为默认模式,分别查看两台交换机f0/1端口状态

  1. Switch#configure terminal
  2. Switch(config)#interface fastEthernet 0/1
  3. Switch(config-if)#no switchport mode trunk
  4. Switch#show interfaces fastEthernet 0/1 switchport

5 5 案例5:多vlan跨交换机通信

5.1 问题

通过配置实现跨交换机的同vlan通信,如图-4所示

图-4

5.2 步骤

注:以下配置需要在练习3的基础上完成

S1配置

  1. Switch>enable
  2. Switch#configure terminal
  3. Switch(config)#interface fastEthernet 0/7
  4. Switch(config-if)#switchport mode trunk

S2配置

  1. Switch>enable
  2. Switch#configure terminal
  3. Switch(config)#vlan 2
  4. Switch(config-vlan)#exit
  5. Switch(config)#interface range fastEthernet 0/3-4
  6. Switch(config-if-range)#switchport access vlan 2
  7. Switch(config-if-range)#exit
  8. Switch(config)#interface fastEthernet 0/7
  9. Switch(config-if)#switchport mode trunk

6 6 案例6:以太网通道

6.1 问题

参照图-5将交换机的f0/7-f0/9端口配置为以太网通道

图-5

6.2 步骤

S1配置

  1. Switch>enable
  2. Switch#configure terminal
  3. Switch(config)#interface range fastEthernet 0/7-9
  4. Switch(config-if-range)#channel-group 1 mode on
  5. Switch(config-if-range)#end
  6. Switch#show etherchannel summary

S2配置

  1. Switch>enable
  2. Switch#configure terminal
  3. Switch(config)#interface range fastEthernet 0/7-9
  4. Switch(config-if-range)#channel-group 1 mode on
  5. Switch(config-if-range)#end
  6. Switch#show etherchannel summary

转载于:https://www.cnblogs.com/tiki/p/10778738.html

你可能感兴趣的文章
JS取得绝对路径
查看>>
排球积分程序(三)——模型类的设计
查看>>
python numpy sum函数用法
查看>>
php变量什么情况下加大括号{}
查看>>
linux程序设计---序
查看>>
【字符串入门专题1】hdu3613 【一个悲伤的exkmp】
查看>>
C# Linq获取两个List或数组的差集交集
查看>>
HDU 4635 Strongly connected
查看>>
ASP.NET/C#获取文章中图片的地址
查看>>
Spring MVC 入门(二)
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>
这个看起来有点简单!--------实验吧
查看>>
PHP count down
查看>>
JVM参数调优:Eclipse启动实践
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>