How to configure BGP using address family in a Cisco switch?| labeveryday part 48 using GNS3 (2021)

Published 2021-01-25
****Links****
Linkedin acount - www.linkedin.com/in/mariembuenaventura/
Gmail account - [email protected]
Twitter account - @MariemBuenaven1
Instagram account - www.instagram.com/mariembuenaventura5656/
Gcash referral - gcsh.app/r/FPBJdYB or FPBJdYB
PayMaya referral - PK37N2V2K6L2
Rumble Referral code - rumble.com/register/jori56/
YouTube channel -    / @mariembuenaventura1278  
BITCHUTE code - www.bitchute.com/accounts/referral/jori56/

****Credits****
Elena Mofar -    / @ciscoselfstudy  
Network Engineer Academy -    / @networkengineeracademy  
David Bombal - youtube.com/user/ConfigTerm
NetworkChuck - youtube.com/user/NetworkChuck
Keith Barker - youtube.com/user/Keith6783
Jeremy Ciora -    / @keepingitsimple  
Kevin Wallace -    • Cloud Technologies - with Anthony Seq...  
Anthony Sequiora - youtube.com/c/AnthonySequeira15626/videos
Jobskillshare Community - youtube.com/user/DANDesktopsupport
Kevtech IT Support -    / @kevtechitsupport  
I.T Career Questions - youtube.com/user/PCSimplest
CBT Nuggets - youtube.com/user/cbtnuggets
Bart Castle - youtube.com/user/pibrocher
ITProTV - youtube.com/user/ITProTVChannel
INEtraining - youtube.com/user/INEtraining
Whizlabs - www.whizlabs.com/
TutorialsDojo - tutorialsdojo.com/
CiscoDevnet - developer.cisco.com/
GNS3 - www.gns3.com/
Udemy - www.udemy.com/
#inet6 -    / @init6  
Hank Preston -    / @hankpreston  
KeepitTechie -    / @keepittechie  
Du'An Lightfoot -    • Introduction to Linux | interview wit...  

*****OtherSources****
Cisco Sandbox it's like GNS3 but online - developer.cisco.com/
Putty opensource app - www.putty.org/
Failed IPSec VPN -    • A not working VPN IPsec configuration...  
Multi Area OSPF -    • How to configure Multi OSPF areas in ...  
OSPFv3 interface advertisement -    • How to configure OSPFv3 in a Cisco sw...  
DHCP, VPN GRE and VRRP setup -    • How to configure DHCP with GRE and VR...  
Etherchannel (LacP) setup -    • How to configure EtherChannel LacP in...  
Etherchannel Mode On setup -    • How to configure EtherChannel mode in...  

****Tags****
Cisco Certified Network Associate (200-301) CCNA
Cisco Certified DevNet Associate (200-901 DEVASC)
Cisco Certified CyberOps Associate (200-201 CBROP)

Cisco Certified Devnet Professional - Core exam: 350-901 DEVCOR
Concentration exam (choose one):
300-435 ENAUTO, 300-853 CLAAUTO, 300-635 DCAUTO, 300-535 SPAUTO
300-735 SAUTO, 300-910 DEVOPS, 300-915 DEVIOT, 300-920 DEVWBX

CCNP Enterprise - Core exam: 350-401 ENCOR
Concentration exam (choose one):
300-410 ENARSI, 300-415 ENSDWI, 300-420 ENSLD, 300-425 ENWLSD,
300-430 ENWLSI, 300-435 ENAUTO

CCNP Collaboration - Core exam: 350-801 CLCOR
Concentration exam (choose one):
300-810 CLICA, 300-815 CLACCM, 300-820 CLCEI, 300-835 CLAUTO

CCNP Data Center - Core exam: 350-601 DCCOR
Concentration exam (choose one):
300-610 DCID, 300-615 DCIT, 300-620 DCACI, 300-625 DCSAN, 300-635 DCAUTO

#cisco #labeveryday #IT-Walkthrough

All Comments (2)
  • TASK0::setup basic cisco commands enable conf t ! !change username here ************ ! username ADMINR2 secret cisco ! !change hostname here *********** ! !hostname R2 ip name-server 8.8.8.8/ no ip domain-lookup ip domain-name cisco.com/ enable secret cisco line console 0 login local exec-timeout 0 0 logging synchronous exit line vty 0 4 login local exec-timeout 10 0 transport input ssh exit service password-encryption ip ssh version 2 crypto key generate rsa 812 exit ---------------------------------------------- TASK1::setup interfaces R1:: conf t ipv6 unicast-routing interface fa 0/0 ip address 56.0.0.1/ 255.255.255.252/ no shut ipv6 address 2056:50::1/64 exit interface loopback 0 ip address 5.5.5.5/ 255.255.255.0/ ipv6 address 2001:50::1/64 no shut exit end show ip int brief show ipv6 int brief R2:: conf t ipv6 unicast-routing interface fa 0/0 ip address 56.0.0.2/ 255.255.255.252/ ipv6 address 2056:50::2/64 no shut exit interface loopback 0 ip address 6.6.6.6/ 255.255.255.0/ ipv6 address 2001:60::1/64 no shut exit end show ip int brief show ipv6 int brief ---------------------------------------- TASK2::setup ospf 56 R1:: conf t ipv6 router ospf 56 router-id 1.1.1 exit interface fa 0/0 ip ospf56 area 0 ipv6 ospf56 area 0 exit interface loopback 0 ip ospf 56 area 0 ipv6 ospf 56 area 0 exit end show ip protocol R2:: conf t ipv6 router ospf 56 router-id 2.2.2.2/ exit interface fa 0/0 ip ospf 56 area 0 ipv6 ospf 56 area 0 exit interface loopback 0 ip ospf 56 area 0 ipv6 ospf 56 area 0 exit end show ip protocol ------------------------------------------- TASK3::add BGP routing R1:: conf t router bgp 65001 neighbor 56.0.0.2/ remote-as 65001 neighbor 56.0.0.2/ shutdown neighbor 2056:50::2 remote-as 65001 neighbor 2056:50::2 shutdown address-family ipv4 unicast neighbor 56.0.0.2/ activate network 5.5.5.0/ mask 255.255.255.0/ exit address-family ipv6 unicast neighbor 2056:50::2 activate network 2001:50::1/64 R2:: conf t router bgp 65001 neighbor 56.0.0.1/ remote-as 65001 neighbor 56.0.0.1/ shutdown neighbor 2056:50::1 remote-as 65001 neighbor 2056:50::1 shutdown address-family ipv4 unicast neighbor 56.0.0.1/ activate network 6.6.6.0/ mask 255.255.255.0/ exit address-family ipv6 unicast neighbor 2056:50::1 activate network 2001:60::1/64