- VPC Peer keep-alive link sends periodic keep-alive messages between VPC peer devices. It can be a management interface or Switched Virtual Interface (SVI). It sends the messages between two VPC peer device, VPC peer sends the keep-alive message to other peer to inform, originating switch is operating and running VPC.
- It is a layer-3 link, it will be in a separate VRF to provide separate traffic from other traffics .
- We can deploy this link in two different ways.
- Separate layer-3 network - It may be the a distribution, core or management networks.
- Point-to-Point routed connected between the two switches - Using management interface
- This link will carries only small packets, so it will not consume a lot of bandwidth.
- And there is no any requirement of a group of links in a port-channel. So this means, keep-alive can be a single link between normal ports over a custom VRF or it can be a single point to point link between management interfaces
- You can check the below example - how can we configure keep-alive link using a dedicated port - Add a dedicated layer-3 port in VRF and assign an IP address.
Configure VRF to provide separate keep-alive link -
NexusA-
NexusA(config)# vrf context VPC_KEEPALIVE
NexusA(config-vrf)# exit
NexusB-
NexusB(config)# vrf context VPC_KEEPALIVE
NexusB(config-vrf)# exit
NexusA-
NexusA(config)# interface eth 1/30
NexusA(config-if)# no switchport
NexusA(config-if)# vrf member VPC_KEEPALIVE
NexusA(config-if)# ip address 172.24.2.6/30
NexusA(config-if)# no shutdown
NexusB-
NexusB(config)# interface eth 1/30
NexusB(config-if)# no switchport
NexusB(config-if)# vrf member VPC_KEEPALIVE
NexusB(config-if)# ip address 172.24.2.5/30
NexusB(config-if)# no shutdown
NexusA -
NexusA(config)# interface mgmt 0
NexusA(config-if)# ip address 172.24.2.6/30
NexusA(config-if)# vrf context VPC_KEEPALIVE
NexusA(config-if)# no shutdown
NexusB -
NexusB(config)# interface mgmt 0
NexusB(config-if)# ip address 172.24.2.5/30
NexusB(config-if)# vrf context VPC_KEEPALIVE
NexusB(config-if)# no shutdown
- You can verify this via command - ping [Destination IP address] vrf [VRF-name].
- You can chesk the VPC peer keep-alive detail via command - show vpc peer-keepalive.
Sir plz share the contents like this everyday we all are waiting eagerly for yr knowledgefull content
ReplyDelete