[Xorp-users] IPv6 multicast routing get not forwarded

Simon Schürg simon at schuerg.net
Thu Feb 4 20:18:18 PST 2016


An HTML attachment was scrubbed...
URL: http://mailman.ICSI.Berkeley.EDU/pipermail/xorp-users/attachments/20160205/17740eb1/attachment-0001.html 
-------------- next part --------------

/* Network interfaces */
interfaces {
	interface r2-eth0 {
		disable: false
		default-system-config
	}
	interface r2-eth1 {
		disable: false
		default-system-config
	}
}

/* Forwarding Engine Abstraction (FEA) */
fea {
    unicast-forwarding6 {
	    disable: false
    }
}

/* Multicast Forwarding Engine Abstraction IPv6 (MFEA) */
plumbing {
        mfea6 {
        disable: false
        interface r2-eth0 {
            vif r2-eth0 {
            disable: false
            }
        }
        interface r2-eth1 {
            vif r2-eth1 {
            disable: false
            }
        }
        interface register_vif {
            vif register_vif {
            /* Note: this vif should be always enabled */
            disable: false
            }
        }
        traceoptions {
            flag all {
                disable: false
            }
	    }
    }
}

/* Multicast Listener Discovery (MLD) IPv6 */
protocols {
        mld {
        disable: false
        interface r2-eth0 {
            vif r2-eth0 {
                disable: false
                version: 2
            }
        }
        interface r2-eth1 {
            vif r2-eth1 {
                disable: false
                version: 2
            }
        }
        traceoptions {
            flag all {
                disable: false
            }
	    }
    }
}

/* Protocol Independent Multicast - Sparse Mode (PIM-SM) IPv6 */
protocols {
    pimsm6 {
        disable: false

        interface r2-eth0 {
            vif r2-eth0 {
            disable: false
            }
        }
        interface r2-eth1 {
            vif r2-eth1 {
            disable: false
            }
        }
        interface register_vif {
            vif register_vif {
            /* Note: this vif should be always enabled */
            disable: false
            }
        }

        static-rps {
            rp fd07:16::1 {
                /* r2-eth0 */
                group-prefix ff00::/8 {
                    /* rp-priority: 192 */
                    /* hash-mask-len: 126 */
                }
            }
            rp fd07:1::1 {
                /* r2-eth1 */
                group-prefix ff00::/8 {
                    /* rp-priority: 192 */
                    /* hash-mask-len: 126 */
                }
            }
            rp fd07:16::2 {
                /* r1-eth0 */
                group-prefix ff00::/8 {
                    /* rp-priority: 192 */
                    /* hash-mask-len: 126 */
                }
            }
            rp fd07:2::1 {
                /* r1-eth1 */
                group-prefix ff00::/8 {
                    /* rp-priority: 192 */
                    /* hash-mask-len: 126 */
                }
            }

            rp fe80::b800:1cff:fe9d:4322 {
                group-prefix ff00::/8 {
                    /* rp-priority: 192 */
                    /* hash-mask-len: 126 */
                }
            }
            rp fe80::c67:47ff:fe88:15a7 {
                group-prefix ff00::/8 {
                    /* rp-priority: 192 */
                    /* hash-mask-len: 126 */
                }
            }
            rp fe80::1445:22ff:fe1c:c420 {
                group-prefix ff00::/8 {
                    /* rp-priority: 192 */
                    /* hash-mask-len: 126 */
                }
            }
            rp fe80::e01d:91ff:fe8a:4d97 {
                group-prefix ff00::/8 {
                    /* rp-priority: 192 */
                    /* hash-mask-len: 126 */
                }
            }

        }
        traceoptions {
            flag all {
                disable: false
            }
	    }
    }
}

/* FIB2MRIB
 * The FIB2MRIB module is used to obtain the Forwarding Information Base information
 * from the underlying system (via the FEA) and to propagate it to the MRIB,
 * so it can be used by multicast routing protocols such as PIM-SM. */
protocols {
    fib2mrib {
	disable: false
    }
}

/* Open Shortest Path First Version 3 (OSPFv3) IPv6 */
protocols {
    ospf6 0 {
	router-id: 10.10.10.22

        area 0.0.0.0 {

            interface r2-eth0 {
                vif r2-eth0 {
                }
            }
            interface r2-eth1 {
                vif r2-eth1 {
                }
            }

        }

    }
}


More information about the Xorp-users mailing list