blob: 89a5690ea469e0e4ab3fd9b5ebffda9a75792272 (
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|
comment 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/
passsword /^Password:\s/
end
cfg :telnet, :ssh do
post_login 'enable'
post_login 'terminal length 0'
pre_logout 'exit'
pre_logout 'exit'
end
end
|