Advertisement
Guest User

Untitled

a guest
Jul 26th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.79 KB | None | 0 0
  1. ---
  2. username: myusername
  3. password: "mypassword" # I had to put this in double quotes for some reason
  4. interval: 86400
  5. use_syslog: true
  6. debug: true
  7. threads: 30
  8. timeout: 20
  9. retries: 2
  10. prompt: !ruby/regexp /^([\w.@-]+[#>]\s?)$/
  11. rest: MyServerIP:8080
  12. vars:
  13.   enable: cisco
  14. groups: {}
  15. pid: "/home/oxidized/.config/oxidized/pid"
  16. input:
  17.   default: ssh
  18.   debug: false
  19.   ssh:
  20.     secure : false
  21. output:
  22.   default: git
  23.   git:
  24.       user: oxidized
  25.       email: MyCompanyEmail
  26.       repo: "/home/oxidized/.config/oxidized/oxidized.git"
  27. source:
  28.   default: csv
  29.   csv:
  30.     file: "/home/oxidized/.config/oxidized/router.db"
  31.     delimiter: !ruby/regexp/:/
  32.     map:
  33.       name: 0
  34.       model: 1
  35.       username: 2
  36.       password: 3
  37. model_map:
  38.   cisco: ios
  39.   juniper: junos
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement