Changes between Version 27 and Version 28 of Cnbp2019/Agenda/NetworkSetup
- Timestamp:
- Mar 10, 2019, 2:30:57 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Cnbp2019/Agenda/NetworkSetup
v27 v28 2 2 ---- 3 3 4 In this tutorial we will establish dualstack network connectivity within all nodes of the network given below.4 In this tutorial, we will establish dual-stack network connectivity within all nodes of the network given below. 5 5 6 6 [[Image(vlans.png,85%,border=1, center)]] … … 37 37 || F1/1 || Trunk || 70, 80 || 3 || 38 38 39 ---- ||40 41 ||= **FAC1-BLD1-FL1** =||= **Type** =||= **VLANS** =||= **Native VLAN** =||42 || e0 || Access || 10 || - ||43 || e7 || Trunk || 10 || 2 ||44 45 46 47 39 48 40 === Log in to the the devices === … … 83 75 }}} 84 76 85 - Then let's give a enable secret. Which is a password you set when you go to the privileged mode from the user mode? We willuse the '''<class password>''' as the enable secret77 - Then let's give a enable secret. Which is a password you set when you go to the privileged mode from the user mode? Make sure to use the '''<class password>''' as the enable secret 86 78 {{{ 87 79 enable secret <class password> … … 374 366 }}} 375 367 368 Make sure to save your setting with `FAC1#write` and `FAC2#write` 369 376 370 == Distribution Layer == 377 371 … … 381 375 * Trunk Ports 382 376 * Access Ports 377 378 Details of the switch as follows, 379 380 ---- || 381 382 ||= **FAC1-BLD1-FL2** =||= **Type** =||= **VLANS** =||= **Native VLAN** =|| 383 || Fa1/0 || Access || 20 || - || 384 || Fa1/13 || Trunk || 20 || 2 || 385 || Fa1/14 || Trunk || 10 || 2 || 386 || Fa1/15 || Trunk || 10,20 || 2 || 387 388 383 389 384 390 === Configure Management Network === … … 409 415 }}} 410 416 411 * This FAC1-BLD1-FL2 has t wo trunk ports configure them to allow VLAN 10,20 to fa1/15 and VLAN 20 on fa1/14. We need to configure Native VLAN to VLAN 2 as well.417 * This FAC1-BLD1-FL2 has three trunk ports configure them to allow VLAN 10,20 to fa1/15 and VLAN 10 on fa1/14 and VLAN 20 on fa1/15. We need to configure Native VLAN to VLAN 2 as well. 412 418 {{{ 413 419 FAC1-BLD1-FL2(config)#interface FastEthernet 1/15 … … 421 427 FAC1-BLD1-FL2(config-if)#switchport mode trunk 422 428 FAC1-BLD1-FL2(config-if)#switchport trunk encapsulation dot1q 423 FAC1-BLD1-FL2(config-if)#description link to FAC1-BLD1-FL2 429 FAC1-BLD1-FL2(config-if)#description link to FAC1-BLD1-FL1A 430 FAC1-BLD1-FL2(config-if)#switchport trunk allowed vlan 1,2,10,1002-1005 431 FAC1-BLD1-FL2(config-if)#switchport trunk native vlan 2 432 FAC1-BLD1-FL2(config-if)#exit 433 FAC1-BLD1-FL2(config)#interface FastEthernet 1/13 434 FAC1-BLD1-FL2(config-if)#switchport mode trunk 435 FAC1-BLD1-FL2(config-if)#switchport trunk encapsulation dot1q 436 FAC1-BLD1-FL2(config-if)#description link to FAC1-BLD1-FL1B 424 437 FAC1-BLD1-FL2(config-if)#switchport trunk allowed vlan 1,2,20,1002-1005 425 438 FAC1-BLD1-FL2(config-if)#switchport trunk native vlan 2 … … 436 449 FAC1-BLD1-FL2(config-if)#switchport mode access 437 450 FAC1-BLD1-FL2(config-if)#switchport access vlan 20 438 FAC1-BLD1-FL2(config-if)#description link to PC 2451 FAC1-BLD1-FL2(config-if)#description link to PC3 439 452 FAC1-BLD1-FL2(config-if)#exit 440 453 }}} 441 454 455 Make sure to save your setting with `FAC1-BLD1-FL2#write` 456 442 457 443 458 == Configuring the rest L2 network == 444 459 445 * Right-click on FAC1-BLD1-FL1 and select '''Configure'''460 * Right-click on FAC1-BLD1-FL1A and select '''Configure''' 446 461 * Under Settings, Select 447 462 * Port: 7 … … 451 466 * Repeat again and select, 452 467 * Port: 0 453 * VLAN: 10468 * VLAN: 20 454 469 * Type: access 455 470 * Click Add … … 460 475 461 476 462 ||= **FAC1-BLD1-FL1 ** =||= **Type** =||= **VLANS** =||477 ||= **FAC1-BLD1-FL1A** =||= **Type** =||= **VLANS** =|| 463 478 || e0 || Access || 10 || 464 || e7 || dot1q || 2 || 465 466 ---- 467 468 ||= **FAC1-BLD1-FL2** =||= **Type** =||= **VLANS** =|| 469 || e0 || Access || 20 || 470 || e6 || dot1q || 2 || 471 || e7 || dot1q || 2 || 479 || e7 || dot1q || || 480 481 ---- 482 483 ||= **FAC1-BLD1-FL1B** =||= **Type** =||= **VLANS** =|| 484 || e0 || Access || 20 || 485 || e7 || dot1q || || 472 486 473 487 ---- ||