Changes between Version 12 and Version 13 of Cnbp2019/Agenda/NetworkSetup


Ignore:
Timestamp:
Feb 26, 2019, 3:03:42 AM (5 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cnbp2019/Agenda/NetworkSetup

    v12 v13  
    265265FAC1(config-router)#router-id 10.XY.2.1
    266266}}}
    267     * You are announcing to the core network (10.XY.1.0/24) in area 2. Use this command for this
     267    * You are announcing to the whole core network (10.XY.0.0/24) in area 2. Use this command for this
    268268{{{
    269269FAC1config-router)#network 10.XY.0.0 0.0.0.255 area 2
     
    272272    * Now you have enable OSPF on FAC1 Switch. Now lets add the default Route.
    273273{{{
    274 FAC1(config)# ip route 0.0.0.0 0.0.0.0 10.XY.0.1
    275 }}}
    276    * Next, lets enable routing for IPv6.
    277 
     274FAC1(config)# ip route 0.0.0.0 0.0.0.0 10.XY.0.2
     275}}}
     276   * Now let's enable routing for IPv6.
    278277{{{
    279278FAC1(config)# ipv6 unicast-routing
     279}}}
     280    * Create a OSPF v3 instance, Define OSPF process and Process ID. In this lab use process ID as 1
     281{{{
     282FAC1(config)#ipv6 router ospf 1
     283}}}
     284    * Give the router ID, this will be the same as ipv4 ospf router ID for simplicity
     285{{{
     286FAC1(config-rtr)#router-id 10.0.2.1
     287}}}
     288    * You are going to announce the subnets which are directly connects to you. Use this command for that,
     289{{{
     290FAC1(config-rtr)#redistribute connected
     291FAC1(config-rtr)#exit
     292}}}
     293    * Create the default route
     294{{{
     295FAC1(config)ipv6 route ::/0 2401:DD00:20XY:1::FFFF
    280296}}}
    281297
     
    288304FAC2(config-router)#exit
    289305FAC2(config)# ip route 0.0.0.0 0.0.0.0 10.0.0.6
     306FAC1(config)# ipv6 unicast-routing
     307FAC1(config)#ipv6 router ospf 1
     308FAC2(config-rtr)#router-id 10.0.3.1
     309FAC2(config-rtr)#redistribute connected
     310FAC2(config-rtr)#exit
     311FAC1(config)ipv6 route ::/0 2401:DD00:20XY:2::FFFF
    290312}}}
    291313