设为首页收藏本站language→→ 语言切换

鸿鹄论坛

 找回密码
 论坛注册

QQ登录

先注册再绑定QQ

查看: 1633|回复: 6
收起左侧

CatOS下定义VLAN

[复制链接]
发表于 2010-8-29 12:32:47 | 显示全部楼层 |阅读模式
 Step 1 Before you can create a VLAN, the switch must be in VTP server mode or VTP transparent mode. If the switch is a VTP server, you must define a VTP domain name before you can add any VLANs. This has to be defined regardless of the number of switches in the network (one or many), or whether or not you will be using VTP to propagate VLANs to other switches in the network. For details on VTP, please refer to the Understanding and Configuring VLAN Trunk Protocol (VTP) document.
  
  The default VTP configuration on the switch is as follows:
  
  
  CatosSwitch> (enable) show vtp domain
  Domain Name Domain Index VTP Version Local Mode Password
  -------------------------------- ------------ ----------- ----------- ----------
  1 2 server -
  
  Vlan-count Max-vlan-storage Config Revision Notifications
  ---------- ---------------- --------------- -------------
  5 1023 0 disabled
  
  Last Updater V2 Mode Pruning PruneEligible on Vlans
  --------------- -------- -------- -------------------------
  0.0.0.0 disabled disabled 2-1000
  
  
  Use the set vtp command to set the domain name and mode.
  
  
  CatosSwitch> (enable) set vtp domain ?
   Domain name
  CatosSwitch> (enable) set vtp domain cisco ?
  mode Set VTP mode
  passwd Set VTP password
  pruning Set VTP pruning
  v2 Set VTP version 2
  
  CatosSwitch> (enable) set vtp domain cisco mode ?
  client VTP client mode
  server VTP server mode
  transparent VTP transparent mode
  CatosSwitch> (enable) set vtp domain cisco mode server
  VTP domain cisco modified
  
  Step 2 Verify VTP configuration by using the show vtp domain command.
  
  
  CatosSwitch> (enable) show vtp domain
  Domain Name Domain Index VTP Version Local Mode Password
  -------------------------------- ------------ ----------- ----------- ----------
  cisco 1 2 server -
  
  Vlan-count Max-vlan-storage Config Revision Notifications
  ---------- ---------------- --------------- -------------
  5 1023 1 disabled
  
  Last Updater V2 Mode Pruning PruneEligible on Vlans
  --------------- -------- -------- -------------------------
  0.0.0.0 disabled disabled 2-1000
  
  If you have the output of a show vtp domain command from your Cisco device, you can use Output Interpreter to display potential issues and fixes. To use Output Interpreter , you must be a registered user, be logged in, and have JavaScript enabled.
  
  Step 3 Once the VTP domain has been set and verified, you can begin to create VLANs on the switch. By default, there is only a single VLAN for all ports, and this VLAN is called the default. VLAN1 cannot be renamed or deleted.
  
  You can use the show vlan command to display the parameters for all configured VLANs in the administrative domain, as shown below:
  
  
  CatosSwitch> (enable) show vlan
  VLAN Name Status IfIndex Mod/Ports, Vlans
  ---- -------------------------------- --------- ------- ------------------------
  1 default active 5 1/1-2
  3/1-48
  4/1-16
  1002 fddi-default active 6
  1003 token-ring-default active 9
  1004 fddinet-default active 7
  1005 trnet-default active 8
  
  
  VLAN Type SAID MTU Parent RingNo BrdgNo Stp BrdgMode Trans1 Trans2
  ---- ----- ---------- ----- ------ ------ ------ ---- -------- ------ ------
  1 enet 100001 1500 - - - - - 0 0
  1002 fddi 101002 1500 - - - - - 0 0
  1003 trcrf 101003 1500 - - - - - 0 0
  1004 fdnet 101004 1500 - - - - - 0 0
  1005 trbrf 101005 1500 - - - ibm - 0 0
  
  
  VLAN DynCreated RSPAN
  ---- ---------- --------
  1 static disabled
  1002 static disabled
  1003 static disabled
  1004 static disabled
  1005 static disabled
  
  
  VLAN AREHops STEHops Backup CRF 1q VLAN
  ---- ------- ------- ---------- -------
  1003 7 7 off
  
  To create VLANs, use the set vlan command, as show below:
  
  
  CatosSwitch> (enable) set vlan
  Usage: set vlan
  (An example of mod/port is 1/1,2/1-12,3/1-2,4/1-12)
  set vlan [name ] [type ] [state ]
  [pvlan-type ]
  [said ] [mtu ] [ring ]
  [decring ]
  [bridge ] [parent ]
  [mode ] [stp ]
  [translation ] [backupcrf ]
  [aremaxhop ] [stemaxhop ]
  [rspan]
  (name = 1..32 characters, state = (active, suspend)
  type = (ethernet, fddi, fddinet, trcrf, trbrf)
  said = 1..4294967294, mtu = 576..18190
  pvlan-type = (primary,isolated,community,none)
  hex_ring_number = 0x1..0xfff, decimal_ring_number = 1..4095
  bridge_number = 0x1..0xf, parent = 2..1005, mode = (srt, srb)
  stp = (ieee, IBM, auto), translation = 1..1005
  hopcount = 1..13)
  Set vlan commands:
  ----------------------------------------------------------------------------
  set vlan Set vlan information
  set vlan mapping Map an 802.1q vlan to an Ethernet vlan
  
  
  CatosSwitch> (enable) set vlan 2 name cisco_vlan_2
  Vlan 2 configuration successful
  
  Note: You can verify the VLAN configuration by using the show vlan command, as shown below:
  
  
  CatosSwitch> (enable) show vlan
  VLAN Name Status IfIndex Mod/Ports, Vlans
  ---- -------------------------------- --------- ------- ------------------------
  1 default active 5 1/1-2
  3/1-48
  4/1-16
  2 cisco_vlan_2 active 75
  1002 fddi-default active 6
  1003 token-ring-default active 9
  1004 fddinet-default active 7
  1005 trnet-default active 8
  
  
  VLAN Type SAID MTU Parent RingNo BrdgNo Stp BrdgMode Trans1 Trans2
  ---- ----- ---------- ----- ------ ------ ------ ---- -------- ------ ------
  1 enet 100001 1500 - - - - - 0 0
  2 enet 100002 1500 - - - - - 0 0
  1002 fddi 101002 1500 - - - - - 0 0
  1003 trcrf 101003 1500 - - - - - 0 0
  1004 fdnet 101004 1500 - - - - - 0 0
  1005 trbrf 101005 1500 - - - IBM - 0 0
  
  (Output Suppressed...)
  
  Step 4 If you want to add ports to the VLAN, use the set vlan ... command.
  
  
  CatosSwitch> (enable) set vlan 2 3/1-12
  VLAN 2 modified.
  VLAN 1 modified.
  VLAN Mod/Ports
  ---- -----------------------
  2 3/1-12
  15/1
  
  Note: You can also create the VLAN and add the ports to that VLAN with all the information in a single command.
  
  For example, if you want to create the third VLAN and then assign ports 3/13-3/15 to that VLAN, use the following command:
  
  
  CatosSwitch> (enable) set vlan 3 3/13-15
  Vlan 3 configuration successful
  VLAN 3 modified.
  VLAN 1 modified.
  VLAN Mod/Ports
  ---- -----------------------
  3 3/13-15
  15/1
  
  Step 5 Verify VLAN configuration by using show vlan command.
  
  
  CatosSwitch> (enable) show vlan
  VLAN Name Status IfIndex Mod/Ports, Vlans
  ---- -------------------------------- --------- ------- ------------------------
  1 default active 5 1/1-2
  3/16-48
  4/1-16
  2 cisco_vlan_2 active 75 3/1-12
  3 VLAN0003 active 76 3/13-15
  1002 fddi-default active 6
  1003 token-ring-def
发表于 2010-10-16 14:02:57 | 显示全部楼层
哇。。。全是英文哦
沙发 2010-10-16 14:02:57 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-3-5 22:59:56 | 显示全部楼层
分享了!
板凳 2012-3-5 22:59:56 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-11-14 22:06:43 | 显示全部楼层
为什么全是英文啊???
地板 2012-11-14 22:06:43 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2012-11-14 22:11:42 | 显示全部楼层
说真的,只看懂了一点点啊,,,
5# 2012-11-14 22:11:42 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2013-1-29 14:20:41 | 显示全部楼层
O(∩_∩)O谢谢
6# 2013-1-29 14:20:41 回复 收起回复
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2024-5-19 18:45 , Processed in 0.067073 second(s), 10 queries , Redis On.  

  Powered by Discuz!

  © 2001-2024 HH010.COM

快速回复 返回顶部 返回列表