Options

does anyone know ospf good.

marine00marine00 Member Posts: 11 ■□□□□□□□□□
I have a question about ospf, if you know that ospf is configured wrong with the incorrect area, is there an no ospf command to cancel out the incorrect one, so I could just go ahead and re-enter the correct configuration for ospf.

Comments

  • Options
    SartanSartan Inactive Imported Users Posts: 152
    At the risk of sounding too technical..
    The actual "router ospf <bleh>" is not for the area of OSPF, it's just the process ID.
    You can run seperate routers with seperate process IDs.

    As for the area within the ospf process, if you mess up you have to remove it and add the correct entry..

    Process
    Router(config)# router ospf 4
    Router(config-router)# ^Z
    [oops! i wanted ospf 15!]
    Router(config)# no router ospf 4
    
    Area
    Router(config)# router ospf 15
    Router(config-router)# network 192.168.0.0 0.0.0.255 area 73256
    Router(config-router)# no network 192.168.0.0 0.0.0.255 area 73256
    [oops.. again.. Wrong area ID]
    Router(config-router)# network 192.168.0.0 0.0.0.255 area 53
    
    Network Tech student, actively learning Windows 2000, Linux, Cisco, Cabling & Internet Security.
  • Options
    marine00marine00 Member Posts: 11 ■□□□□□□□□□
Sign In or Register to comment.