blob: bae2b708811b301cc582a8c435654d1d1446bc9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
module Oxidized
require 'fileutils'
FileUtils.mkdir_p Config::Root
CFG.username = 'username'
CFG.password = 'password'
CFG.model = 'junos'
CFG.interval = 3600
CFG.log = File.join Config::Root, 'log'
CFG.debug = false
CFG.threads = 30
CFG.timeout = 5
CFG.prompt = /^([\w.@-]+[#>]\s?)$/
CFG.rest = 8888
CFG.vars = {
:enable => 'enablePW',
}
CFG.input = {
:default => 'ssh, telnet',
}
CFG.output = {
:default => 'git',
}
CFG.source = {
:default => 'csv',
}
CFG.model_map = {
'cisco' => 'ios',
'juniper' => 'junos',
}
CFG.save
end
|