Resource reservation protocol configuration case

Configuration Topology Case
Here Insert Picture DescriptionCase configuration requirements
1, the topology configuration the IP
2, OSPF configuration between three routers;
3, RSVP arranged on R1 and R3, the total bandwidth reserved for the 64K, a single flow reserve bandwidth up to 64K;
. 4, in Rl configuration response RSVP bandwidth reservation, the RSVP bandwidth request on R3, 3.3.3.3 source, object is 1.1.1.1, and the destination port of TCP 80, 2222 as the source port, the intake flow rate to reserve bandwidth 10K S1 / 1, and bc is 1K;
. 5, the RSVP bandwidth request information is one-way;
case configuration Roadmap
1. The topology configuration IP

interface serial 1/0
ip address 12.1.1.1 255.255.255.0
interface loopback 0
ip address 1.1.1.1 255.255.255.0

interface serial 1/0
ip address 12.1.1.2 255.255.255.0
interface serial 1/1
ip address 23.1.1.1 255.255.255.0
interface loopback 0
ip address 2.2.2.2 255.255.255.0

interface serial 1/1
ip address 23.1.1.2 255.255.255.0
interface loopback 0
ip address 3.3.3.3 255.255.255.0

2. Configure OSPF

router ospf 100
 router-id 91.1.1.1
 log-adjacency-changes
 network 1.1.1.0 0.0.0.255 area 0
 network 12.1.1.0 0.0.0.255 area 0

router ospf 100
 router-id 92.2.2.2
 network 2.2.2.0 0.0.0.255 area 0
 network 12.1.1.0 0.0.0.255 area 0
 network 23.1.1.0 0.0.0.255 area 0

router ospf 100
 router-id 93.3.3.3
 log-adjacency-changes
 network 3.3.3.0 0.0.0.255 area 0
 network 23.1.1.0 0.0.0.255 area 0

3. Turn on the interface RSVP R1 and R3

R1(config-if)#ip rsvp bandwidth ?
  <1-10000000>  Reservable Bandwidth (kbps)
  <cr>

R1(config-if)#ip rsvp bandwidth 64 ?
  <1-10000000>  Largest Reservable Flow (kbps)
  sub-pool      Reservable Bandwidth for Tunnel using sub pool
  <cr>

R1(config-if)#ip rsvp bandwidth 64 64
R3(config)#interface serial 1/1
R3(config-if)#ip rsvp bandwidth 64 64

4. On the RSVP bandwidth request R3 :

ip rsvp sender-host 1.1.1.1 3.3.3.3 TCP 80 2222 10 1					
/设置RSVP带宽请求,源为3.3.3.3,目的为1.1.1.1,目的端口为TCP 80,源端口为2222,申请带宽10K,BC为1K/

5. R1 disposed on the RSVP bandwidth reservation response:

ip rsvp reservation-host 1.1.1.1 3.3.3.3 TCP 80 2222 FF RATE 10 1					
/设置RSVP带宽预留响应,源为3.3.3.3,目的为1.1.1.1,目的端口为TCP 80,源端口为2222,提供单向带宽预留,基于速率的预留,预留10K带宽和1K的BC/

Case test results
after 1 after configuring RSVP, see bandwidth request disposed on R3:
Here Insert Picture Description2, After configuring RSVP, bandwidth reservation in response view arranged on R1:
Here Insert Picture Description. 3, the configuration After RSVP, RSVP view received on R1 request
Here Insert Picture Description4, after configuring the RSVP, bandwidth reservation to view the situation at R3:
Here Insert Picture Descriptionsummary and other
1, RSVP can create a virtual channel, for requesting to reserve bandwidth;
2, the RSVP reserved bandwidth, a request needs to be initiated by the party , the other end of the reservation, the reservation only on the local;
3, RSVP bandwidth is provided to apply only one-way;

Published 231 original articles · won praise 222 · views 20000 +

Guess you like

Origin blog.csdn.net/qinshangwy/article/details/105044219