Skip to content

carl-baillargeon/eos_agni_radsec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eos_agni_radsec

Overview

eos_agni_radsec is a role to configure the proper SSL profile on EOS devices to form a RadSec tunnel using SSL encryption with AGNI.

General steps done by this role to build the SSL profile:

  1. Pull the AGNI RadSec CA Certificate
  2. Generate a private key and CSR on EOS
  3. Send the CSR to AGNI and get a signed client certificate
  4. Copy both certificates to EOS
  5. Configure the SSL profile using the previous certificates/key
  6. Validate the SSL profile

Roadmap

  • Add the option to configure AGNI as a RadSec server in the switch using the configured SSL profile

Prerequisites

  • Install Python (Tested with Python 3.12.3)
  • Install ansible-core (Tested with ansible-core 2.17.4)
  • Install scp Python package (Tested with scp 0.15.0)
  • Install ansible.netcommon collection (Tested with ansible.netcommon 7.1.0)
  • Install arista.eos collection (Tested with arista.eos 10.0.0)
  • Network access from the Ansible control node to both AGNI service and EOS devices
  • EOS devices must have aaa authorization exec default configured for SCP to work
  • Ensure you have a properly configured Ansible inventory file that defines the target EOS devices

📝 Note: This role must uses network_cli connection type and paramiko SSH type. These settings are pre-configured in the role's vars:

ansible_connection: network_cli
ansible_network_os: eos
ansible_network_cli_ssh_type: paramiko

⚠️ Warning: This role will overwrite any existing AGNI SSL profile, private key, and certificates if they already exist on the device. Please ensure this is acceptable before proceeding.

Installation

To use this role, you need to download it from GitHub and place it in a location where Ansible can find it. Here are the steps:

  1. Create a roles directory in your Ansible project if you haven't already:
mkdir -p roles
  1. Clone the role repository into your roles directory:
cd roles
git clone https://github.com/carl-baillargeon/eos_agni_radsec.git
  1. Ensure your ansible.cfg file includes the roles path. Add or modify the following line:
roles_path = roles

More details on storing and finding Ansible roles can be found in the Ansible documentation.

Running the Playbook

To run the playbook that uses this role:

  1. Ensure you have set the required environment variables as described in the Environment Variables section.

  2. Create a playbook file (e.g., configure_agni_radsec.yml) with the content as shown in the Example section.

⚠️ Important: Don't forget to provide the appropriate CSR information.

  1. Run the playbook using the following command:
ansible-playbook configure_agni_radsec.yml -i your_inventory_file

Replace your_inventory_file with the path to your Ansible inventory file.

  1. If you need to pass additional variables or override defaults, you can use the -e option:
ansible-playbook configure_agni_radsec.yml -i your_inventory_file -e "agni_base_url=https://your-agni-url.com"

Remember to ensure that your Ansible control node has network access to both the AGNI service and your EOS devices.

Example Playbook

---
- name: Configure SSL profile for AGNI RadSec on EOS Switches
  hosts: GLOBAL # <-- Targeted devices from the Ansible inventory
  gather_facts: no
  tasks:
    - name: Load and run the role eos_agni_radsec
      ansible.builtin.import_role:
        name: eos_agni_radsec
      vars:
        agni_base_url: "https://beta.agni.arista.io"
        eos_csr_info:
          country: "CA"
          state: "QC"
          locality: "MTL"
          organization: "Home"
          organizational_unit: "Lab"

Input variables

---
# Path on local machine to store the temporary certificates
temp_path: <str; | default="/tmp">

# AGNI base URL
agni_base_url: <str; | default="https://beta.agni.arista.io">

# AGNI RadSec CA Certificate name
radsec_ca_certificate: <str; | default="radsec_ca_certificate">
radsec_ca_certificate_format: <str; | default="pem">

# EOS SSL Profile name for AGNI RadSec
eos_ssl_profile: <str; | default="agni-server">

# EOS private key name for AGNI RadSec
eos_private_key: <str; | default="agni-private.key">

# EOS path to save the certificates
eos_cert_path: "/mnt/flash/"

# EOS CSR information. Required
eos_csr_info:
  country: <str>
  state: <str>
  locality: <str>
  organization: <str>
  organizational_unit: <str>

Environment Variables

This Ansible role requires certain environment variables to be set for secure operation. These variables contain sensitive information and should be managed carefully.

Required Environment Variables

Before running the playbook that uses this role, ensure the following environment variables are set:

  1. AGNI_KEY_ID

    • Description: The key ID for authenticating with the AGNI service.
    • Example: export AGNI_KEY_ID="your_agni_key_id_here"
  2. AGNI_KEY_VALUE

    • Description: The key value corresponding to the AGNI_KEY_ID for authentication.
    • Example: export AGNI_KEY_VALUE="your_agni_key_value_here"
  3. AGNI_ORG_ID

    • Description: Your organization ID in the AGNI service.
    • Example: export AGNI_ORG_ID="your_agni_org_id_here"

Please refer to the AGNI API Guide found below to get these values.

Setting Environment Variables

You can set these variables in your shell before running the Ansible playbook:

export AGNI_KEY_ID="your_agni_key_id_here"
export AGNI_KEY_VALUE="your_agni_key_value_here"
export AGNI_ORG_ID="your_agni_org_id_here"

Relevant documentation

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published