Posts

Showing posts with the label Juniper RIP OSPF Redistribution

Juniper RIP OSPF Routes Redistribution

Image
IN FIGURE 1 WE SHOW A TOPOLOGY THAT IS RUNNING OSPF AND RIP. THIS LAB IS DESIGNED ON VMWARE JUNIPER OLIVE. THE GOAL FOR THIS TOPOLOGY IS SIMPLE: ROUTES REDISTRIBUTION BETWEEN ROUTERS. SO LET'S START:   1 Configuration on Juniper 1 1.1 Configure RIP protocol: [edit] root@juniper1# set interface em0.0 family inet address 192.168.3.1/24 root@juniper1# set interface em1.0 family inet address 10.1.1.5/24 ('this interface is used for test purposes) root@juniper1# set protocols rip group small-rip neighbor em0.0 1.2 Configure RIP policy: Default policy of RIP is to send out no routes unless explicitly  told to do so. In order to begin sending out routes, first write a policy on Juniper 1 that sends the locally connected interface routes into RIP: [edit] root@juniper1# set policy-options policy-statement send-connected term 1 from protocol direct root@juniper1# set policy-options policy-statement send-connected then accept 1.3 Apply the policy to RIP: [ed...