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

Logging into the APIC using Cobra


Once we have set up our, environment we can log in.

How to do it...

  1. Create a new Python file (on Linux, this can be done using the command vi aciLogin.py.
  2. In the VI editor, switch to insert mode by pressing i on the keyboard.
  3. Enter the following:
      importcobra.mit.access
      importcobra.mit.session
      apicUri='https://192.168.1.205'
      apicUser='admin'
      apicPassword='admin123'
      ls=cobra.mit.session.LoginSession(apicUri,apicUser,apicPassword)
      md=cobra.mit.access.MoDirectory(ls)
      md.login()
  1. Save the file by pressing the Esc key and then typing :wq!.
  2. Make the file executable, using the command chmod a+x aciLogin.py.
  3. Run the file using the command python ./aciLogin.py.