• DELL S4048ON命令 yi


    Console口连接

    Console口线连接电脑,用PuTTY或其它终端软件,设置终端参数。参数设置要求如下:
    
    波特率:9600
    数据位:8
    停止位:1
    奇偶校验:无
    流量控制:无

     ---------------------------------------------------------------------------------

    show显示信息

    show run 
    show interface statu 查看接口的编号及其状态
    
    show processes cpu  显示5秒,1分钟,5分钟的平均CPU使用率
    
    show version  显示系统信息
    

    --------------------------------------------------------------------------------

    SSH启用
    F10交换机的telnet/ssh服务默认已经启用(较低版本的固件默认不启用ssh服务)。如需手动启用,参考如下
    Dell(config)# ip telnet server enable
    Dell(config)# ip ssh server enable 

    创建用户名和密码
    Dell(config)#username admin password mypassword pri 15
    Dell (config)#enable password mypassword

    --------------------------------------------------------------------------------

    时间
    手动设置交换机本地系统时间
    Dell#clock set 10:56:09 21 july 2014 (手动调整交换机的时间)

    NTP校时服务设置

    举例:

    enable   进入特权模式
    config    进入配置
    Dell(config)#ntp server 11.1.1.1

    -------------------------------------------------------------------------------

    SNMP配置

    show snmp community   显示snmp信息

    show running-config  显示所有running信息,包含snmp-server host

    举例,配置SNMP

    enable   进入特权模式
    config    进入配置
    snmp-server community public ro       #ro:只读; rw:读写
    snmp-server enable traps
    snmp-server host 监控服务器IP version 1 public
    end
    wr

    -------------------------------------------------------------------------------
    配置管理端口IP地址
    configure 进入配置模式
    interface management 1/1 进入管理端口的接口
    ip address 192.168.0.1 255.255.255.0 为接口分配IP地址。
    no shutdown 启用接口
    exit 退出接口
    management route 0.0.0.0/0 192.168.0.254 设置管理端口的管理路由。
    --------------------------------------------------------------------------------
    显示某端口配置信息
    show interface statu 查看接口的编号及其状态
    configure 进入配置
    interface te 1/33 进入某个端口
    show config 显示此端口配置信息
    --------------------------------------------------------------------------------

    --------------------------------------------------------------------------------
    DELL S4048-ON 配置端口聚合


    Dell-S4048-ON-Fibre#configure
    Dell-S4048-ON-Fibre(conf)#default interface te1/17
    Dell-S4048-ON-Fibre(conf)#default interface te1/18
    Dell-S4048-ON-Fibre(conf)#interface range te1/17 - 1/18
    Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18)#no switchport
    Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18)#port-channel-protocol lacp
    Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18-lacp)#port-channel 1 mode active
    Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18-lacp)#exit
    Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18)#no shutdown
    Dell-S4048-ON-Fibre(conf-if-range-te-1/17-1/18)#exit
    Dell-S4048-ON-Fibre(conf)#interface port-channel 1
    Dell-S4048-ON-Fibre(conf-if-po-1)#switchport
    Dell-S4048-ON-Fibre(conf-if-po-1)#no shutdown
    Dell-S4048-ON-Fibre(conf-if-po-1)#exit
    Dell-S4048-ON-Fibre(conf)#exit
    Dell-S4048-ON-Fibre#write
    !

    Dell-S4048-ON-Fibre#


    删除port-channel1:
    Dell-S4048-ON-Fibre(conf)# no interface port-channel 1
    查看port-channel:
    Dell-S4048-ON-Fibre# show interfaces port-channel 1
    查看所有的channel状态:
    Dell-S4048-ON-Fibre# show running-config
    --------------------------------------------------------------------------------

    --------------------------------------------------------------------------------

    switchport 切换到二层交换模式

    举例,批量把te0/0到te0/9这10个接口手动启用并切换到交换模式。
    Dell#config
    Dell(config)# interface range te0/0 – 9 (注意这边的“-”前后各有一个空格)
    Dell(config-if)#no shutdown (启用接口)
    Dell(config-if)#switchport (切换到二层交换模式)
    Dell(config-if)#exit

    --------------------------------------------------------------------------------

    三层交换机,24口全开,当二层交换机用。

    dell>enable  //开始配置

    dell#show inter status //查看实际端口编号

    dell# config   //进入配置模式

    dell(conf)#  interface range Te 1/1 - 24    //批量进入端口  -前后有空格?

    (config Te 1/1-24)#Switchport      //切换到二层交换模式

    (config Te 1/1-24)#no shutdown   //24个口,全启用

    wr   保存

    exit 退出接口

    --------------------------------------------------------------------------------

  • 相关阅读:
    less学习二---变量
    less学习一
    canvas+javascript实现淘宝商品放大镜效果
    webstorm报错Unescaped xml character解决方案1
    javascript getBoundingClientRect()获取元素四个边相对于窗口或文档的位置
    chorme浏览器不支持audio/video中的autoplay属性的解决方法
    html5中audio支持音频格式
    每天一个JS 小demo之通过事件委托实现菜单展开及选中特效。主要知识点:事件
    每天一个JS 小demo之滑屏幻灯片。主要知识点:event
    每天一个JS 小demo之“拖拽”效果的实现。主要知识点:event
  • 原文地址:https://www.cnblogs.com/yisheng163/p/16436077.html
Copyright © 2020-2023  润新知