> -----Original Message-----
> From: [email protected] [mailto:juniper-nsp-
> [email protected]] On Behalf Of David water
> Sent: Wednesday, April 28, 2010 9:18 AM
> To: [email protected]
> 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

_______________________________________________
juniper-nsp mailing list [email protected]
https://puck.nether.net/mailman/listinfo/juniper-nsp

Reply via email to