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

Examining the Resv Message

Purpose

Each receiver host sends reservation request (Resv) messages upstream toward senders and sender applications. Resv messages must follow exactly the reverse path of Path messages. Resv messages create and maintain a reservation state in each router along the way. Resv messages are sent periodically to refresh reservation states.

Figure 12 shows an RSVP Resv message that flows upstream from R3 toward the destination interface address (10.1.13.1) on ingress router R1, ensuring that the network allocates resources along the reverse path that the downstream messages followed.

Figure 12: RSVP Resv Message

Image g017061.gif

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

Action

To examine the Resv message, enter the following JUNOS CLI command:

user@R1> monitor start filename

Sample Output 1

[edit protocols rsvp]
user@R1# show 
traceoptions {
    file rsvp-log;
    flag packets detail;
    flag resv 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 ***
Jun 29 15:57:19  RSVP recv Resv 10.1.13.2->10.1.13.1 Len=136 so-0/0/2.0
Jun 29 15:57:19   Session7 Len 16 10.0.0.5(port/tunnel ID 26619) Proto 0
Jun 29 15:57:19   Hop      Len 12 10.1.13.2/0x08678198 
Jun 29 15:57:19   Time     Len  8 30000 ms
Jun 29 15:57:19   Style    Len  8 FF
Jun 29 15:57:19   Flow     Len 36 rate 0bps size 0bps peak Infbps m 20 M 1500
Jun 29 15:57:19   Filter7  Len 12 10.0.0.1(port/lsp ID  5)
Jun 29 15:57:19   Label    Len  8  100624
Jun 29 15:57:19   RecRoute Len 28  10.1.13.2 10.1.36.2 10.1.56.1
monitor stop

Meaning

Sample Output 1 shows the configuration of RSVP tracing on ingress router R1. The packets and resv 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 rsvp-log output indicates that this is an Resv 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 interface so-0/0/2.

All subsequent lines of sample output indicate object values for this Resv 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]