Advertisement
Guest User

Untitled

a guest
Oct 12th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. ~/Development/ansible-mikrotik$ tree
  2. .
  3. ├── ansible.cfg
  4. ├── group_vars
  5. │   ├── all.yml
  6. │   ├── mikrotik-routers.yml
  7. │   └── mikrotik-switches.yml
  8. ├── host_vars
  9. │   └── 192.168.0.106
  10. └── hosts
  11.  
  12. ~/Development/ansible-mikrotik$ cat ansible.cfg
  13. [defaults]
  14. inventory = ./hosts
  15. remote_user = ansible
  16. remote_port = 22
  17. #private_key_file=.vagrant/machines/default/virtualbox/private_key
  18. ask_pass = True
  19. gathering = explicit
  20. timeout = 5
  21. host_key_checking = False
  22.  
  23. [paramiko_connection]
  24. pty = False
  25.  
  26. ~/Development/ansible-mikrotik$ cat hosts
  27. [mikrotik-routers]
  28. 192.168.0.106
  29.  
  30. [mikrotik-switches]
  31. 192.168.0.106
  32.  
  33. [mikrotik-devices:children]
  34. mikrotik-routers
  35. mikrotik-switches
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement