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


Requesting a Single Default Route on the Customer 1 Router

Customer 1 has only a single route to the ISP and is using the ISP for transit service. This customer has requested a single default route (0.0.0.0/0) from the ISP.

[edit]
interfaces {
    so-0/0/1 {
        description "Connection to ISP Router 3";
        unit 0 {
            family inet {
                address 10.222.70.1/30;
            }
        }
    }
    fxp0 {
        description "MGMT INTERFACE - DO NOT DELETE";
        unit 0 {
            family inet {
                address 10.251.0.9/24;
            }
        }
    }
    lo0 {
        unit 0 {
            family inet {
                address 192.168.16.1/32;
            }
        }
    }
}
routing-options {
    static {
        route 192.168.16.0/27 reject;
        route 192.168.16.32/27 reject;
        route 192.168.16.64/27 reject;
        route 192.168.16.96/27 reject;
        route 192.168.16.128/27 reject;
        route 192.168.16.160/27 reject;
        route 192.168.16.192/27 reject;
    }
    autonomous-system 1234;
}
protocols {
    bgp {
        group AS1000-Peers {
            type external;
            export send-statics;
            peer-as 1000;
            neighbor 10.222.70.2;
        }
    }
}
policy-options {
    policy-statement send-statics {
        term static-routes {
            from protocol static;
            then accept;
        }
    }
}

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