博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
计算机网络-vlan的创建
阅读量:5861 次
发布时间:2019-06-19

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

  hot3.png

单个交换机问题:

  1. 选设备

  2. 连线

  3. 配主机IP【IP配置位置,点击PC机小图标,下图】

    132349_a85B_1464493.jpg

  4. 配交换机

 //进入特权模式switch>enableswitch(config)#hostname s1//配置vlans1(config)#vlan 10s1(config-vlan)#vlan 20s1(config-vlan)#exits1# show vlan//添加端口s1(config)#int f0/1s1(config-if)#switchport mode access s1(config-if)#switchport access vlan 10//接着将其他PC 机配置到各自的vlan 10/20里面即可

133533_BGbF_1464493.png

5.    查看vlan主要概况

s1#show vlan brief



多个交换机问题:

  1. 选设备

  2. 连线

  3. 配主机IP【与上述配置基本一致】

  4. 配交换机

    vlan配置过程:

    1. 为所有交换机配置vtp:

      其中一个配置为服务器模式   

  switch1#vlan database    //并进入vlan配置模式switch1(vlan)#vtp domain csico //设置vtp的域switch1(vlan)#vtp password csico //设置vtp的域密码switch1(vlan)#vtp server//设置vtp的模式switch1(vlan)#vtp v2-mode//设置vtp的版本switch1(vlan)#exit        //退出该模式

 

             另一个配置为客户模式

 switch2#vlan database    //并进入vlan配置模式switch2(vlan)#vtp domain csico //设置vtp的域switch2(vlan)#vtp password csico //设置vtp的域密码switch2(vlan)#vtp client//设置vtp的模式switch2(vlan)#vtp v2-mode//设置vtp的版本switch2(vlan)#exit        //退出该模式

        2)   把交换机间互连的链路配置为trunk链路

  switch1(config)#interface fastethernet0/1    //进入端口配置模式switch1(config-if)#switchport mode trunk//设置端口为trunk类型switch1(config-if)#no shut  //激活
 switch2(config)#interface fastethernet0/1    //进入端口配置模式switch2(config-if)#switchport mode trunk//设置端口为trunk类型switch2(config-if)#no shut  //激活

     3)  与单个交换机的vlan配置相似

  switch#vlan database    //并进入vlan配置模式switch(vlan)#vlan 10 name chinese //新建vlan 10并设置名字……switch(vlan)#exit        //退出该模式
  //在每个交换机把端口添加到相应的vlan中,比如服务器端switch1就配置连接到他端口的PC机switch(config)#interface fastethernet0/1    //进入端口配置模式switch(config-if)#switchport mode access//设置端口为access类型switch(config-if)#switchport  access vlan 10 //把端口划分到vlan10……

135347_PhgW_1464493.png

转载于:https://my.oschina.net/L110/blog/405486

你可能感兴趣的文章
微信泡妞聊天技巧入门神贴
查看>>
事件对象兼容
查看>>
Java研发书单
查看>>
MFC Activex 开发、ocx打包成cab、部署、测试、自动升级
查看>>
Makefile文件语法
查看>>
【转】CentOS 6.5安装pyspider过程记录
查看>>
javascript事件流
查看>>
绑定select标签
查看>>
14.CSS入门
查看>>
python第二天
查看>>
java基础之面向对象和继承
查看>>
存储过程
查看>>
轻松理解AOP思想(面向切面编程)
查看>>
NetworkError: 404 Not Found - http://xxxxxxxx/xx-font.woff
查看>>
mysql存储过程详细讲解及完整实例下载
查看>>
mysql 触发器(trigger)
查看>>
(转)Ehcache 整合Spring 使用页面、对象缓存
查看>>
centos7系统下安装php-fpm并配置nginx支持并开启网站gzip压缩
查看>>
经典面试题 atoi&itoa
查看>>
#113. 【UER #2】手机的生产
查看>>