Metadata-Version: 2.1
Name: cat9kthousandeyesctl
Version: 0.0.1
Summary: Cisco Catalyst 9000 with Thousand Eyes agents
Home-page: https://github.com/robertcsapo/cat9kthousandeyesctl
Author: Robert Csapo
Author-email: rcsapo@cisco.com
License: CISCO SAMPLE CODE LICENSE
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: Other/Proprietary License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: click (==7.1.2)
Requires-Dist: PyYAML (==5.4.1)
Requires-Dist: ncclient (==0.6.10)
Requires-Dist: xmltodict (==0.12.0)
Requires-Dist: tqdm (==4.60.0)

# cat9kthousandeyesctl

Deploy Cisco Thousand Eyes agent on Cisco Catalyst 9000

```
cat9kthousandeyesctl deploy -c config.yaml 
Deploying Thousand Eyes Agents
100.118.1.71: Thousand Eyes Agent Deployed: 100%|█████████████████████████████| 9/9 [07:42<00:00, 57.82s/it]
100.118.1.69: Thousand Eyes Agent Deployed: 100%|█████████████████████████████| 9/9 [02:14<00:00, 16.77s/it]
100.118.1.81: Thousand Eyes Agent Deployed: 100%|█████████████████████████████| 9/9 [02:45<00:00, 20.69s/it]
```

## Prerequisites
- Network connectivity
    - Internet
    - DNS
    - DHCP
- Cisco Thousand Eyes Account
    - Token
- Cisco Catalyst 9000
    - C9300
    - C9400
- Cisco IOS-XE Software
    - 17.3.3+
- ```netconf-yang``` enabled
- Python 3
  - Version: 3.7+

## Installation

### Python Package Index (PyPI)
```pip install cat9kthousandeyesctl```

```cat9kthousandeyesctl --help```

### Config
Download [config.yaml](./config.yaml) sample config

### Deploy
```cat9kthousandeyesctl deploy --config config.yaml```

### Undeploy (remove)
```cat9kthousandeyesctl undeploy --config config.yaml```

## Features

Include a succinct summary of the features/capabilities of your project.

- [x] Deploy
- [x] Undeploy
- [x] YAML Config
    - VLAN
    - Agent Download URL
- [x] Interactive mode (prompt)

## Technologies & Frameworks Used

**Cisco Products & Services:**

- Cisco Catalyst 9000
- Cisco Thousand Eyes

**Tools & Frameworks:**

- Python
    - click
    - ncclient
    - tqdm
- Docker

## Usage

```
Usage: cat9kthousandeyesctl [OPTIONS] COMMAND [ARGS]...

  Manage Thousand Eyes Agent on Catalyst 9000

Options:
  --version  Show the version and exit.
  --debug    Enable logging
  --help     Show this message and exit.

Commands:
  deploy       Deploy Thousand Eyes Agent
  interactive  Interactive TTY mode
  undeploy     Remove Thousand Eyes Agent
```

## Config

```
# Netconf Settings
username: admin
password: password
port: 830
timeout: 600

# Thousand Eyes Agent Settings
download_url: https://downloads.thousandeyes.com/enterprise-agent/thousandeyes-enterprise-agent-3.0.cat9k.tar
appid: thousandeyes_enterprise_agent
vlan: 1
token: thousand_eyes_token

# Devices to manage
hosts:
  192.168.1.1:
  192.168.1.2:
    vlan: 100 # Override global vlan
  10.0.0.1:
    vlan: 200
  10.0.0.2:
    vlan: 200
```

## Authors & Maintainers

- Robert Csapo <rcsapo@cisco.com>

## License

This project is licensed to you under the terms of the [Cisco Sample
Code License](./LICENSE).


