Virtual PortChannel (vPC) Configuration

  Рет қаралды 9,317

PM Networking

PM Networking

Күн бұрын

Пікірлер: 41
@vijayabhaskar207
@vijayabhaskar207 11 ай бұрын
Sir you are the very dedicated person for doing hardwork on networking, Just because of your hardwork somany students earned good knowledge on networking ......thank you my real hero .....hats of...
@PMNetworking
@PMNetworking 10 ай бұрын
So nice of you
@jeffreysheltonjohnwesly7062
@jeffreysheltonjohnwesly7062 25 күн бұрын
nice explanation
@PMNetworking
@PMNetworking 25 күн бұрын
Thanks for liking
@sidrish143
@sidrish143 2 ай бұрын
Very informative thanks for sharing 😊
@PMNetworking
@PMNetworking 2 ай бұрын
My pleasure 😊
@mysuruvideography1284
@mysuruvideography1284 4 ай бұрын
It's Great tutorial keep it up !
@PMNetworking
@PMNetworking 4 ай бұрын
Thanks a lot!
@AjayKumar-fm2rm
@AjayKumar-fm2rm 7 күн бұрын
Sir you have a clip discussing the same port channel but having traffic inspected by the firepower appliance.
@tharakeshk8594
@tharakeshk8594 Ай бұрын
very nice explanation sir
@PMNetworking
@PMNetworking Ай бұрын
Thanks for sharing feedback
@johnlj_ciscocertified
@johnlj_ciscocertified 6 ай бұрын
great help for nexus switch newbie like me, thanks mate.
@PMNetworking
@PMNetworking 5 ай бұрын
Glad it helped
@lovenature3658
@lovenature3658 11 ай бұрын
Great explaination, please make more videos on nexus switch
@dulichbatngo1342
@dulichbatngo1342 5 ай бұрын
Great explaination, thank you very much
@PMNetworking
@PMNetworking 5 ай бұрын
You are welcome!
@saurabhlad1588
@saurabhlad1588 11 ай бұрын
Hello Sir, First of all thanks for making a video on Nexus.... I request you to make VPC Complex topology for better understanding of this concept
@PMNetworking
@PMNetworking 10 ай бұрын
Sure I will
@mannylenis9312
@mannylenis9312 8 ай бұрын
Good Explanation
@PMNetworking
@PMNetworking 8 ай бұрын
Keep watching
@tomliu3479
@tomliu3479 11 ай бұрын
Hello sir, I would like to know when will you broadcast live?
@aman24777
@aman24777 2 ай бұрын
Nice video, great learning! I want to know how to add NX OS images in EVE-NG. If you can make video for this. This would be much appreciated. Thanks
@PMNetworking
@PMNetworking 2 ай бұрын
Already available on channel
@jeslarjaseer1250
@jeslarjaseer1250 11 ай бұрын
After vpc domain config sw1 &2 are act as a single logical switch? Like stacked or vss... Show vpc 20 comand, it should show members of both switches like te 1/0/3, te 2/0/3 right? Sir can you do one video acl in and outbound direction how its matches with packet source ip
@gokulhazarika3534
@gokulhazarika3534 11 ай бұрын
Nice video sir..if possible please upload a lab with two isp with two different setup eg. Two routers , two firewall, two nexus switch, multilayered switch and access switch
@PMNetworking
@PMNetworking 10 ай бұрын
Noted
@nareshabhira8728
@nareshabhira8728 11 ай бұрын
Hi sir- can u pls explain and do the configuration below topic- Please IDP websense how to apply pbf QOS creation on router
@pramodghorpade9804
@pramodghorpade9804 6 ай бұрын
Sir , if both peer link and uplink of primary goes down in VPC , what will happen as uplink failure will suspend secondary member ports
@pradipkhateghare7305
@pradipkhateghare7305 4 ай бұрын
Hello, Please resolve below query. I have 2 nexus 9k in vpc and operating as L2 switch..above that I have fire eye device as upstream and above that I have. Fortigate firewall as gateway for down stream...My requirement is I have to add 2 another switches in downstream how will I add
@PMNetworking
@PMNetworking 4 ай бұрын
Noted
@PMNetworking
@PMNetworking 4 ай бұрын
To add two additional switches in your downstream setup, you should ensure they integrate smoothly into your existing network while maintaining redundancy and avoiding any potential loops. To add two additional switches in your downstream setup, you should ensure they integrate smoothly into your existing network while maintaining redundancy and avoiding any potential loops. Here’s a step-by-step guide: ### Step 1: Preparation 1. **Ensure VLAN Consistency**: Ensure the VLANs configured on your existing Nexus 9k switches are propagated to the new switches. 2. **Check VPC Configuration**: Confirm the VPC configuration between the two Nexus 9k switches is healthy and stable. 3. **Plan the Connections**: Decide how you'll physically connect the new switches to your existing network. Typically, you would connect each new switch to both Nexus 9k switches for redundancy. ### Step 2: Connect the New Switches 1. **Connect Switch 1 to Nexus 9k Pair**: - Connect an uplink from the new Switch 1 to Nexus 9k Switch A. - Connect another uplink from the new Switch 1 to Nexus 9k Switch B. 2. **Connect Switch 2 to Nexus 9k Pair**: - Connect an uplink from the new Switch 2 to Nexus 9k Switch A. - Connect another uplink from the new Switch 2 to Nexus 9k Switch B. ### Step 3: Configure the Nexus 9k Switches 1. **Configure Interfaces**: - Configure the interfaces on both Nexus 9k switches that will connect to the new switches. For example, if you are using Ethernet1/10 and Ethernet1/11 on both Nexus 9k switches, you would configure them as trunk ports and include the necessary VLANs. ```shell interface Ethernet1/10 switchport mode trunk switchport trunk allowed vlan channel-group 10 mode active interface Ethernet1/11 switchport mode trunk switchport trunk allowed vlan channel-group 11 mode active ``` 2. **Configure Port Channels**: - Create port channels on the Nexus 9k switches for the connections to the new switches. ```shell interface port-channel 10 switchport mode trunk switchport trunk allowed vlan vpc 10 interface port-channel 11 switchport mode trunk switchport trunk allowed vlan vpc 11 ``` 3. **Add Port Channels to VPC**: - Ensure the port channels are added to the VPC domain. This step is crucial for redundancy and load balancing. ```shell vpc domain 1 peer-keepalive destination interface port-channel 10 interface port-channel 11 ``` ### Step 4: Configure the New Switches 1. **Trunk Ports Configuration**: - Configure the uplink ports on the new switches to connect to the Nexus 9k switches. Ensure they match the trunk settings. ```shell interface Ethernet1/1 switchport mode trunk switchport trunk allowed vlan channel-group 10 mode active interface Ethernet1/2 switchport mode trunk switchport trunk allowed vlan channel-group 11 mode active ``` 2. **Configure Port Channels on New Switches**: - Create corresponding port channels on the new switches. ```shell interface port-channel 10 switchport mode trunk switchport trunk allowed vlan interface port-channel 11 switchport mode trunk switchport trunk allowed vlan ``` ### Step 5: Verification 1. **Verify VPC Status**: - Check the VPC status on the Nexus 9k switches to ensure the new port channels are up and part of the VPC. ```shell show vpc brief ``` 2. **Verify Connectivity**: - Test connectivity from devices connected to the new switches to ensure they can reach upstream devices and the Fortigate firewall. 3. **Monitor the Network**: - Monitor the network for any potential issues such as loops or misconfigurations. By following these steps, you will have successfully added two new switches to your existing Nexus 9k VPC setup, maintaining redundancy and optimal network performance. 1. Ensure VLAN Consistency: Ensure the VLANs configured on your existing Nexus 9k switches are propagated to the new switches. 2. Check VPC Configuration: Confirm the VPC configuration between the two Nexus 9k switches is healthy and stable. 3. Plan the Connections: Decide how you'll physically connect the new switches to your existing network. Typically, you would connect each new switch to both Nexus 9k switches.
@pradipkhateghare7305
@pradipkhateghare7305 4 ай бұрын
​@@PMNetworkingHello, In this Back to back VPC all 4 switches are acting as Layer 2 only...Is there any chance of loop happen? As servers are connected on upper side (existing switches) vpc switches also??
@12123vijay
@12123vijay 8 ай бұрын
What is the maximum ports that can be assigned to lacp?
@PMNetworking
@PMNetworking 8 ай бұрын
16
@mysuruvideography1284
@mysuruvideography1284 4 ай бұрын
can we configure vpc on router ?
@PMNetworking
@PMNetworking 4 ай бұрын
Yes
@girishpant_yt
@girishpant_yt 3 ай бұрын
Port channel 20 member port was down.
@PMNetworking
@PMNetworking 3 ай бұрын
Thanks for sharing
@nareshabhira8728
@nareshabhira8728 11 ай бұрын
Hi sir- can u pls explain and do the configuration below topic- Please IDP websense how to apply pbf QOS creation on router
@PMNetworking
@PMNetworking 10 ай бұрын
Sure
didn't manage to catch the ball #tiktok
00:19
Анастасия Тарасова
Рет қаралды 35 МЛН
Don't look down on anyone#devil  #lilith  #funny  #shorts
00:12
Devil Lilith
Рет қаралды 48 МЛН
Это было очень близко...
00:10
Аришнев
Рет қаралды 6 МЛН
А что бы ты сделал? @LimbLossBoss
00:17
История одного вокалиста
Рет қаралды 11 МЛН
Nexus VPC-Virtual Port Channel Configuration
14:08
SysOpsNet
Рет қаралды 11 М.
How Ping Works
11:56
Network Rhinos
Рет қаралды 13 М.
Cisco Enterprise Series - Switched Campus - Nexus 9000v vPC Overview and Configuration
27:00
Subnet Mask - Explained
17:55
PowerCert Animated Videos
Рет қаралды 2,9 МЛН
VLAN Switching vs VXLAN Bridging - Packet Walk
37:37
CCIE On The Spectrum
Рет қаралды 13 М.
All About Network Address Translation (NAT) With Multiple VLANs
1:00:01
didn't manage to catch the ball #tiktok
00:19
Анастасия Тарасова
Рет қаралды 35 МЛН