串行接口中超过 ICMP 的时间 [Cisco 路由器 2811]

网络工程 思科 故障排除 思科命令 icmp
2022-02-19 11:59:56

R1 和 R2 是同一个网络。但是,当您向 ICMP Ping 输出“超时”错误发送检查时,

show interface Serial0/0/0 

命令产生以下输出:

Serial0/0/0 is up, line protocol is up (looped)
Hardware is GT96K Serial
Internet address is 210.220.61.2/30
  MTU 1500 bytes, BW 1544 Kbit/sec, DLY 20000 usec,
     reliability 255/255, txload 1/255, rxload 1/255
  Encapsulation HDLC, loopback not set
  Keepalive set (10 sec)
  Last input 00:00:07, output 00:00:07, output hang never
  Last clearing of "show interface" counters 01:11:55
  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 0 bits/sec, 0 packets/sec
     675 packets input, 48741 bytes, 0 no buffer
     Received 335 broadcasts (0 IP multicasts)
     0 runts, 0 giants, 0 throttles
     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
     675 packets output, 48741 bytes, 0 underruns
     0 output errors, 0 collisions, 2 interface resets
     3 unknown protocol drops
     0 output buffer failures, 0 output buffers swapped out
     0 carrier transitions
     DCD=up  DSR=up  DTR=up  RTS=up  CTS=up

我该如何解决这种现象?

- - 额外的 - -

sh diag

命令产生以下输出:

 WIC Slot 0:
        Serial 2T (12in1)
        Hardware revision 1.0           Board revision B0
        Serial number     36966334      Part number    800-03181-03
        Version Identifier     V01      FRU Part Number     WIC-2T
        Test history      0x0           RMA number     00-00-00
        Connector type    PCI
        EEPROM format version 1
        EEPROM contents (hex):
          0x20: 01 12 01 00 02 34 0F BE 50 0C 6D 03 00 00 00 00
          0x30: 58 00 00 00 09 09 06 00 FF FF FF FF FF FF FF FF

>(config)# card ?
% Unrecognized command
(config)# controller ?
% Unrecognized command

sh run命令产生以下输出:

Building configuration...
Current configuration : 1095 bytes
! No configuration change since last restart
version 15.1
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname ISP-R
!
boot-start-marker
boot-end-marker
!
no aaa new-model
!
dot11 syslog
ip source-route
!
no ip cef
!
no ipv6 cef
!
multilink bundle-name authenticated
!
!
voice-card 0
!
crypto pki token default removal timeout 0
!
license udi pid CISCO2811 sn FHK1109F3K3
!
redundancy
!
!
interface FastEthernet0/0
 ip address 210.220.61.10 255.255.255.252
 duplex auto
 speed auto
!
interface FastEthernet0/1
 ip address 195.35.37.254 255.255.255.0
 duplex auto
 speed auto
!
interface Serial0/0/0
 ip address 210.220.61.2 255.255.255.252
 no fair-queue
!
interface Serial0/0/1
 ip address 210.220.61.6 255.255.255.252
!
ip forward-protocol nd
no ip http server
no ip http secure-server 
!
!
control-plane
!
!
!
!
mgcp profile default
!
!
!
!
!
!
line con 0
 speed 115200
line aux 0
line vty 0 4
 login
 transport input all
!
scheduler allocate 20000 1000
end
2个回答

Serial0/0/0 已启动,线路协议已启动(循环)

您的接口是循环的,因此当您在另一端 ping IP 210.220.61.1 时,您会卡在循环中,因此 TTL(跳数)过期,因此消息

串行接口中超过 ICMP 的时间

串行 x 已启动,线路协议已启动(循环)

电路中存在回路。当最初检测到循环时,keepalive 数据包中的序列号会变为随机数。如果通过链接返回相同的随机数,则存在循环。

  1. 使用 show running-config privileged exec 命令查找任何环回接口配置命令条目。

  2. 如果发现环回接口配置命令条目,请使用 no loopback interface configuration 命令删除环路。

  3. 如果没有找到环回接口配置命令,请检查 CSU/DSU 以确定它们是否配置为手动环回模式。如果是,请禁用手动环回。

  4. 重置 CSU 或 DSU,并检查线路状态。如果线路协议出现,则不需要其他操作。

  5. 如果 CSU 或 DSU 未配置为手动环回模式,请联系专线或其他运营商服务以获取线路故障排除帮助。

这是以下 Cisco 文档的节选: http ://www.cisco.com/en/US/docs/internetworking/troubleshooting/guide/tr1915.html