[Contents] [Prev] [Next] [Index] [Report an Error]


Example 6

Configure different forwarding next-hop LSPs for different destination prefixes learned from BGP:

routing-options {
    router-id 10.10.20.101;
    autonomous-system 2;
    forwarding-table {
        export forwarding-policy;
    } 
}
policy-options {
    policy-statement forwarding-policy {
        term one {
            from {
                protocol bgp;
                route-filter 10.1.0.0/16 orlonger;
            }
            then {
                install-nexthop lsp mc-c-lsp-1;
                accept;
            }
        }
        term two {
            from {
                protocol bgp;
                route-filter 10.2.0.0/16 orlonger;
                }
            then {
                install-nexthop lsp mc-c-lsp-2;
                accept;
            }
        }
        term three {
            from {
                protocol bgp;
                route-filter 10.3.0.0/16 orlonger;
            } 
            then {
                install-nexthop lsp mc-c-lsp-3;
                accept;
            }
        }
    }
}
protocols {
    mpls {
        label-switched-path mc-c-lsp-1 {
            from 10.10.20.101;
            to 10.10.20.103;
        }
        label-switched-path mc-c-lsp-2 {
            from 10.10.20.101;
            to 10.10.20.103;
        }
        label-switched-path mc-c-lsp-3 {
            from 10.10.20.101;
            to 10.10.20.103;
        }
    }
}


[Contents] [Prev] [Next] [Index] [Report an Error]