JUNIPER NETWORKS路由器接口常见诊断方法
JUNOS软件使用两种诊断配置来检测接口的物理层电路:
1.回环测试.
2.BERT测试.
Loopback Testing
网络数据传输的路径通常是由负责重复与重新生成传输信号的设备组成的网段的集合,这些设备通常是以对称的方式连接在一起.也就是说,一台设备的发送路径连接到下一台设备的接收路径,反之亦然.当线路错误由于线路噪音(noise)以信号中断或者损坏的形式出现的时候,就可以使用这种对称性来把错误检测本地化.其中一种方法叫做线路回环(line loopback).与把信号传输到远端不同的是,它立即返回信号给源路由器.如果收到了信号,说明本段线路无故障,可以试着把环路延伸的更远进行线路检测;如果没有收到信号,说明问题出在本地环路上.
JUNIPER NETWORKS平台的环路模式可以分为本地回环(local loopback)和远程回环(remote loopback)两种模式.
Local Loopback
当接口以本地回环模式操作的时候,PIC把数据包传输给接口内置的信道服务单元(Channel Service Unit,CSU).数据包朝远端设备传输.在进站方面,PIC收到它自己的传输反馈并忽略任何物理线路和CSU发送出来的数据.本地回环模式对于检测PIC错误十分有用:
设置环路模式为本地回环模式:
[edit interfaces t3-1/2/0]
user@Cabernet# set t3-options loopback local
user@Cabernet# show
t3-options {
loopback local;
}
使用commit生效后,对接口状态进行验证:
user@Cabernet> show interfaces t3-1/2/0
Physical interface: t3-1/2/0, Enabled, Physical link is Up
Interface index: 14, SNMP ifIndex: 18
Link-level type: PPP, MTU: 4474, Clocking: Internal
Speed: T3, Loopback: Local, CRC: 16, Mode: C/Bit parity
Device flags : Present Running Loop-Detected
Interface flags: Point-To-Point SNMP-Traps
Link flags : Keepalives
Keepalive settings: Interval 10 seconds, Up-count 1, Down-count 3
Keepalive Input: 7230 (00:00:14 ago), Output: 7266 (00:00:09 ago)
NCP state: Down, LCP state: Conf-req-sent
Input rate : 0 bps (0 pps), Output rate: 0 bps (0 pps)
Active alarms : None
Active defects : None
Logical interface t3-1/2/0.0 (Index 105) (SNMP ifIndex 29)
Flags: Hardware-Down Point-To-Point SNMP-Traps, Encapsulation: PPP
Protocol inet, MTU: 4470, Flags: Protocol-Down
Addresses, Flags: Dest-route-down Is-Preferred Is-Primary
Destination: 175.1.1.0/30, Local: 175.1.1.1
把接口设置回正常的操作模式:
[edit interfaces t3-1/2/0]
user@Cabernet# delete t3-options loopback
Remote Loopback
传输线路两端的路由器都会参与到线路状态中,这样,一端的路由器就可以朝对端路由器的线路回环请求.这种环境对所有中间传输设备进行测试.当接口以远程回环模式操作的时候,接口会收到物理线路和CSU所接收到的数据包.另外,这些相同的数据包会被PIC重新传输给物理线路和CSU:
设置环路模式为远程回环模式:
[edit interfaces t3-1/2/0]
user@Cabernet# set t3-options loopback remote
user@Cabernet# show
t3-options {
loopback remote;
}
使用commit生效后,对接口状态进行验证:
user@Cabernet> show interfaces t3-1/2/0
Physical interface: t3-1/2/0, Enabled, Physical link is Up
Interface index: 14, SNMP ifIndex: 18
Link-level type: PPP, MTU: 4474, Clocking: Internal
Speed: T3, Loopback: Remote, CRC: 16, Mode: C/Bit parity
Device flags : Present Running
Interface flags: Point-To-Point SNMP-Traps
Link flags : Keepalives
Keepalive settings: Interval 10 seconds, Up-count 1, Down-count 3
Keepalive Input: 7245 (00:00:09 ago), Output: 7281 (00:00:04 ago)
NCP state: Down, LCP state: Conf-req-sent
Input rate : 0 bps (0 pps), Output rate: 0 bps (0 pps)
Active alarms : None
Active defects : None
Logical interface t3-1/2/0.0 (Index 105) (SNMP ifIndex 29)
Flags: Hardware-Down Point-To-Point SNMP-Traps, Encapsulation: PPP
Protocol inet, MTU: 4470, Flags: Protocol-Down
Addresses, Flags: Dest-route-down Is-Preferred Is-Primary
Destination: 175.1.1.0/30, Local: 175.1.1.1
|