blob: 84ef8cbcfe46079b1fb57b57c9a2578cdb9d9163 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
|
class EOS < Oxidized::Model
# Arista EOS model #
prompt /^.+[#>]\s?$/
comment '! '
cmd :all do |cfg|
cfg.each_line.to_a[1..-2].join
end
cmd :secret do |cfg|
cfg.gsub! /^(snmp-server community).*/, '\\1 <configuration removed>'
cfg.gsub! /username (\S+) privilege (\d+) (\S+).*/, '<secret hidden>'
cfg.gsub! /^(enable secret).*/, '\\1 <configuration removed>'
cfg
end
cmd 'show inventory | no-more' do |cfg|
comment cfg
end
cmd 'show running-config | no-more' do |cfg|
cfg
end
cfg :telnet, :ssh do
if vars :enable
post_login do
send "enable\n"
# Interpret enable: true as meaning we won't be prompted for a password
unless vars(:enable).is_a? TrueClass
expect /[pP]assword:\s?$/
send vars(:enable) + "\n"
end
expect /^.+[#>]\s?$/
end
post_login 'terminal length 0'
end
pre_logout 'exit'
end
end
|