Routing

last person joined: 4 days ago 

Ask questions and share experiences about ACX Series, CTP Series, MX Series, PTX Series, SSR Series, JRR Series, and all things routing, including portfolios and protocols.
  • 1.  OSPF CONFIGURATION

    Posted 09-23-2009 20:16

    I would like to know what the JUNOS equivalent of the Cisco network command is.

     

    In Cisco, we configure OSPF accordingly:

     

    interface vlan 10

    ip address 10.10.10.0 255.255.255.0

     

    router ospf 1

    network 10.10.10.0 0.0.0.255

     

    This is how we create an interface and run OSPF on that interface.

     

    What is the JUNOS equivalent??? How do I create an interface and run OSPF on it so that he network is advertised to the rest of the OSPF domain? Also, what if the interface exists, but I add a secondary address to it? How, then, do I run OSPF on that interface?

     

    Thank you



  • 2.  RE: OSPF CONFIGURATION
    Best Answer

    Posted 09-23-2009 20:59

    In JUNOS you enable OSPF on the interface in the following way.

     

     

    set protocols ospf area 0 interface type-x/x/x

     

     All IP address configured on that interface will automatically be advertised in OSPF.

     



  • 3.  RE: OSPF CONFIGURATION

    Posted 09-23-2009 21:33

    Ah, OK.

     

    Thank you for the prompt response.