[j-nsp] VRRP in logical router

Stefan Fouant sfouant at shortestpathfirst.net
Wed Apr 28 10:53:33 EDT 2010


> -----Original Message-----
> From: juniper-nsp-bounces at puck.nether.net [mailto:juniper-nsp-
> bounces at puck.nether.net] On Behalf Of David water
> Sent: Wednesday, April 28, 2010 9:18 AM
> To: juniper-nsp at puck.nether.net
> Subject: [j-nsp] VRRP in logical router
> 
> Hi,
> 
> I have router with two ge ports connected back to back and I am trying
> to
> figure out how can I crate the three router topology in same subnet to
> simulate VRRP sceanrio, any idea or hint how to do that?

You could use bridge-domains within a Logical-Router to create a layer 2
segment capable of connecting multiple logical-routers:

logical-systems {
    r1 {
        interfaces {
            ge-0/0/4 {
                unit 0;
            }
            ge-0/0/5 {
                unit 0;
            }
            irb {
                unit 0 {
                    family inet {
                        address 10.0.5.254/24;
                    }
                }
            }
        bridge-domains {
            r1_domain {
                domain-type bridge;
                vlan-id none;
                interface ge-0/0/4.0;
                interface ge-0/0/5.0;
                routing-interface irb.0;
            }
        }
    }
    r2 {
        interfaces {
            ge-0/0/6 {
                unit 0 {
                    family inet {
                        address 10.0.5.1/24;
                    }
                }
            }
        }
    }
    r3 {
        interfaces {
            ge-0/0/7 {
                unit 0 {
                    family inet {
                        address 10.0.5.2/24;
                    }
                }
            }
        }
    }
}

HTHs.

Stefan Fouant, CISSP, JNCIEx2
www.shortestpathfirst.net
GPG Key ID: 0xB5E3803D



More information about the juniper-nsp mailing list