锐捷交换机命令

Posted 彖爻之辞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了锐捷交换机命令相关的知识,希望对你有一定的参考价值。

 >Enable 进入特权模式
  #Exit   返回上一级操作模式
  #End   返回到特权模式
  #write memory copy running-config startup-config   保存配置文件
  #del flash:config.text   删除配置文件(交换机及1700系列路由器)
  #erase startup-config   删除配置文件(2500系列路由器)
  #del flash:vlan.dat 删除Vlan配置信息(交换机)
  #Configure terminal 进入全局配置模式
  (config)# hostname switchA   配置设备名称为switchA
  (config)#banner motd &      配置每日提示信息 &为终止符
  (config)#enable secret level 1 0 star   配置远程登陆密码为star
  (config)#enable secret level 15 0 star 配置特权密码为star
  Level 1为普通用户级别,可选为1~1515为最高权限级别;0表示密码不加密
  (config)#enable services web-server 开启交换机WEB管理功能
  Services 可选以下:web-server(WEB管理)telnet-server(远程登陆)

  查看信息
  #show running-config       查看当前生效的配置信息
  #show interface fastethernet 0/3   查看F0/3端口信息
  #show interface serial 1/2       查看S1/2端口信息
  #show interface                查看所有端口信息
  #show ip interface brief          以简洁方式汇总查看所有端口信息
  #show ip interface         查看所有端口信息
  #show version               查看版本信息
  #show mac-address-table       查看交换机当前MAC地址表信息
  #show running-config       查看当前生效的配置信息
  #show vlan                 查看所有VLAN信息
  #show vlan id 10          查看某一VLAN (VLAN10)的信息
  #show interface fastethernet 0/1 switchport 查看某一端口模式(F 0/1)
  #show aggregateport 1 summary    查看聚合端口AG1的信息
  #show spanning-tree        查看生成树配置信息
  #show spanning-tree interface fastethernet 0/1 查看该端口的生成树状态
  #show port-security         查看交换机的端口安全配置信息
  #show port-security address   查看地址安全绑定配置信息
  #show ip access-lists listname 查看名为listname的列表的配置信息
  #show access-lists

  端口的基本配置
  (config)#Interface fastethernet 0/3 进入F0/3的端口配置模式
  (config)#interface range fa 0/1-2,0/5,0/7-9 进入F0/1F0/2F0/5F0/7F0/8F0/9的端口配置模式
  (config-if)#speed 10             配置端口速率为10M,可选10,100,auto
  (config-if)#duplex full   配置端口为全双工模式,可选full(全双工),half(半双式),auto(自适应)
  (config-if)#no shutdown       开启该端口
  (config-if)#switchport access vlan 10 将该端口划入VLAN10,用于VLAN
  (config-if)#switchport mode trunk     将该端口设为trunk模式,用于Tag vlan 
  可选模式为access , trunk
  (config-if)#port-group 1    将该端口划入聚合端口AG1,用于聚合端口

  聚合端口的创建
  (config)# interface aggregateport 1   创建聚合接口AG1
  (config-if)# switchport mode trunk   配置并保证AG1 trunk 模式
  (config)#int f0/23-24
  (config-if-range)#port-group 1       将端口(端口组)划入聚合端口AG1

  生成树
  (config)#spanning-tree    开启生成树协议
  (config)#spanning-tree mode stp 指定生成树类型为stp
  可选模式stp , rstp , mstp
  (config)#spanning-tree priority 4096 设置交换机的优先级为4096 , 优先级值小为高。优先级可选值为040968192……,为4096的倍数。交换机默认值为32768

  VLAN的基本配置
  (config)#vlan 10   创建VLAN10
  (config-vlan)#name vlanname 命名VLANvlanname
  (config-if)#switchport access vlan 10 将该端口划入VLAN10
  某端口的接口配置模式下进行
  (config)#interface vlan 10   进入VLAN 10的虚拟端口配置模式
  (config-if)# ip address 192.168.1.1 255.255.255.0 VLAN10的虚拟端口配置IP及掩码,二层交换机只能配置一个IP,此IP是作为管理IP使用,例如,使用Telnet的方式登录的IP地址
  (config-if)# no shutdown    启用该端口

  端口安全
  (config)# interface fastethernet 0/1     进入一个端口
  (config-if)# switchport port-security    开启该端口的安全功能
  1.配置最大连接数限制
  (config-if)# switchport port-secruity maxmum 1 配置端口的最大连接数为1,最大连接数为128
  (config-if)# switchport port-secruity violation shutdown 
  配置安全违例的处理方式为shutdown,可选为protect (当安全地址数满后,将未知名地址丢弃)restrict(当违例时,发送一个Trap通知)shutdown(当违例时将端口关闭,并发送Trap通知,可在全局模式下用errdisable recovery来恢复)
  2IPMAC地址绑定
  (config-if)#switchport port-security mac-address xxxx.xxxx.xxxx ip-address 172.16.1.1 
  接口配置模式下配置MAC地址xxxx.xxxx.xxxxIP172.16.1.1进行绑定(MAC地址注意用小写)

  三层路由功能(针对三层交换机)
  (config)# ip routing       开启三层交换机的路由功能
  (config)# interface fastethernet 0/1    
  (config-if)# no switchport      开启端口的三层路由功能(这样就可以为某一端口配置IP)
  (config-if)# ip address 192.168.1.1 255.255.255.0 
  (config-if)# no shutdown 
  三层交换机路由协议
  (config)# ip route 172.16.1.0 255.255.255.0 172.16.2.1 配置静态路由
  注:172.16.1.0 255.255.255.0 为目标网络的网络号及子网掩码
  172.16.2.1 为下一跳的地址,也可用接口表示,ip route 172.16.1.0 255.255.255.0 serial 1/2(172.16.2.0所接的端口)
  (config)# router rip    开启RIP协议进程
  (config-router)# network 172.16.1.0    申明本设备的直连网段信息
  (config-router)# version 2           开启RIP V2,可选为version 1(RIPV1)version 2(RIPV2) 
  (config-router)# no auto-summary    关闭路由信息的自动汇总功能(只有在RIPV2支持)

  (config)# router ospf        开启OSPF路由协议进程(针对1762,无需使用进程ID
  (config)# router ospf 1      开启OSPF路由协议进程(针对2501,需要加OSPF进程ID
  (config-router)# network 192.168.1.0 0.0.0.255 area 0   
  申明直连网段信息,并分配区域号(area0为骨干区域)

  IP ACL
  交换机采用命名的访问控制列表;分标准(stand)和扩展(extended)两种
  1.标准ACL
  (config)#ip access-list stand listname 定义命名标准列表,命名为listnamestand为标准列表
  (config-std-nacl)#deny 192.168.30.0 0.0.0.255 拒绝来自192.168.30.0网段的IP流量通过
  注:deny:拒绝通过;可选:deny(拒绝通过)permit(允许通过)
  192.168.30.0 0.0.0.255:源地址及源地址通配符;可使用any表示任何IP
  (config-std-nacl)#permit any
  (config-std-nacl)#end          返回
  2.扩展ACL
  (config)#ip access-list extended listname 
  定义命名扩展列表,命名为listname,extended为扩展
  (config-ext-nacl)#deny tcp 192.168.30.0 0.0.0.255 192.168.10.0 0.0.0.255 eq www 拒绝源地址为192.168.30.0网段的IP访问目的地址为192.168.10.0网段的WWW服务
  注:deny:拒绝通过,可选:deny(拒绝通过)permit(允许通过)
  tcp: 协议名称,协议可以是udp, ipeigrp, gre, icmp, igmp, igrp等等。
  192.168.10.0 0.0.0.255:源地址及源地址通配符
  192.168.30.0 0.0.0.255:目的地址及目的地址通配符
  eq:操作符(lt-小于,eq-等于,gt-大于,neg-不等于,range-包含) 
  www:端口号,可使用名称或具体编号
  可以使用的协议名称(或编号)和端口名称(或编号)请打?查询。
  (config-ext-nacl)#permit ip any any   允许其它通过
  (config-ext-nacl)#end             返回
  (config)#interface vlan 10     进入端口配置模式
  (config-if)# ip access-group listname in   访问控制列表在端口下in方向应用;可选:in(入栈)out(出栈)
  (config-if)#end                 返回
  注:配置ACL时,若只想对其中部分IP进行限制访问时,必须配置允许其流量通过,否则设备只会对限制IP进行处理,不会对非限制IP进行允许通过处理。

在锐捷交换机上配置vrrparpmstp


交换机

密码
1234(config)#enable secret level 1 0 100
1234(config)#enable secret level 15 0 100
远程登入密码
1234(config)#line vty 0 4
1234(config-line)#password 100
1234(config-line)#end
交换机管理IP
1234(config)#interface vlan 1
1234(config-if)#ip address 192.168.1.10 255.255.255.0
1234(config-if)#no shutdown
修改交换机老化时间
1234(config)#mac-address-table aging-time 20
1234(config)#end
添删vlan
1234(config)#vlan 888
1234(config-vlan)#name a888
1234(config)#no vlan 888
添加access
1234(config)#interface gigabitEthernet 0/10
1234(config-if)#switchport mode access
1234(config-if)#switchport access vlan 10
切换assess trunk
1234(config-if)#switchport mode access
1234(config-if)#switchport mode trunk
指定特定一个native vlan
1234(config-if)#switchport trunk native vlan 10
配置trunk口的许可vlan列表
1234(config-if)#switchport trunk allowed vlan ?
add     Add VLANs to the current list
all     All VLANs
except All VLANs except the following
remove Remove VLANs from the current list
速成树协议
1234(config)#spanning-tree
1234(config)#spanning-tree mode rstp/stp
配置网关:
switch(config)#ip default-gateway 192.168.1.254 
交换机基本配置-常见查看命令
查看CPU利用率
show cpu 
查看交换机时钟
show clock 
查看交换机日志
show logging 
查看交换机动态学习到的MAC地址表   
show mac-address-table dynamic 
查看当前交换机运行的配置文件
show running-config 
查看交换机硬件、软件信息
show version
查看交换机的arp
show arp
显示接口详细信息的命令
show interfaces gigabitEthernet 4/1 counters
接口配置
Switch(config)#interface gigabitethernet 0/1 
把接口工作模式改为光口。
Switch(config-if)#medium-type fiber
把接口工作模式改为电口。
Switch(config-if)#medium-type copper
速度/双工配置
进入接口配置模式。
Switch(config)#interface interface-id
设置接口的速率参数,或者设置为auto 
Switch(config-if)#speed {10 | 100 | 1000 | auto }    
设置接口的双工模式。
Switch(config-if)#duplex {auto | full | half} 
例子
Switch(config)#interface gigabitethernet 0/1 
Switch(config-if)#speed 1000
Switch(config-if)#duplex full 
光口不能修改速度和双工配置,只能auto
在故障处理的时候,如果遇到规律性的时断时续或掉包,在排除其他原因后,可以考虑是否和对端设备的速率和双工模式不匹配,尤其是两端设备为不同厂商的时候。
VLAN
建立VLAN 100
Switch (config)#vlan 100
VLAN名称为ruijie
Switch (config)#name ruijie
将交换机接口划入VLAN 中:
range
表示选取了系列端口1-48,这个对多个端口进行相同配置时非常有用。
Switch (config)#interface range f 0/1-48 
将接口划到VLAN 100中。
Switch (config-if-range)#switchport access vlan 100   
将接口划回到默认VLAN 1中,即端口初始配置。
Switch (config-if-range)#no switchport access vlan 
Switch(config)#interface fastEthernet 0/1
该端口工作在access模式下
Switch(config-if)#switchport mode access   
该端口工作在trunk模式下
Switch(config-if)#switchport mode trunk    
Switch(config)#interface fastEthernet 0/2
设定VLAN要修剪的VLAN
Switch(config-if)#switchport trunk allowed vlan remove 2-9,11-19,21-4094
取消端口下的VLAN修剪。
Switch(config-if)#no switc

以上是关于锐捷交换机命令的主要内容,如果未能解决你的问题,请参考以下文章

网络搭建初学者。求锐捷三层、二层交换机配置命令。锐捷路由器配置命令。尽量全一些。路由器的重启方法。

怎样登录锐捷交换机console s2652g 操作命令

关于锐捷交换机配置

锐捷交换机dhcp服务怎么配置?

锐捷交换机命令

锐捷交换机如何查看每一个端口的配置状态,如何查看每一个端口?