Ansible 模块 pyATEOS 框架。
项目描述
pyateos-ansible
pyATEOS框架的 Ansible 模块。
安装:
要安装只需运行以下命令:
pip install pyateos-ansible
配置 Ansible:
编辑您的ansible.cfg文件并添加eos_pyateos安装模块的路径。
IE
[defaults]
library = ./lib/python3.7/site-packages/pyateos-ansible/modules
如果您运行virtualenv最有可能的路径将类似于上面的示例。否则,您可以使用例如mlocate查找模块的位置。
有关更多信息,请查看Ansible Docs
模块文档:
options:
test:
description:
- One ore more test to be run. Every test correspond to a specific "show" command
i.e. ntp - show ntp associations.
For more details: https://gitlab.com/networkAutomation/pyateos/-/blob/master/README.md
choices: [
'acl',
'arp',
'as_path',
'bgp_evpn',
'bgp_ipv4',
'interface',
'ip_route',
'mac',
'mlag',
'ntp',
'lldp',
'prefix_list',
'route_map',
'snmp',
'stp',
'vlan',
'vrf',
'vxlan',
'bfd']
type: list
before:
description:
- Run pre-check tests defined under 'test' and generate .json.
The fiename and directory path is the following: /tests/before/hostname/timestamp.json
default: false
type: bool
after:
description:
- Run post-check tests defined under 'test'.
The fiename and directory path is the following: /tests/after/hostname/timestamp.json
default: false
type: bool
diff:
description:
- Run between vs. after diffs and save the result in .json format.
The fiename and directory path is the following: /tests/diff/hostname/diff_timestamp_before_after.json
default: false
type: bool
files:
description:
- List of before and after file IDs to compare in order to generate diff. Each file id
is available under `result.before_file_ids` and `result.after_file_ids`
type: list
filter:
description:
- Valid only with `compare`. Filter reduces the output returning just the
`insert` and `delete` in diff i.e. intrface - all interfaces counters are filtered.
type: bool
default: false
group:
description:
- Pre set group of test. `group` and `test` are allowed togehter.
For more details: https://gitlab.com/networkAutomation/pyateos/-/blob/master/README.md
type: list
choices: [
'mgmt',
'routing',
'layer2',
'ctr',
'all'
]
hostname:
description:
- Device hostname required for filesystem build
type: str
required: true
例子:
- name: run BEFORE tests.
eos_pyateos:
before: true
test:
- acl
group:
- mgmt
- layer2
hostname: "{{ inventory_hostname }}"
register: result
- name: save BEFORE file IDs.
delegate_to: 127.0.0.1
set_fact:
before_ids: "{{ result.before_file_ids }}"
- name: change mgmt config on switch.
eos_config:
lines:
- no ntp server vrf mgmt 10.75.33.5
- ntp server vrf mgmt 216.239.35.4
- no snmp-server host 10.1.22.1 vrf mgmt version 2c snmp_pass
- snmp-server host 10.1.22.9 vrf mgmt version 2c snmp_pass
- name: shutdown interface.
eos_config:
lines:
- shutdown
parents: interface Ethernet50/1
- name: edit ACL.
eos_config:
lines:
- no 10
- 10 remark pyATEOS TEST
parents: ip access-list standard SNMP
- name: run AFTER tests.
eos_pyateos:
after: true
test:
- acl
group:
- mgmt
- layer2
hostname: "{{ inventory_hostname }}"
register: result
- name: save AFTER file IDs.
delegate_to: 127.0.0.1
set_fact:
after_ids: "{{ result.after_file_ids }}"
- name: run DIFF result.
eos_pyateos:
compare: true
group:
- mgmt
- layer2
test:
- acl
hostname: "{{ inventory_hostname }}"
filter: true
files:
- "{{ before_ids }}"
- "{{ after_ids }}"
项目详情
下载文件
下载适用于您平台的文件。如果您不确定要选择哪个,请了解有关安装包的更多信息。
源分布
pyateos-ansible-1.0.7.tar.gz
(7.8 kB
查看哈希)
内置分布
pyateos_ansible-1.0.7-py3-none-any.whl
(20.3 kB
查看哈希)
关
pyateos_ansible -1.0.7-py3-none-any.whl 的哈希值
| 算法 | 哈希摘要 | |
|---|---|---|
| SHA256 | ad68cd3c75247549b225b4d415ee9e57e31a4875b78895f297e627f963985895 |
|
| MD5 | 71508155594cdb407eed15c880dd58e0 |
|
| 布莱克2-256 | 775bbe40ea1cf240aea0e69a16a4356210066b7d9a7fb364e5176ff8c1462a7b |