思科2950交换机相关配置
- 格式:docx
- 大小:22.46 KB
- 文档页数:11
3、3、Catalyst 2950交换机常用命令Catalyst 2950系列交换机Catalyst 2950系列交换机是Cisco公司生产的以太网交换机,它主要用于10M以太网或100M 快速以太网,通常作为接入层交换机使用。
Catalyst 2950系列有4种型号:① Catalyst 2950-24:有24个10/100M自适应端口。
② Catalyst 2950-12:有12个10/100M自适应端口。
③ Catalyst 2950T-24:有24个10/100M自适应端口,2个10/100/1000M BaseT上行链路端口。
④ Catalyst 2950C-24:有24个10/100M自适应端口,2个100M BaseFX(多模光纤)上行链路端口。
下图为Catalyst 2950-12交换机的主要接口:1~12均为10/100M自适应端口,表示为 FastEthernet 0/1 ~ FastEthernet 0/12,通常简写为 fa0/1~fa0/12。
1、常用命令行模式①用户模式:提示符>②特权模式:提示符#③全局配置模式:提示符(config)#④接口配置模式:提示符(config-if)#⑤VLAN配置模式:提示符(vlan)#⑥线路配置模式:提示符(config-line)#每一种模式下有一组命令集,在使用一条命令时必须先进入相应的模式。
交换机命令的格式是:提示符命令[参数表]。
① 交换机命令是键盘命令,对大小写不敏感。
② 交换机命令支持缩写,不用输入完整的命令和关键字,只要键入的命令所包含的字符长到足以与其它命令区别就足够了。
例如,可将“show configure”命令缩写为“sh conf”。
在命令提示符的前面是交换机的名字,这在有多台交换机时可方便我们进行识别。
2、基本命令3、VLAN配置命令4、接口配置命令。
2950交换机简明配置维护手册目录第1章说明 (3)第2章产品特性 (3)第3章配置端口 (3)3.1配置一组端口 (3)3.2配置二层端口 (5)3.2.1配置端口速率及双工模式 (6)3.2.2端口描述 (7)3.3监控及维护端口 (8)3.3.1监控端口和控制器的状态 (8)3.3.2刷新、重置端口及计数器 (10)3.3.3关闭和打开端口 (10)第4章配置VLAN (11)4.1理解VLAN (11)4.2可支持的VLAN (12)4.3配置正常范围的VLAN (12)4.3.1生成、修改以太网VLAN (13)4.3.2删除VLAN (15)4.3.3将端口分配给一个VLAN (15)4.4配置VLAN Trunks (16)4.4.2使用STP实现负载均衡 (19)第5章配置Cluster (23)第1章说明本手册只包括日常使用的有关命令及特性,其它未涉及的命令及特性请参考英文的详细配置手册。
第2章产品特性2950是只支持二层的交换机支持VLAN•到250 个VLAN•支持VLAN ID从1到4094(IEEE 802.1Q 标准)•支持ISL及IEEE 802.1Q封装安全•支持IOS标准的密码保护•支持标准及扩展的访问列表来定义安全策略•支持基于VLAN的访问列表监视•交换机LED指示端口状态•SPAN及远端SPAN (RSPAN) 可以监视任何端口或VLAN的流量•内置支持四组的RMON监控功能(历史、统计、告警及事件)第3章配置端口3.1 配置一组端口当使用interface range命令时有如下的规则:•有效的组范围:o vlan从1 到4094o fastethernet槽位/{first port} - {last port}, 槽位为0o gigabitethernet槽位/{first port} - {last port},槽位为0o port-channel port-channel-number - port-channel-number, port-channel号从1到64•端口号之间需要加入空格,如:interface range fastethernet 0/1 –5是有效的,而interface range fastethernet 0/1-5是无效的.•interface range命令只能配置已经存在的interface vlan•所有在同一组的端口必须是相同类别的。
VLAN的划分与互通实验准备工作:按照下图所示,连接实验环境。
如果没有设备,可下载Boson NetSim局域网交换与路由模拟器。
拓扑图:配置过程:说明:本实验完全在Boson Netsim模拟器上完成,下面红色下划线文字均为配置过程输入的命令。
一、交换机2950B配置1、配置交换机主机名、管理ip、默认网关Switch>enSwitch#config tSwitch(config)#hostname 2950B2950B(config)#int vlan 12950B(config-if)#ip address 172.16.10.3 255.255.255.0 //设置管理IP地址2950B(config-if)#no shut2950B(config-if)#exit2950B(config)#ip default-gateway 172.16.10.1 //设置默认网关IP地址2、配置中继口(即trunk口)2950B(config)#int f0/12950B(config-if)#switchport mode trunk2950B(config-if)#exit2950B(config)#int f0/42950B(config-if)#switchport mode trunk2950B(config-if)#exit2950B(config)#int f0/52950B(config-if)#switchport mode trunk2950B(config-if)#exit2950B(config)#3、配置vtp,把2950B交换机设置成客户机模式,2950B从2950C接收vlan信息2950B#vlan database2950B(vlan)#vtp client2950B(vlan)#vtp domain cisco4、创建Vlan2950B(vlan)#vlan 2 name sales // 将vlan 2设置名称为sales2950B(vlan)#vlan 3 name marketing // 将vlan 2设置名称为marketing 2950B(vlan)#apply2950B(vlan)#exit5、将交换机端口分配到vlan中2950B#config t2950B(config)#int f0/22950B(conf-if)#switchport mode access // 设置二层交换端口2950B(config-if)#switchport access vlan 22950B(config-if)#exit2950B(config)#int f0/32950B(conf-if)#switchport mode access // 设置二层交换端口2950B(config-if)#switchport access vlan 32950B(config-if)#exit2950B(config)#exit2950B#6、保存配置2950B#copy run start二、交换机2950C配置1、配置交换机主机名、管理ip、默认网关Switch>enSwitch#config tSwitch(config)#hostname 2950C2950C(config)#int vlan 12950C(config-if)#ip address 172.16.10.2 255.255.255.02950C(config-if)#no shut2950C(config-if)#exit2950B(config)#ip default-gateway 172.16.10.12、配置中继口(即trunk口)2950C(config)#int f0/42950C(config-if)#switchport mode trunk2950C(config-if)#exit2950C(config)#int f0/52950C(config-if)#switchport mode trunk2950C(config-if)#exit2950C(config)#3、配置vtp,把2950C交换机设置成服务器模式,2950B从2950C接收vlan信息2950C#vlan database2950C(vlan)#vtp server2950C(vlan)#vtp domain cisco4、创建Vlan2950C(vlan)#vlan 2 name sales2950C(vlan)#vlan 3 name marketing2950C(vlan)#apply2950C(vlan)#exit5、将交换机端口分配到vlan中2950C#config t2950C(config)#int f0/22950C(conf-if)#switchport mode access // 设置二层交换端口2950C(config-if)#switchport access vlan 22950C(config-if)#exit2950C(config)#int f0/32950C(conf-if)#switchport mode access // 设置二层交换端口2950C(config-if)#switchport access vlan 32950C(config-if)#exit2950C(config)#exit2950C#6、保存配置2950C#copy run start三、vlan间路由器2600配置过程1、配置路由器主机名、清除f0/0端口ip地址、启动f0/0端口Router>enRouter#config tRouter(config)#hostname trunkrouterTrunkrouter(config)#int f0/0Trunkrouter(config-if)#no ip addressTrunkrouter(config-if)#no shut2、将路由器的快速以太网端口fa0/0划分为三个子接口fa0/0.1、fa0/0.2和fa0/0.3,对每个子接口配置,并采用802.1q的数据封装。
2950交换机的详细配置switch> 用户模式1:进入特权模式 enableswitch> enableswitch#2:进入全局配置模式 configure terminalswitch> enableswitch#configure terminalswitch(conf)#3:交换机命名 hostname aptech2950 以aptech2950为例switch> enableswitch#configure terminalswitch(conf)#hostname aptch-2950aptech2950(conf)#4:配置使能口令 enable password cisco 以cisco为例switch> enableswitch#configure terminalswitch(conf)#hostname aptch2950aptech2950(conf)# enable password cisco5:配置使能密码 enable secret ciscolab 以cicsolab为例switch> enableswitch#configure terminalswitch(conf)#hostname aptch2950aptech2950(conf)# enable secret ciscolab6:设置虚拟局域网vlan 1 inte***ce vlan 1switch> enableswitch#configure terminalswitch(conf)#hostname aptch2950aptech2950(conf)# inte***ce vlan 1aptech2950(conf-if)#ip address 192.168.1.1 255.255.255.0 配置交换机端口ip和子网掩码aptech2950(conf-if)#no shut 使配置处于运行中aptech2950(conf-if)#exitaptech2950(conf)#ip default-gateway 192.168.254 设置网关地址7:进入交换机某一端口 inte***ce fastehernet 0/17 以17端口为例switch> enableswitch#configure terminalswitch(conf)#hostname aptch2950aptech2950(conf)# inte***ce fastehernet 0/17aptech2950(conf-if)#8:查看命令 showswitch> enableswitch# show version 察看系统中的所有版本信息show inte***ce vlan 1 查看交换机有关ip 协议的配置信息show running-configure 查看交换机当前起作用的配置信息show inte***ce fastethernet 0/1 察看交换机1接口具体配置和统计信息show mac-address-table 查看mac地址表show mac-address-table aging-time 查看mac地址表自动老化时间9:交换机恢复出厂默认恢复命令switch> enableswitch# erase startup-configureswitch# reload10:双工模式设置switch> enableswitch#configure terminalswitch2950(conf)#hostname aptch-2950aptech2950(conf)# inte***ce fastehernet 0/17 以17端口为例aptech2950(conf-if)#duplex full/half/auto 有full , half, auto 三个可选项11:cdp相关命令switch> enableswitch# show cdp 查看设备的cdp全局配置信息show cdp inte***ce fastethernet 0/17 查看17端口的cdp配置信息show cdp traffic 查看有关cdp包的统计信息show cdp nerghbors 列出与设备相连的cisco设备12:csico2950的密码恢复拔下交换机电源线。
CISCO交换机端口汇聚与Trunk参照2950A配置情况:先定义VLANSwitch2950>ena //进入特权模式Switch2950#vlan database //进入VLAN配置模式Switch2950(VLAN)#vlan 10 name vlan10 //创建VLAN并为VLAN起名为VLAN10 Switch2950(VLAN)#vlan 20 name vlan20 //创建VLAN并为VLAN起名为VLAN20 Switch2950#conf t //进入全局模式Switch2950(config)#int f0/1 //进入F0/1号接口Switch2950(config-if)#switchport mode access //定义F0/1号接口为二层Switch2950(config-if)#switchport access vlan 10 //将F0/1号接口分配给VLAN10Switch2950(config-if)#NO shut //开启接口Switch2950(config-if)#exit //退出接口Switch2950(config)#int f0/2 //进入F0/2号接口Switch2950(config-if)#switchport mode access //定义F0/2号接口为二层Switch2950(config-if)#switchport access vlan 20 //将F0/2号接口分配给VLAN20Switch2950(config-if)#NO shut //开启接口接着做端口汇聚与TRUNKSwitch2950>ena //进入特权模式Switch2950#conf t //进入全局模式Switch2950(config)#int vlan 1 //进入VLAN1Switch2950(config-if)#ip add 192.168.0.1 255.255.255.0 //为VLAN1配置IP地址Switch2950(config-if)#no shu //开启VLAN端口Switch2950(config-if)#exit //退出VLAN接口Switch2950(config)#interface range fa0/23 -24 //进入FA23~24号接口,并加入接口组Switch2950(config-if-range)#channel-group 1 mode desirable //定义接口组名为1,并定义模式为可行Switch2950(config-if-range)#switchport mode trunk //定义接口组为TRUNK模式Switch2950(config-if-range)#switchport trunk allowed vlan all //定义接口组trunk模式所有VLAN允许通过。
cisco2950交换机简单配置2950是只支持二层的交换机支持VLAN第1步cisco2950 交换机简单配置2950 是只支持二层的交换机支持VLAN 第1 步:单击“开始”按钮,在“程序”菜单的“附件”选项中单击“超级终端” 第2 步:在“名称”文本框中键入“Cisco” 第3 步:在“连接时使用”下拉列表框中选择与交换机相连的计算机的串口。
台式机为“com 1”,笔记本为“com 3 或者com 5”。
第4 步:在“波特率”下拉列表框中选择“9600”-确定. 如果通信正常的话就会出现类似于如下所示的主配置界面,并会在这个窗口中就会显示交换机的初始配置情况。
enter enter enter no!1)配置交换机姓名switch>ena switch#configure enter switch#configure terminal (进入配置状态) Switch(config)#hostname 配置的交换机姓名如:30FLoor-2960-1 30FLoor-2960-1(config)#end 30FLoor-2960-1# 2)配置交换机的ip 30FLoor-2960-1#configure terminal (进入配置状态) 30FLoor-2960-1(config)#interface vlan 1 30FLoor-2960-1(config)#ip address ip 地址子网掩码例如:30FLoor-2960-1(config)#ip address 10.11.90.10 255.255.255.0 30FLoor-2960-1(config)#no shutdown 30FLoor-2960-1(config)#end 30FLoor-2960-1# 30FLoor-2960-1# 3)配置交换机的默认网关30FLoor-2960-1(config)#ip default-gateway 网关ip 例如:30FLoor-2960-1(config)#ip default-gateway 10.11.90.254 4)设置路由30FLoor-2960-1(config)#ip route 0.0.0.0 X.X.X.X 5)设置console 口密码30FLoor-2960-1(config)#line console 0 30FLoor-2960-1(config-line)#password 输入密码30FLoor-2960-1(config-line)#login 30FLoor-2960-1(config-line)#end 6)设置telnet 的密码30FLoor-2960-1(config)#line vty 0 10 30FLoor-2960-1(config-line)#password 输入密码(yuxuan)30FLoor-2960-1(config-line)#login 30FLoor-2960-1(config-line)#end7)设置交换机的enable 密码30FLoor-2960-1(config)#enablepassword 输入密码(xuan)30FLoor-2960-1(config)#enable secret 输入密码(yuxuan)30FLoor-2960-1(config)#end 8)将当前配置信息保存到闪存中30FLoor-2960-1(config)#write 9)查看交换机信息30FLoor-2960-1# show version 查看交换机版本信息show ip interfaces 查看交换机的ip 地址show interface vlan 1 验证管理ip 地址已经配置并开启show ip redirect 查看交换机的网关show running-configure 查看交换机当前的配置信息show configure 查看交换机保存的配置信息switch#write ;保存配置信息switch#show vtp ;查看vtp 配置信息switch#show run ;查看当前配置信息switch#show vlan ;查看vlan 配置信息switch#show interface ;查看端口信息switch#show int f0/0 ;查看指定端口信息10)交换机基本配置步骤1.登陆到交换机2.进入特权模式命令:enable 3.进入全局配置模式命令:configure terminal 4.进入相应的配置子模式如:接口子模式命令:interface vlan 1 交换机基本状态:switch: ;ROM 状态,路由器是rommon> hostname> ;用户模式hostname# ;特权模式hostname(config)# ;全局配置模式hostname(config-if)# ;接口状态交换机口令设置:switch>enable ;进入特权模式switch#config terminal ;进入全局配置模式switch(config)#hostname ;设置交换机的主机名switch(config)#enable secret xxx ;设置特权加密口令switch(config)#enable password xxa ;设置特权非密口令switch(config)#line console 0 ;进入控制台口switch(config-line)#line vty 0 4 ;进入虚拟终端switch(config-line)#login ;允许登录switch(config-line)#password xx ;设置登录口令xx switch#exit ;返回命令交换机VLAN 设置:switch#vlan database ;进入VLAN 设置switch(vlan)#vlan 2 ;建VLAN 2 switch(vlan)#no vlan 2 ;删vlan 2 switch(config)#int f0/1 ;进入端口 1 switch(config-if)#switchport access vlan 2 ;当前端口加入vlan 2 switch(config-if)#switchport mode trunk ;设置为干线switch(config-if)#switchport trunk allowed vlan 1,2 ;设置允许的vlan switch(config-if)#switchport trunk encap dot1q ;设置vlan 中继switch(config)#vtp domain ;设置发vtp 域名switch(config)#vtp password ;设置发vtp 密码switch(config)#vtp mode server ;设置发vtp 模式switch(config)#vtp mode client ;设置发vtp 模式交换机设置IP 地址:switch(config)#interface vlan 1 ;进入vlan 1 switch(config-if)#ip address ;设置IP 地址switch(config)#ip default-gateway ;设置默认网关switch#dir flash: ;查看闪存交换机显示命令:switch#write ;保存配置信息switch#show vtp ;查看vtp 配置信息switch#show run ;查看当前配置信息switch#show vlan ;查看vlan 配置信息switch#show interface ;查看端口信息switch#show int f0/0 ;查看指定端口信息思科2950 交换机VLAN 划分cisco 首先配置一下交换机SC-2950> SC-2950>en SC-2950#conf t Enter configuration commands, one per line. End with CNTL/Z. SC-2950(config)#config-register 0x2102 SC-2950(config)#end 添加三个VLAN SC-2950#vlan data SC-2950(vlan)#vlan 10 name v1 VLAN 10 added: Name: v1 SC-2950(vlan)#vlan 20 name v2 VLAN 20 added: Name: v2 SC-2950(vlan)#vlan 30 name v3 VLAN 30 added: Name: v3 SC-2950(vlan)#exitAPPLY completed. Exiting.... SC-2950# 划分接口到各个VLAN SC-2950#conf t Enter configuration commands, one per line. End with CNTL/Z. SC-2950(config)#int fa0/1 //留给管理员SC-2950(config-if)#switchport mode access SC-2950(config-if)#sw acc vlan 10 SC-2950(config-if)#no shutdown SC-2950(config-if)#exit SC-2950(config)#int range f0/2 - 15 SC-2950(config-if-range)#sw mode acc SC-2950(config-if-range)#sw acc vlan 20 SC-2950(config-if-range)#no sh SC-2950(config-if-range)#exit SC-2950(config)#int range f0/16 - 24 SC-2950(config-if-range)#sw mode acc SC-2950(config-if-range)#sw acc vlan 30 SC-2950(config-if-range)#no sh SC-2950(config-if-range)#exit 激活VLAN,并且给VLAN 10 加个IP 以便管理SC-2950(config)#int vlan 10 SC-2950(config-if)#ip add 192.168.1.1 255.255.255.0 SC-2950(config-if)#no sh SC-2950(config-if)#exit SC-2950(config)#int vlan 20 SC-2950(config-if)#no sh SC-2950(config-if)#exit SC-2950(config)#int vlan 30 SC-2950(config-if)#no sh SC-2950(config-if)#exit 将交换机指向网关SC-2950(config)#ip default-gateway 192.168.1.254 SC-2950(config)#end SC-2950# 检测配置SC-2950#sh vlan brief VLAN Name Status Ports ---- -------------------------------- --------- ------------------------------1 default active 10 v1 active Fa0/1 20 v2 active Fa0/2, Fa0/3, Fa0/4,Fa0/5 Fa0/6, Fa0/7, Fa0/8,Fa0/9 Fa0/10, Fa0/11, Fa0/12,Fa0/13 Fa0/14, Fa0/1530v3activeFa0/16, Fa0/17, Fa0/18, Fa0/19 Fa0/20, Fa0/21, Fa0/22, Fa0/23 Fa0/24 Prot down down down up up downSC-2950#sh ip int b Interface IP-Address ocol FastEthernet0/23 unassigned FastEthernet0/24 unassigned Vlan1 unassigned Vlan10 192.168.1.1 Vlan20 unassigned Vlan30 unassigned SC-2950#sh run Building configuration... Current configuration : 1482 bytes ... ! interface FastEthernet0/24 switchport access vlan 30 ! interface Vlan1 no ip address ! interface Vlan10 ip address 192.168.1.1 255.255.255.0 ! interface Vlan20 no ip address ! interface Vlan30 no ip address ! ip default-gateway 192.168.1.254 ip http server ! ... 保存配置SC-2950#write Building configuration... [OK] cisco 2960 交换机安装配置基础新设备配置内容:1. interface vlan 1 的ip,gateway conf t int vlan 1 ip address xx.xx.xx.xx 255.255.255.0OK? Method Status YES unset up YES unset up YES unset up YES manual up YES unset up YES unset upip default-gateway ip-address no shutdown exit 2.en 的密码3.line vty 0-4 telnet 的密码4.wr 存盘show interface vlan 1 show run 将F0/1-10 端口加入到VLAN20 中,对应以下命令interface range f0/1 -10 switchport mode acccess switchport access vlan 20 注意,f0/1 后面有个空格,然后才是-10 cisco 2950 常用配置命令产品相关命令1、配置IP 地址交换机要能够被网管,必须给它标识一个管理IP 地址,默认情况下CISCO 交换机的VLAN 1 为管理VLAN,为该VLAN 配上IP 地址,交换机就可以被网管了。
一、Cisco 2950交换机基本配置switch>switch>enableswitch#switch#vlan database(进入vlan维护模式)switch(vlan)#vlan 2 name vlan2(给vlan 2命名为vlan2)switch(vlan)#vlan 4 name vlan4(给vlan 4命名为vlan4)switch(vlan)#exit(这里要注意一下,要打入exit退出才有效,不能用ctrl+z或end直接退出,因为这么不能使配置生效!)switch#show vlan(查看vlan的配置,默认有vlan1)switch#configure terminal(进入全局配置模式)switch(config)#interface f0/1(进入fastethernet0/1接口配置模式)switch(config-if)#switchport mode access(这步可以省略)switch(config-if)#switchport access vlan 2(把该接口划分到vlan2,记得vlan2之间有空格)switch(config-if)#no shutdown(激活端口)switch(config-if)#exitswitch(config)#interface f0/2switch(config-if)#switchport mode accessswitch(config-if)#switchport access vlan 4switch(config-if)#no shutdownswitch(config-if)#exitswitch(config)#interface f0/3switch(config-if)#switchport mode trunk(设置此口为中继模式)switch(config-if)#no shutdownwitch(config-if)#exit(这里可以直接用ctrl+z或end直接退出到特权模式)原文出自【比特网】,转载请保留原文链接:/61/12139561.shtml三.给PC1,PC2设置好IP地址,然后用ping命名令测试!1、配置IP地址交换机要能够被网管,必须给它标识一个管理IP地址,默认情况下CISCO交换机的VLAN 1为管理VLAN,为该VLAN配上IP 地址,交换机就可以被网管了。
网工路由交换相关配置思科2950交换机相关配置基本操作2950(config)#int vlan12950(config-if)#ip address 192.168.1.100 255.255.255.0 (VLAN1里面设置IP地址)2950(config)#ip default-gateway 192.168.1.1 (设置默认网关)2950(config)#ip name-server 192.168.1.1 (设置域名服务器)2950(config)#ip domain-name (设置域名)端口配置2950(config)#int f0/1 (进入接口)2950(config-if)#speed 100 (设置该接口速率为100Mb/s)2950(config-if)#duplex ?auto Enable AUTO duplex configurationfull Force full duplex operationhalf Force half-duplex operation2950(config-if)#description to_router1 (设置端口描述)2950#show interfaces fastethernet1 [status] (查看端口配置结果和状态)MAC地址表相关命令2950(config)#mac-address-table aging-time 100 (设置超时时间为100S) 2950(config)#mac-address-table permanent 000.0c01.bbcc f0/3 (加入永久地址) 2950(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 (加入静态地址) 2950#show mac-address-table (查看整个MAC地址表)2950#clear mac-address-table restricted static (清除限制性MAC址表)VTP的配置2950#vlan database (进入VLAN配置模式)2950(vlan)#vtp ? (查看VTP的子命令)domain Set the name of the VTP administrative domain.client Set the device to client mode.server Set the device to server mode.transparent Set the device to transparent mode.password Set the password for the VTP administrative domain.2950(vlan)#vtp domain server (设置本交换机为SEVER模式)2950(vlan)#vtp domain wqs (设置域名)2950(vlan)#vtp pruning (启动修剪模式)2950#show vtp status (查看VTP设置信息)配置VLAN TRUNK端口2950(config)#int f0/11 (进入F端口)2950(config-if)#switchport mode trunk (设置该端口为TRUNK模式)2950(config-if)#switchport trunk encapsulation {dot1q | isl | negotiate }(设置TRUNK封装)创建VLAN2950#vlan database (进入VLAN配置模式)2950(vlan)#vlan 2 (创建VLAN 2)VLAN 2 added:Name:VLAN0002 (系统默认名)2950(vlan)#vlan 3 name wg_bisheng (创建VLAN 3,名为网工必胜)VLAN 3 added:Name:wg_bisheng2950(config)#int f0/9 (进入接口配置模式)2950(config-if)#switchport mode access (设置该接口为ACCESS模式)2950(config-if)#switchport access vlan 2 (把端口9分配给VLAN2)2950(config-if)#int f0/82950(config-if)#switchport mode access2950(config-if)#switchport access vlan 32950(config-if)#end生成树协议的配置生成树负载均衡实现方法(感谢黑客天使提醒)1使用STP端口权值实现。
思科2950 交换机相关配置基本操作2950(config)#int vlan12950(config-if)#ip address 192.168.1.100 255.255.255.0 (VLAN1 里面设置IP 地址)2950(config)#ip default-gateway 192.168.1.1 (设置默认网关)2950(config)#ip name-server 192.168.1.1 (设置域名服务器)2950(config)#ip domain-name (设置域名)端口配置2950(config)#int f0/1 (进入接口)2950(config-if)#speed 100 (设置该接口速率为100Mb/s )2950(config-if)#duplex ?auto Enable AUTO duplex configurationfull Force full duplex operationhalf Force half-duplex operation2950(config-if)#description to_router1 (设置端口描述)2950#show interfaces fastethernet1 [status] (查看端口配置结果和状态)MAC 地址表相关命令2950(config)#mac-address-table aging-time 100 (设置超时时间为100S) 2950(config)#mac-address-table permanent 000.0c01.bbcc f0/3 (加入永久地址) 2950(config)#mac-address-table restricted static 0000.0c02.bbcc f0/6 f0/7 (加入静态地址) 2950#show mac-address-table (查看整个MAC 地址表)2950#clear mac-address-table restricted static (清除限制性MAC 址表)VTP 的配置2950#vlan database (进入VLAN 配置模式)2950(vlan)#vtp ? (查看VTP 的子命令)domain Set the name of the VTP administrative domain.client Set the device to client mode. server Set the device to server mode. transparent Set the device to transparent mode. password Set the password for the VTP administrative domain. 2950(vlan)#vtp domain server (设置本交换机为SEVER 模式)2950(vlan)#vtp domain wqs (设置域名)2950(vlan)#vtp pruning (启动修剪模式) 2950#show vtp status (查看VTP 设置信息)配置VLAN TRUNK 端口2950(config)#int f0/11 (进入F 端口)2950(config-if)#switchport mode trunk (设置该端口为TRUNK 模式)2950(config-if)#switchport trunk encapsulation {dot1q | isl | negotiate } (设置TRUNK 封装)创建VLAN2950#vlan database (进入VLAN 配置模式)2950(vlan)#vlan 2 (创建VLAN 2 )VLAN 2 added:Name:VLAN0002 (系统默认名)2950(vlan)#vlan 3 name wg_bisheng (创建VLAN 3 ,名为网工必胜)VLAN 3 added:Name:wg_bisheng2950(config)#int f0/9 (进入接口配置模式)2950(config-if)#switchport mode access (设置该接口为ACCESS 模式)2950(config-if)#switchport access vlan 2 (把端口9 分配给VLAN2 )2950(config-if)#int f0/82950(config-if)#switchport mode access2950(config-if)#switchport access vlan 32950(config-if)#end生成树协议的配置生成树负载均衡实现方法(感谢黑客天使提醒)1 使用STP 端口权值实现。
2 使用STP 路径值实现2950(config)#int f0/112950(config-if)#spanning-tree vlan 2 port-priority 10 ( 将VLAN2 的端口权值设为10)2950(config-if)#spanning-tree vlan 2 cost 30 (设置VLAN2 生成树路径值为30)路由器的一些设置静态路由:Router(config)#ip route destination-network network-mask {next-hop-ip | interface } [distance] Router(config)#ip route 192.168.1.0 255.255.255.0 10.1.1.1其中:192。
168。
1。
0 代表目标网络。
255.255.255.0 代表目标网络的子网掩码;10.1.1.1 代表下一跳地址。
next-hop-ip: 到达目的网络所经由的下一跳路由器接口的IP 地址。
In terface :到达目标网络的本机接口(仅限P2P线路)Dista nee:为该路由人工指定管理距离默认路由:Router(config)#ip route 0.0.0.0 0.0.0.0 {next-hop-ip | interface } [distance] Router(config)#ip route 0.0.0.0 0.0.0.0 172.16.3.1 其中: 0。
0。
0。
0 0。
0。
0。
0 代表任意地址和任意掩码,即所有网络,其它参数同静态路由。
选择性通告路由:如在RIP设置中,让SO端口只收不发RIP通告。
Router(config)#router rip Router(config-router)#passive-interface serial O常见路由协议的管理距离:TABLE 5 . 2 Default Administrative DistancesRoute Source Default AD Connected interface O Static route 1 EIGRP 9O IGRP 1OOOSPF 11ORIP 12OExternal EIGRP 17OUnknown 255 (this route will never be used)ISDN (DDR,PRI,BRI,PPP)相关命令r1(config)#isdn switch-type ? ( 设置ISDN 交换类型) basic-1tr6 1TR6 switch type for Germany basic-5ess AT&T 5ESS switch type for the U.S.basic-dms1OO Northern DMS-1OO switch type basic-net3 NET3 switch type for UK and Europe basic-ni National ISDN switch type basic-tsO13 TSO13 switch type for Australia ntt NTT switch type for Japan vn3 VN3 and VN4 switch types for France primary-5ess basic-ni1 Basic-Ni1r1(config)#username name password secret ( 指定口令) r1(config)#interface bri0 (接口BRI 设置) r1(config-if)#encapsulation ppp (设置PPP 封装) r1(config-if)#ppp authentication {chap|chap pap|pap chap|pap}[callin] (设置认证方式) r1(config-if)# dialer map ip 200.10.1.1 name router1 broadcast 7782001 (设置协议地址与电话号码的映射)r1(config-if)#ppp multilink (启动PPP 多连接) r1(config-if)#dialer load-threshold load (设置启动另一个 B 通道的阈值) r1(config-if)#clock rate speed ( 设置DCE 端的线速度) r1#sh isdn ? (查看ISDN 相关信息) active ISDN active calls history ISDN call history memory ISDN memory information status ISDN Line Status timers ISDN Timer values一般需要配置的信息有ISDN 交换机类型,IP 地址,封装类型,拨号串,拨号组,拨号列表等信息。
r2(config)#isdn switch-type basic-net3 ( 设置ISDN 交换类型) r2(config)#int bri0 (进入BRI 接口配置模式) r2(config-if)#ip address 192.168.1.2 255.255.255.0 (设置接口IP 地址) r2(config-if)#encapsulation ppp (封装协议为PPP) r2(config-if)#dialer string 88888888 (设置拨号串,R1 的ISDN 号码) r2(config-if)#dialer-group 1 (设置拨号组号码为1,把BRI0 接口与拨号列表1 相关联) r2(config-if)#no sh (激活接口)%LINK-3-UPDOWN: Interface Bri0, changed state to up r2(config-if)#exitr2(config)#dialer-list 1 protocol ip permit (设置拨号列表1) r1(config-if)#dialer idle-timeout 30r1(config-if)#dilaer load-threshold 128 r1(config-if)#ppp authentication chap r1(config)#dialer-list 1protocol ip permit 上面整理得有点乱,详细实例见以下三个实验,建议大家用模拟器实践以强化记忆。