blob: 31014da9ef484e7e761ff6f3594b416943357405 (
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
|
class EdgeSwitch < Oxidized::Model
# Ubiquiti EdgeSwitch #
comment '!'
prompt /[(]\w*\s\w*[)][\s#>]*[\s#>]/
cmd 'show running-config' do |cfg|
cfg.each_line.reject { |line| line.match /System Up Time.*/ or line.match /Current SNTP Synchronized Time.*/ }.join
end
cfg :telnet do
username /Username:\s/
password /^Password:\s/
end
cfg :telnet, :ssh do
post_login 'enable'
post_login 'terminal length 0'
pre_logout 'exit'
pre_logout 'exit'
end
end
|