Tuesday, November 4, 2014

Dynamic Routing



Dynamic Routing usually use for bigger networks coz it defines only directly connected network.
Pic of New 5 Routers

RIP : Routing Information Protocols.
Go to Global Config Mode and config only directed network in each networks
R1>en
R1# Config t
R1 (config)# router RIP
R1 (config-Router)#network 10.0.0.0      .................................................................Protocol config mode
R1 (config-Router)#network 20.0.0.0       
Example of Complete Config R2
R2>en
R2# Config t
R2 (config)# interface 0/0/0 (DCE) so u have to define clock rate
R2 (config)#ip address 20.4.0.2  255.0.0.0    
                    #Clock rate 128000
                    # no shut down
                    #exit
                    #interface fe 0/0
                    # Ip address 30.0.0.1 255.0.0.0
                    #no shut down
                    #exit
R2 (config)# interface 0/0/1(DTE) so NO NEED  to define clock rate
R2 (config)#ip address 40.0.0.1  255.0.0.0    
                    # no shut down
                    #exit
                    #Router RIP (define only directly connected networks)
                    # network 40.0.0.0
                    #network 30.0.0.0
                    #network 20.0.0.0

Example of Complete Config R3
R3>en
R3# Config t
R3 (config)# interface 0/0/1 (DCE) so u have to define clock rate
R3 (config)#ip address 50.0.0.1  255.0.0.0    
                    #Clock rate 128000
                    # no shut down
                    #exit
                    #interface fe 0/0
                    # Ip address 120.5.0.1 255.0.0.0
                    #no shut down
                    #exit
R3 (config)# interface 0/0/1(DCE) so NEED  to define clock rate
R3 (config)#ip address 40.0.0.1  255.0.0.0   
                   # clock rate 128000
                    # no shut down
                    #exit
                    #Router RIP (define only directly connected networks)
                    # network 120.0.0.0
                    #network 50.0.0.0
                    #network 40.0.0.0

Example of Complete Config R4
R4>en
R4# Config t
R4 (config)# interface 0/0/0 (DTE) so NO NEED to define clock rate
R4 (config)#ip address 50.0.0.2  255.0.0.0    
                    # no shut down
                    #exit
                    #interface fe S0/0/1
                    # Ip address 190.0.0.1 255.255.0.0
                    #no shut down
                    #exit
R4 (config)#ip address 80.0.0.1  255.0.0.0   
                    # no shut down
                    #exit
                    #Router RIP (define only directly connected networks)
                    # network 190.0.0.0
                    #network 80.0.0.0
                    #network 50.0.0.0

Example of Complete Config R5
R5>en
R5# Config t
R5 (config)# interface 0/0/0 (DTE) so NO NEED to define clock rate
R5 (config)#ip address 129.0.0.1  255.255.0.0    
                    # no shut down
                    #exit
                    #interface fe 0/0
                    # Ip address 190.0.0.2  255.255.0.0
                    #no shut down
                    #exit
                    #Router RIP (define only directly connected networks)
                    # network 190.0.0.0
                    #network 129.0.0.0




No comments:

Post a Comment