CISCO交换机上的输入错误是什么?

网络工程 思科 转变 cisco催化剂 界面 统计数据
2021-07-14 16:41:59

在我的拓扑中,我已将 spirent - 流量生成器连接到 MRV 交换机(L1 交换机),然后连接到 Cisco 交换机。我在此界面上看到一些输入错误。这是什么意思?这是否意味着某些数据包来自 spirent MRV 交换机。这是接口 gi 0/13 的 show 命令。

在我的拓扑中,spirent 连接到 MRV 交换机(L1 交换机)。MRV 交换机接口 gi 0/13 连接到 Cisco 交换机接口 gi 0/14。我在 cisco 交换机的 gi 0/14 上没有看到任何错误。但是,我在 gi 0/13 上看到了错误,这是来自 MRV 的接口。这是否意味着CISCO交换机告诉MRV交换机存在问题?

  1557336 input errors, 1557204 CRC, 0 frame, 0 overrun, 0 ignored

我的问题是上述错误对我的指示。

 c3560g_1>sh interfaces gi 0/13    
    GigabitEthernet0/13 is up, line protocol is up (connected) 
      Hardware is Gigabit Ethernet, address is 0013.c4d0.570d (bia 0013.c4d0.570d)
      Description: -- MRV, 1.1.19 --
      MTU 1500 bytes, BW 1000000 Kbit, DLY 10 usec, 
         reliability 255/255, txload 1/255, rxload 1/255
      Encapsulation ARPA, loopback not set
      Keepalive set (10 sec)
      Full-duplex, 1000Mb/s, media type is 10/100/1000BaseTX
      input flow-control is off, output flow-control is unsupported 
      ARP type: ARPA, ARP Timeout 04:00:00
      Last input never, output 00:00:01, output hang never
      Last clearing of "show interface" counters never
      Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
      Queueing strategy: fifo
      Output queue: 0/40 (size/max)
      5 minute input rate 0 bits/sec, 0 packets/sec
      5 minute output rate 1000 bits/sec, 2 packets/sec
         80971440 packets input, 125278495288 bytes, 0 no buffer
         Received 0 broadcasts (0 multicasts)
         132 runts, 0 giants, 0 throttles
         1557336 input errors, 1557204 CRC, 0 frame, 0 overrun, 0 ignored
         0 watchdog, 0 multicast, 0 pause input
         0 input packets with dribble condition detected
         24289474 packets output, 36669631614 bytes, 0 underruns
         0 output errors, 0 collisions, 5 interface resets
         0 babbles, 0 late collision, 0 deferred
         0 lost carrier, 0 no carrier, 0 PAUSE output
         0 output buffer failures, 0 output buffers swapped out
2个回答

如果仔细观察,您会发现 1557204 个 CRC 错误和 132 个残帧,总共有 1557336 个输入错误。您可能遇到第 1 层问题。

矮帧是太小的帧,CRC 错误意味着这些帧与 FCS 所说的不匹配。这是进入接口的损坏帧的标志。这可能由多种原因引起,但很可能是第 1 层问题。您应该始终从第 1 层开始故障排除。

帧检查序列错误,如果您的 MTU 在 Cisco 设备上使用以太网标准时符合 1514 标准,则数据包会丢失其中的一部分。如上所述,它通常是由于第一层物理错误造成的。您是否在连接到此设备的任何其他设备上获取它们?你只在 gi 0/13 上得到它们吗?检查电缆,并检查端口本身。检查端口上的双工不匹配,对实际端口进行硬件诊断并找出错误所在位置和终止位置的物理路径,以查看它是否重复....如果其他地方没有错误,则指出双工不匹配或电缆不良。

看到您连接了 L1 交换机,这很可能是双工问题。检查链接的另一侧。

祝你狩猎好运!