Hey all,

I'm trying to set up a virtual switch in an MX240 which will include sixteen untagged gigabit interfaces on a 20GE+2x10GE DPCE-R, and an irb interface so that the router can maintain a layer-3 interface on that (virtual) switch fabric.

This seems like a really simple thing to want to do, and I've run through the docs and configuration multiple times but have yet to see the router being able to ping a GE-connected host.

Router is running 9.5R1.8-domestic.

This is what I tried. What did I do wrong?


Joe

interfaces {
    ge-0/0/1 {
        description d1.lab1;
        unit 0;
    }
    ge-0/0/2 {
        description d2.lab1;
        unit 0;
    }
    ge-0/0/3 {
        description d3.lab1;
        unit 0;
    }
    ge-0/0/4 {
        description d4.lab1;
        unit 0;
    }
    ge-0/0/5 {
        description d5.lab1;
        unit 0;
    }
    ge-0/0/6 {
        description d6.lab1;
        unit 0;
    }
    ge-0/0/7 {
        description d7.lab1;
        unit 0;
    }
    ge-0/0/8 {
        description d8.lab1;
        unit 0;
    }
    irb {
        unit 0 {
            family inet {
                address 192.168.0.1/24;
            }
        }
    }
}
routing-instances {
    switch {
        instance-type virtual-switch;
        bridge-domains {
            foo {
                domain-type bridge;
                vlan-id none;
                interface ge-0/0/1.0;
                interface ge-0/0/2.0;
                interface ge-0/0/3.0;
                interface ge-0/0/4.0;
                interface ge-0/0/5.0;
                interface ge-0/0/6.0;
                interface ge-0/0/7.0;
                interface ge-0/0/8.0;
                routing-interface irb.0;
            }
        }
    }
}

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

Reply via email to