Changes between Version 12 and Version 13 of Cnbp2019/Agenda/NetworkSetup
- Timestamp:
- Feb 26, 2019, 3:03:42 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Cnbp2019/Agenda/NetworkSetup
v12 v13 265 265 FAC1(config-router)#router-id 10.XY.2.1 266 266 }}} 267 * You are announcing to the core network (10.XY.1.0/24) in area 2. Use this command for this267 * You are announcing to the whole core network (10.XY.0.0/24) in area 2. Use this command for this 268 268 {{{ 269 269 FAC1config-router)#network 10.XY.0.0 0.0.0.255 area 2 … … 272 272 * Now you have enable OSPF on FAC1 Switch. Now lets add the default Route. 273 273 {{{ 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 274 FAC1(config)# ip route 0.0.0.0 0.0.0.0 10.XY.0.2 275 }}} 276 * Now let's enable routing for IPv6. 278 277 {{{ 279 278 FAC1(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 {{{ 282 FAC1(config)#ipv6 router ospf 1 283 }}} 284 * Give the router ID, this will be the same as ipv4 ospf router ID for simplicity 285 {{{ 286 FAC1(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 {{{ 290 FAC1(config-rtr)#redistribute connected 291 FAC1(config-rtr)#exit 292 }}} 293 * Create the default route 294 {{{ 295 FAC1(config)ipv6 route ::/0 2401:DD00:20XY:1::FFFF 280 296 }}} 281 297 … … 288 304 FAC2(config-router)#exit 289 305 FAC2(config)# ip route 0.0.0.0 0.0.0.0 10.0.0.6 306 FAC1(config)# ipv6 unicast-routing 307 FAC1(config)#ipv6 router ospf 1 308 FAC2(config-rtr)#router-id 10.0.3.1 309 FAC2(config-rtr)#redistribute connected 310 FAC2(config-rtr)#exit 311 FAC1(config)ipv6 route ::/0 2401:DD00:20XY:2::FFFF 290 312 }}} 291 313