Добрый день! Хочу с помощью ansible конфигурировать mikrotik.
Сделал playbook:
---
- name: Run show commands on routers
hosts: test
gather_facts: no
connection: paramiko
tasks:
- name: snmp
routeros_command:
commands: snmp community set snmp addresses=192.168.90.100/32,192.168.70.254/32
После запятой ansible думает что идет следующая команда, как мне можно использовать данную команду чтобы заработало?
Привет всем. Пытаюсь использовать ansible для настройки коммутаторов.
Содержимое файла hosts:
[eltex]
192.168.90.33
Создал playbook test.yml
---.
- name: Run show commands on routers
hosts: eltex
tasks:
- name: run sh ip int br
cli_command:
command: show version
При запуске ansible-playbook test.yml -vvv -u user
SSH password:
/etc/ansible/hosts did not meet host_list requirements, check plugin documentation if this is unexpected
/etc/ansible/hosts did not meet script requirements, check plugin documentation if this is unexpected
Parsed /etc/ansible/hosts inventory source with ini plugin
PLAYBOOK: test.yml **************************************************************************************************************************************************************************************************************************
1 plays in test.yml
PLAY [Run show commands on routers] *********************************************************************************************************************************************************************************************************