免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1254 | 回复: 1
打印 上一主题 下一主题

CatOS下定义VLAN [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-09-16 16:40 |只看该作者 |倒序浏览
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

论坛徽章:
0
2 [报告]
发表于 2008-09-16 16:41 |只看该作者
(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-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

3 enet 100003 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...)

To remove ports from a VLAN, use the set vlan ... command and place the ports in a different VLAN. This is essentially what you are doing when you assign a port to any VLAN, because the ports initially belonged to VLAN 1.

To delete the VLAN, use the clear vlan command, but the ports will remain a part of that VLAN and be deactivated because they no longer belong to any VLAN. The switch will display a warning and give you the opportunity to cancel the current request.

CatosSwitch> (enable) clear vlan 3

This command will deactivate all ports on vlan 3

in the entire management domain.

Do you want to continue(y/n) [n]?y

Vlan 3 deleted

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

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...)

Note: Ports 3/13-3/15 are not displayed in the above show vlan command, as they are deactivated by the removal of VLAN 3. Unless you add them back in any other VLAN, they will not be displayed.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP