[f-nsp] How to convert Junos policy to Brocade.

Brendan Mannella bmannella at gmail.com
Thu Nov 4 00:45:15 EDT 2010


We just purchased a couple MLXe's (XMR) to replace some legacy Juniper
gear. Can someone give me a config example to replicate the following
IBGP export policy? I think i figured out how do do the direct and
connected routes by adding the redistribute connected and redistribute
static to the bgp config. Trying to figure out how to export the
default route.

policy-statement BGP-AGSW-export-1 {
        term direct {
            from protocol direct;
            then {
                community add comm-internal;
                next policy;
            }
        }
        term static {
            from protocol static;
            then {
                community add comm-internal;
                next policy;
            }
        }
        term internal {
            from community comm-internal;
            then next policy;
        }
        term _DEFAULT_ROUTE {
            from {
                route-filter 0.0.0.0/0 exact;
            }
            then next policy;
        }
        then reject;



More information about the foundry-nsp mailing list