[ Contents] [ Prev] [ Next] [ Index] [ Report an Error]

Examining the PathErr Message

Purpose

When path errors occur (usually because of parameter problems in a Path message), the router sends a unicast PathErr message to the sender that issued the Path message. PathErr messages are advisory; these messages do not alter any path state along the way.

Figure 16 shows an RSVP PathErr message that flows upstream toward the destination address (10.1.13.1) on ingress router (R1). From the perspective of the upstream flow, the destination address is the next-hop interface (so-0/0/2 on R1). This message notifies the sending node (R1) that an error occurred during label-switched path (LSP) signaling. This RSVP PathErr message originates at R3 (even though R1 had the problem), and is destined for R1.

Figure 16: RSVP PathErr Message

Image g017065.gif

To ensure that PathErr messages are displayed in the output, include the error flag at the [edit protocols rsvp traceoptions] hierarchy level.

Action

To examine PathErr messages, enter the following JUNOS command-line interface (CLI) command:

user@R1> monitor start filename

Sample Output 1

[edit protocols rsvp]
user@R1# show 
traceoptions {
    file rsvp-log;
    flag packets detail;
    flag error detail;
}
interface so-0/0/2.0;
interface fxp0.0 {
    disable;
}

Sample Output 2

user@R1> clear log rsvp-log

user@R1> monitor start rsvp-log  

user@R1>
*** rsvp-log ***
[...Output truncated...]
Jun 30 13:52:30  RSVP recv PathErr 10.1.13.2->10.1.13.1 Len=160 so-0/0/2.0
Jun 30 13:52:30   Session7 Len 16 10.0.0.5(port/tunnel ID 26679) Proto 0
Jun 30 13:52:30    Error    Len 12 code 24 value 7 flag 0 by 10.1.36.1  
Jun 30 13:52:30   Sender7  Len 12 10.0.0.1(port/lsp ID  2)
Jun 30 13:52:30   Tspec    Len 36 rate 0bps size 0bps peak Infbps m 20 M 1500
Jun 30 13:52:30   ADspec   Len 48 MTU 1500
Jun 30 13:52:30   RecRoute Len 28  10.1.36.2 10.1.36.1 10.1.13.1

Meaning

Sample Output 1 shows the configuration of RSVP tracing on ingress router R1. The packets and error flags are included at the [edit protocols rsvp traceoptions] hierarchy level to provide slightly different information about RSVP traffic. For more information about RSVP tracing flags, see Table 18. The detail option is included to show granular details about the configured flags.

Sample Output 2 shows clear commands, the output for the rsvp-log file, and that monitoring was started and then stopped.

The first line of the output from the rsvp-log file indicates that this is a PathErr message. The source address of the IP packet is 10.1.13.2 (R3). The destination address of the IP packet is 10.1.13.1 (R1). The incoming interface on R1 is so-0/0/2.0.

All subsequent lines of sample output indicate object values for this PathErr message and are indented in the output. To facilitate this discussion, each line of output for each object is displayed before the corresponding explanation.


[ Contents] [ Prev] [ Next] [ Index] [ Report an Error]