Wednesday, March 27, 2019

Fully Specified Static Route

Fully Specified Static Route: -

·         we must specify the interface on where all packets are sent to the destination
network or the next-hop address in a fully specified in static route.
·         we can use a fully specified static route where the output interface is a multi-access area and you need to identify next-hop address.
·         The next-hop address must be attached to the specified output interface.


Take a Look of Fully Specified Static Route Configuration: -

                   
   First Configure all ip address on all interface as this Diagram.

R1 Configuration: -
R1(Config)#ip route 30.0.0.0 255.0.0.0 f0/0 20.0.0.3
R1(Config)#ip route 2.2.2.2 255.255.255.255 f0/0 20.0.0.2

R2 Configuration: -

R2(Config)#interface Loopback 0
R2(Config-if) #ip address 2.2.2.2 255.255.255.255
R2(Config)#ip route 10.0.0.0 255.0.0.0 f0/0 20.0.0.1
R2(Config)#ip route 30.0.0.0 255.0.0.0 f0/0 20.0.0.3

R3 Configuration: -

R3(Config)#ip route 2.2.2.2 255.255.255.255 f0/1 20.0.0.2
R3(Config)#ip route 10.0.0.0 255.0.0.0 f0/1 20.0.0.1

Verify ip routing table: -
R1#sh ip route
       2.0.0.0/32 is subnetted, 1 subnets
S     2.2.2.2 [1/0] via 20.0.0.2, FastEthernet0/0
C    20.0.0.0/8 is directly connected, FastEthernet0/0
C    10.0.0.0/8 is directly connected, FastEthernet0/1
S    30.0.0.0/8 [1/0] via 20.0.0.3, FastEthernet0/0

R2#sh ip route
       2.0.0.0/32 is subnetted, 1 subnets
C     2.2.2.2 is directly connected, Loopback0
C    20.0.0.0/8 is directly connected, FastEthernet0/0
S    10.0.0.0/8 [1/0] via 20.0.0.1, FastEthernet0/0
S    30.0.0.0/8 [1/0] via 20.0.0.3, FastEthernet0/0

R3#sh ip route
                    2.0.0.0/32 is subnetted, 1 subnets
S     2.2.2.2 [1/0] via 20.0.0.2, FastEthernet0/1
C    20.0.0.0/8 is directly connected, FastEthernet0/1
S    10.0.0.0/8 [1/0] via 20.0.0.1, FastEthernet0/1
C    30.0.0.0/8 is directly connected, FastEthernet0/0



                         

                       For more details, visit my You-Tube Channel:  CCIE Gamer

No comments: