Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!
Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.
Hej,
Ktoś miał może styczność z tworzeniem automatyki do zarządzania infrastrukturą sieciową z użyciem ansible'a ? Mam sprzęt z Cisco 3550/3560+ HP Procurve, i o ile z Cisco udało mi się stworzyć komunikację między ansiblem a sprzętem, o tyle z sprzętem HP mam problem.
Dodam że przy tworzeniu skryptów testowych w pythonie z użyciem paramiko, działa wszystko poprawnie zarówno dla Cisco jak i HP.
root@vm:/etc/ansible# ansible cisco -u username -m raw -a "show arp"
switch1 | success | rc=0 >> Protocol Address Age (min) Hardware Addr Type Interface Internet X 197 0000.0c07.ac0a ARPA Vlan267 Internet X 0 001d.a1b6.0800 ARPA Vlan267 Internet X 174 0024.97dd.6b7f ARPA Vlan267 Internet X 53 0024.97dd.4a85 ARPA Vlan267 Internet X 0 5c5e.ab68.b882 ARPA Vlan267 Internet X - 001a.6d13.c341 ARPA Vlan267
root@vm:/etc/ansible# ansible -vvvv hp -u username -m raw -a "show arp"
<10.167.X.X> ESTABLISH CONNECTION FOR USER: username on PORT 22 TO 10.167.X.X <10.167.X.X> EXEC show arp switch2 | FAILED => Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/ansible-1.9.4-py2.7.egg/ansible/runner/__init__.py", line 586, in _executor exec_rc = self._executor_internal(host, new_stdin) File "/usr/local/lib/python2.7/dist-packages/ansible-1.9.4-py2.7.egg/ansible/runner/__init__.py", line 789, in _executor_internal return self._executor_internal_inner(host, self.module_name, self.module_args, inject, port, complex_args=complex_args) File "/usr/local/lib/python2.7/dist-packages/ansible-1.9.4-py2.7.egg/ansible/runner/__init__.py", line 1036, in _executor_internal_r result = handler.run(conn, tmp, module_name, module_args, inject, complex_args) File "/usr/local/lib/python2.7/dist-packages/ansible-1.9.4-py2.7.egg/ansible/runner/action_plugins/raw.py", line 47, in run become=self.runner.become) File "/usr/local/lib/python2.7/dist-packages/ansible-1.9.4-py2.7.egg/ansible/runner/__init__.py", line 1174, in _low_level_exec_comd in_data=in_data) File "/usr/local/lib/python2.7/dist-packages/ansible-1.9.4-py2.7.egg/ansible/runner/connection_plugins/paramiko_ssh.py", line 222, d chan.exec_command(quoted_command) File "build/bdist.linux-x86_64/egg/paramiko/channel.py", line 60, in _check return func(self, *args, **kwds) File "build/bdist.linux-x86_64/egg/paramiko/channel.py", line 234, in exec_command self._wait_for_event() File "build/bdist.linux-x86_64/egg/paramiko/channel.py", line 1109, in _wait_for_event raise e SSHException: Channel closed.
---
ansible.cfg
[defaults] inventory = /etc/ansible/hosts library = /usr/share/ansible/ transport = paramiko host_key_checking = False
hosts
[hp] switch1 [cisco] switch2 [hp:vars] platform = hp_procurve ansible_ssh_user=username ansible_ssh_pass=pass123 ansible_ssh_host=10.167.Y.Y [cisco:vars] platform = cisco_ios ansible_ssh_user=username ansible_ssh_pass=pass123 ansible_ssh_host=10.167.X.X
Za jakiekolwiek rady będę wdzięczny :)
Offline
Ok udało mi się rozwiązać problem. Trzeba było ręcznie podać 'dir_template' do szablonów ntc, teraz playbooki działają normalnie.
Offline