vMX

 View Only
last person joined: 14 days ago 

Ask questions and share experiences about vMX.
  • 1.  ospfv3 neighbors not coming up on vMX in Junos VLAB

    Posted 06-16-2023 14:23
    Edited by LEEBAHI 06-16-2023 19:20

    Hi everyone,

    I am trying to practice ospfv3 for ipv4 on Junos vLAB but ospf3 neighbors are coming up.

    jcluser@vMX1# show protocols | display set 
    set protocols ospf3 realm ipv4-unicast area 0.0.0.1 interface ge-0/0/0.0
    set protocols ospf3 area 0.0.0.1 interface ge-0/0/0.0


    jcluser@vMX1# show interfaces ge-0/0/0 | display set 
    set interfaces ge-0/0/0 unit 0 family inet address 10.100.12.1/24

    jcluser@vMX2# show protocols ospf3 | display set 
    set protocols ospf3 realm ipv4-unicast area 0.0.0.10 interface ge-0/0/0.0
    set protocols ospf3 area 0.0.0.10 interface ge-0/0/0.0

    r@vMX2# show interfaces ge-0/0/0 | display set 
    set interfaces ge-0/0/0 unit 0 family inet address 10.100.12.2/24

    What am I missing here?

    Much appreciated!!



    Be kind!!
    ------------------------------



  • 2.  RE: ospfv3 neighbors not coming up on vMX in Junos VLAB

    Posted 06-16-2023 19:32
    Edited by LEEBAHI 06-16-2023 19:44

    It appears we need to enable family inet6 on the interfaces for ospf3 to start sending hellos, which are sourced from ipv6 addresses.

    Minimum config to bring ospf3 neighbors up for realm ipv4-unicast:

    MX1:

    MX1:

    set protocols ospf3 realm ipv4-unicast area 0.0.0.0 interface ge-0/0/0.0

    set interfaces ge-0/0/0 unit 0 family inet address 10.10.10.1/24
    set interfaces ge-0/0/0 unit 0 family inet6

    MX2:

    set protocols ospf3 realm ipv4-unicast area 0.0.0.0 interface ge-0/0/0.0

    set interfaces ge-0/0/0 unit 0 family inet address 10.10.10.2/24
    set interfaces ge-0/0/0 unit 0 family inet6

    ###

    root@MX1> show ospf3 neighbor realm ipv4-unicast 
    ID               Interface              State     Pri   Dead
    2.2.2.2          ge-0/0/0.0             Full      128     33
      Neighbor-address fe80::5200:ff:fe04:2



    ------------------------------

    ------------------------------