1,Telnet的配置
目前创新互联建站已为超过千家的企业提供了网站建设、域名、雅安服务器托管、绵阳服务器托管、企业网站设计、河西网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。
Switch>
Switch>enable //进入特权模式
Switch#config //进入全局配置模式
Switch(config)#interface vlan 1 //进入接口配置模式,VLAN1代表整个交换机的端口,三层交换机可以指定多个VLAN IP,并且都可以用Telnet
Switch(config-if-vlan 1)#ip address 10.1.1.1 255.255.255.0 //配置VLAN1的IP地址
Switch(config-if-vlan 1)#no shutdown //激活VLAN1
Switch(config-fi-vlan 1)#exit
Switch(config)#telnet-server enable //开启Telnet服务
Switch(config)#username admin privilege 15password 0 admin //创建用户名和密码,15代表权值,0代表密码为明文
Switch(config)#authentication line vty login local //认证方式为本地用户认证
2端口配置
(1) 配置端口速率和双工模式
Switch#config
Switch(config)#interfaceEthernet 1/0/1
Switch(config-if-ethernet1/0/1)#speed-duplex auto //端口速率为自动协商(默认选项)
force10-full //10兆全双工
force10-half //10兆半双工
force100-full //100兆全双工
force100-fx //100兆光双工
force100-half //100兆半双工
force10g-full //10G全双工
force1g-full //1000兆双工
force1g-half //1000半双工
switch(config-if-ethernet1/0/1)#exit
(2) 设置端口收,发数据占用的宽带
switch(config)#interface ethernet1/0/2
switch(config-if-ethernet1/0/2)#bandwidthcontrol 10000both //收发数据带宽10M
1000receive //接收数据带宽1M
1000 transmit //发送数据带宽1M
KB为单位
(3) 端口镜像
Switch(config)#monitor session1 sourec interface ethent 1/0/1-10 both //将镜像组1的1-10端口收,发的数据进行镜像
Switch(config)monitor session1 destinationinternet 1/0/24 //将镜像组1的收,发的数据镜像到24号端口
(4) 端口环路检测
Switch(config)#loopback-detectioninterval-time30 15 //配置单端口环路检测报文的发送间隔,有环路30秒发1次,没环路时15发一次
Switch(config)#interface Ethernet 1/0/1-24
Switch(config-if-port-range)#loopback-detection special-vlan 1 //整个交换机的端口都开启端口环路检测
Switch(config-if-port-range)#loopback-detectioncontrolshutdown //如发现端口有环路就关闭该端口
Switch(config-if-port-range)#exit
Switch(config)#loopback-detectioncontrol-recovery time360 //配置端口环路检测的默认时间
(5) 端口聚合
Switch(config)#port-group1 //创建端口组1,端口组号不能与其他交换机组号相同
Switch(config)#interface Ethernet 1/0/1-2
Switch(config-if –port-range)#port-group1 mode no //将1-2端口加入到1端口组,模式为手动。
mode passive //主动模式
mode active //被动模式
注:如果第一台交换机端口配置了手动模式,那么另一台交换机的端口也要是手动模式。如果一台交换机为主动,那另一台就是被动。