[GTER] OSPF em Juniper ACX

Délsio Cabá delsio at gmail.com
Sun Jun 2 01:58:43 -03 2019


Caros

Estou implantando o juniper acx na minha rede ospf
Sempre trabalhei com cisco

Consegui implantar o primeiro
Quando implanto o segundo algo estranho acontece: o primeiro perde a
conectividade ou responde muito mal a pings
Inicialmente desconfiava de duplicação de IP ponto-a-ponto, mas não é o caso
Alguém pode me dizer porque isto acontece?
Abaixo a config do primeiro:

--- JUNOS 12.3X54-D15.3 built 2014-11-29 23:21:25
groups {
    global {
        interfaces {
            lo0 {
                unit 11 {
                    family inet {
                        address 10.200.0.30/32;
                    }
                }
            }
        }
    }
}
system {
    host-name POP-14;
    domain-name POP-14;
    root-authentication {
        ....
    }
    login {
       ....
        }
    }
    services {
        telnet;
    }
    syslog {
        user * {
            any emergency;
        }
        file messages {
            any error;
            authorization info;
        }
        file interactive-commands {
            interactive-commands any;
        }
    }
}
interfaces {
    ge-1/0/0 {
        description EnodeB-10.0.0.82;
        unit 0 {
            family inet {
                address 10.0.0.81/30;
            }
        }
    }
    gi-1/0/0 {
        description teste;
    }
    ge-1/0/1 {
        description EnodeB-10.0.0.78;
        unit 0 {
            family inet {
                address 10.0.0.77/30;
            }
        }
    }
    ge-1/0/2 {
        description EnodeB-10.0.0.86;
        unit 0 {
            family inet {
                address 10.0.0.85/30;
            }
        }
    }
    ge-1/1/0 {
        description POP-9
        speed 100m;
        media-type copper;
        unit 0 {
            family inet {
                address 10.200.1.49/30;
            }
        }
    }
    ge-1/1/1 {
        description POP-6–Fibra
        media-type copper;
        unit 0 {
            family inet {
                address 10.200.1.6/30;
            }
        }
    }
    ge-1/1/2 {
        description POP-7
        media-type fiber;
        unit 0 {
            family inet {
                address 10.200.1.18/30;
            }
        }
    }
    ge-1/1/3 {
        description POP-6
        media-type copper;
        unit 0 {
            family inet {
                address 10.200.1.57/30;
            }
        }
    }
    ge-1/2/0 {
        description POP-1
        unit 0 {
            family inet {
                address 10.200.1.62/30;
            }
        }
    }
    lo0 {
        unit 0 {
            family inet {
                address 10.200.0.30/32;
            }
        }
    }
}
snmp {
    community wmsnmp {
        authorization read-only;
    }
}
routing-options {
    router-id 10.200.0.40;
    autonomous-system xxxxx;
}
protocols {
    ospf {
        traceoptions {
            file debug-ospf size 1m files 5;
            flag error;
            flag all;
        }
        traffic-engineering;
        export into-ospf;
        area 0.0.0.0 {
            interface ge-1/1/3.0 {
                interface-type p2p;
            }
            interface ge-1/1/2.0 {
                interface-type p2p;
            }
            interface ge-1/1/1.0 {
                interface-type p2p;
            }
            interface ge-1/1/0.0 {
                interface-type p2p;
            }
            interface lo0.11 {
                passive;
            }
            interface ge-1/2/0.0 {
                interface-type p2p;
            }
        }
    }
}
policy-options {
    policy-statement into-ospf {
        term connected {
            from protocol [ direct local ];
            then accept;
        }
    }
}


More information about the gter mailing list