• Reference for Ruijie Switch Configuration


    http://www.ruijie.com.cn/fw/qdwd/57697(V1.0)

    command mode

    User EXEC, Privileged EXEC (enable), Global configuration (configure terminal), Interface configuration, Vlan configuration, Line configuration
    #filter and find
    Show … | begin RE
    Show … | exclude RE
    show … | include RE

    hostname

    Hostname …

    vlan interface

    Interface vlan 1
    Ip address 192.168.100.1 255.255.255.0

    default route

    ip route 0.0.0.0 0.0.0.0 192.168.1.254

    telnet login

    password only

    Ruijie(config)#line vty 0 4
    Ruijie(config-line)#login
    Ruijie(config-line)#password ruijie
    Ruijie(config-line)#exit
    Ruijie(config)#enable password ruijie
    Ruijie(config)#end
    Ruijie#write

    username and password

    Ruijie(config)#line vty 0 4
    Ruijie(config-line)#login local
    Ruijie(config-line)#exit
    Ruijie(config)#username admin password ruijie
    Ruijie(config)#enable password ruijie
    Ruijie(config)#end
    Ruijie#write

    SSH login

    Ruijie#configure terminal
    Ruijie(config)#enable service ssh-server
    Ruijie(config)#crypto key generate dsa/rsa

    show commands

    Show running-config
    Show version
    Show log
    Show ip interface brief
    show interface f0/1
    show vlan
    show cpu
    show memory
    show mac-address-table
    show arp
    show power
    show fan
    show temperature
    show clock
    dir
    show ip route
    show ip interface brief
    show interfaces status/description
    show interfaces trunk

    interface

    Ruijie(config)#interface gigabitEthernet 0/1
    Ruijie(config-if-GigabitEthernet 0/1)#description Link-to-Core-S8610_1-G2/3
    !!!interface range gigabitethernet 1/1-5, 1/7-8
    !!!default interface gigabitEthernet 0/1
    Ruijie(config-if-GigabitEthernet 1/10)#switchport mode access
    Ruijie(config-if-GigabitEthernet 1/10)
    switchport access vlan 100
    !!!switchport mode trunk
    !!! switchport trunk allowed vlan remove 1-4,6-9,11-19,31-4094
    //broadcast storm control
    //port isolation

  • 相关阅读:
    有什么自定义表单工具功能较好?
    宠物用品做谷歌推广的三种形式
    SpringBoot2.4框架
    影响MySql 服务性能最重要的两个参数。
    XJAR 混淆加密
    一线大厂研发流程
    Python 队里 list的常规操作 pop,insert,remove,index
    HTML5期末考核大作业网站——卫生与健康HTML+CSS+JavaScript
    分布式架构 服务容器化Docker
    网络编程、poll轮询、select机制
  • 原文地址:https://blog.csdn.net/azenlijing/article/details/125517543