Book Image

Cisco ACI Cookbook

By : Stuart Fordham
Book Image

Cisco ACI Cookbook

By: Stuart Fordham

Overview of this book

Cisco Application Centric Infrastructure (ACI) is a tough architecture that automates IT tasks and accelerates data-center application deployments. This book focuses on practical recipes to help you quickly build, manage, and customize hybrid environment for your organization using Cisco ACI. You will begin by understanding the Cisco ACI architecture and its major components. You will then configure Cisco ACI policies and tenants. Next you will connect to hypervisors and other third-party devices. Moving on, you will configure routing to external networks and within ACI tenants and also learn to secure ACI through RBAC. Furthermore, you will understand how to set up quality of service and network programming with REST, XML, Python and so on. Finally you will learn to monitor and troubleshoot ACI in the event of any issues that arise. By the end of the book, you will gain have mastered automating your IT tasks and accelerating the deployment of your applications.
Table of Contents (17 chapters)
Title Page
Credits
About the Author
About the Reviewers
www.PacktPub.com
Customer Feedback
Preface

Setting up multicast for ACI tenants


Let's set up multicast on the fabric for TenantA.

Ready?

How to do it...

  1. Navigate to TenantA | Networking | Bridge Domains | VRFs | TenantA_VRF | Multicast.
  2. Click on the button that says YES, ENABLE MULTICAST.

How it works...

From the NX-OS CLI, we can see that Protocol Independent Multicast(PIM) is enabled for the VRF:

apic1# sh run tenant TenantA
# Command: show running-config tenant TenantA
 tenant TenantA
   vrf context TenantA_VRF
     ip pim
     exit
   bridge-domain TenantA-BD
     vrf member TenantA_VRF
     exit
   application TenantA_AP1
     epg TenantA_EPG1
       bridge-domain member TenantA-BD
       exit
     exit
 interface bridge-domain TenantA-BD
   ip address 10.0.0.1/24 secondary
   ip address 10.2.20.1/24 secondary scope public
   ipv6 address 2001:abcd:abcd::1001/64
   exit
 exit
apic1#

So maybe I was a little overenthusiastic about the simplicity that ACI brings to traditionally complex tasks, but this is not without reason. ACI is very...