Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
835
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. ---
  2. username: Default-Username //This is the default user/pass to use unless overridden
  3. password: Default-Password
  4. model: ios //Default switch type, unless overridden
  5. interval: 3600 //How often polled, in seconds (1hour)
  6. use_syslog: false
  7. debug: false
  8. threads: 30
  9. timeout: 20
  10. retries: 3
  11. prompt: !ruby/regexp /^([\w.@-]+[#>]\s?)$/
  12. rest: 0.0.0.0:8888 //IP address/Port to listen on
  13. vars: {}
  14. groups: {}
  15. pid: "/home/oxidized/.config/oxidized/pid"
  16. input:
  17. default: ssh, telnet
  18. debug: false
  19. ssh:
  20. secure: false
  21. output:
  22. default: git //Write output to Git. Enables advanced features
  23. git:
  24. user: oxidized //User to write Git under
  25. email: oxidized@oxidized.local
  26. repo: "~/.config/oxidized/oxidized.git" //Storage location of Git
  27.  
  28. source:
  29. default: csv
  30. csv: //Use a file for config, specified on next line
  31. file: /home/oxidized/.config/oxidized/router.db
  32.  
  33. //Format:
  34. //hostname(orIP):modelname:username:password:enablepassword
  35. //Only name (hostname) and model are required, the other things
  36. //will use global values from this config file if left blank.
  37.  
  38. delimiter: !ruby/regexp /:/
  39. map:
  40. name: 0
  41. model: 1
  42. username: 2
  43. password: 3
  44. vars_map:
  45. enable: 4
  46. model_map:
  47. cisco: ios
  48. juniper: junos
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement