首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    Cisco交换机与路由器命令总结

    show version    查看版本及引导信息  show running-config    查看运行设置  show startup-config    查看开机设置  show interface g0/1    显示端口信息  show ip router      显示路由信息  show clock      查看系统时钟  show log        查看日志  show interface counters    查看接口流量  show interface description  查看端口的连接状态与描述  show interface status  查看端口的链接状态、所属vlan以及速率双工 show cdp neighbors  查看CDP邻居  show processes cpu  查看设备CPU使用率    show vlan br    查看vlan数据库    show ip int brief //查看所有端口状况 show int des    //查看所有端口的描述 show int f0/1  //查看f0/1接口状态 show run int f0/1    //查看f0/1配置状况 show run int valn 180    //查看Vlan 的配置状态 show vtp stauts  //查看vtp 的状态 show clock      //查看交换机当前的时间 show ntp stauts    //查看ntp 是否同步 show ip ssh  //查看SSH配置

    01

    routed Port vs SVI

    背景:三层交换机的e0/0要工作在三层模式与另一网络设备连接。可以选择的配置方式有两种, 1、routed Port,指在cisco switch中端口模式下运行no switchport后的端口类型,在routed port下可直接配置IP地址。 routed port典型配置如下: int e0/0 no switchport ip addresss 1.1.1.1 255.255.255.0 2、SVI,指使用int vlan [vlan number]得到svi接口,该接口下可直接配置IP地址。 SVI+access Port 典型配置如下: vlan 10 //创建一个新的vlan,在该vlan下仅包含e0/0接口 exit int e0/1 switchport mode access switchport access vlan 10 exit int vlan 10 ip address 1.1.1.1 255.255.255.0 exit 通过两种配置可以得到相同的效果,至少在正常使用下不会看出来太大的区别。但是不同的配置方式下仍然有些许不同。 不同之处有以下两处: 1、svi 得到mac地址和routed port不一样,在同一网段中可以观察到。其中routed port使用了物理接口的mac地址,svi使用的mac地址设备mac地址+1。 2、svi配置下e0/0仍然工作L2,routed port下的e0/0完全在L3工作。 下面引用cisco网站上关于此问题的一个回复.<https://supportforums.cisco.com/message/546252#546252> There is a difference the way both the connection works. Although they will have the same purpose but there is the difference the way the switch ports will work. In case of a SVI you will have eventually a Layer-2 link between the switches. This will run your normal STP and other control traffic between the switches.This will extend your STP domain from a switch to the other switch.The ports will go thorugh the normal STP states and in case of a link flap or link going down/coming back the recovery time will be a little high. In case of a routed port between the switches,you will have a layer 3 link between the switches and will work as a normal router port. There will no STP running on the ports and the STP domain will not be extended beyond the downstream switches.Applying layer3 features like ACL's,PBR's will be a ltille easy in this case. The Disadvantage of running routed ports is that each port will be a separate network and you will have to manage a large number of IP subnets on the network. Running a routing protocol will be a good idea in this case. 在实际组网环境中,选择SVI+access Port或routed port主要取决于连接的另一端。 通常另一端如果是PC,那么使用svi作为pc的网关会方便些。如果对端是交换机、防火墙、路由器等网络设备,建议用routed port方便运行不同路由协议。

    01

    动态路由协议之OSPF协议

    之前我们介绍了距离矢量路由协议,路由器之间互相传递路由表来传递路由信息,距离矢量协议的路由器只知道某个网段可以通过那个下一跳到达和到达这个网络有多远等这样的信息,并不了解整个网络的拓扑结构。而今天所说的链路状态路由协议则通过与邻居路由器建立邻接关系,互相传递链路状态信息来了解整个网络拓扑结构。 运行链路状态路由协议的路由器就好像各自“绘制”自己所了解的网段信息,然后通过与邻居路由器建立邻接关系,互相“交流”链路信息,学习整个区域内的链路信息,来“绘制”出整个区域内的链路图。在一个区域内的所有路由器都保存着完全相同的链路状态数据库。 OSPF是基于开放标准的链路状态路由选择协议,它完成各路由选择协议算法的两大功能:路径选择和路径交换。 在共同管理域下的一组运行相同路由选择协议的路由器的集合为一个自治系统(AS)。在互联网中,一个AS是一个有权决定本系统使用哪种路由协议的单位,他可以是一个企业,一座城市或一个电信运营商。随着网络的发展,上述对AS的定义已经不是十分准确了,网络的发展使得网络之间经常出现网络合并情况,导致同一个AS中使用的路由协议越来越多,所以AS的定义应用是在共同管理下的互联网络。 内部网关路由协议(IGP),用于在单一AS内决策路由。内部网关路由协议包括RIP、OSPF等。 与内部网关路由协议相对应的是外部网关路由协议(EGP),外部网关路由协议用于在多个AS之间执行路由。 IGP是用来解决AS内部通信的,而EGP是用来解决AS间通信的。 运行RIP路由协议的路由器只需要保存一张路由表,而使用OSPF路由协议的路由器需要保存三张表:邻居列表、链路状态数据库、路由表。 OSPF路由协议与RIP相比,前者适合更大型的网络环境,因为OSPF是一种链路状态型的路由协议,不会产生环路问题,因此不需要使用最大跳数等限制来防止路由环路的产生。

    03

    Cisco_H3C命令对照

    Cisco_H3C命令对照思科Cisco        华为3COM        功能 enable        system-view        进入特权模式 configure terminal        \        进入配置状态 show        display        显示 show running-config        display current        显示目前的运行配置 show version        disp version        显示版本 show start        disp saved        显示已保存的配置 show tech-support        disp base-information        显示全面的信息 no        undo        取消(删除) hostname        sysname        更改机器名 \        lang chinese        进入中文状态 user        local-user        新建修改用户 end        return        退回到系统视图 exit        quit        返回上级视图 exit        logout        telnet退出 router rip        rip        rip动态路由 router ospf        ospf        ospf路由 router bgp        bgp        bgp路由 write        save        保存配置 erase        delete        删除配置 0        simple        明文 7        cipher        密文 access-list        acl        控制访问列表

    02
    领券