Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Waystream iBOS model #1981

Merged
merged 3 commits into from
Jan 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Master

* FEATURE: add Waystream iBOS model

## 0.27.0

* FEATURE: add automatic restart on failure for systemd (@deajan)
Expand Down
55 changes: 55 additions & 0 deletions lib/oxidized/model/ibos.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
class IBOS < Oxidized::Model
# IBOS model, Intelligent Broadband Operating System (iBOS)
# Used in Waystream (previously PacketFront) Routers and Switches

prompt /^([\w.@()-]+[#>]\s?)$/
comment '! '

cmd :all do |cfg|
cfg.each_line.to_a[1..-2].join
end

cmd :secret do |cfg|
# snmp-group version 2c
# notify 10.1.1.1 community public trap
cfg.gsub! /^ notify (\S+) community (\S+) (.*)/, ' notify \\1 community <hidden> \\3'

# snmp-group version 2c
# community public read-only view all
cfg.gsub! /^ community (\S+) (.*)/, ' community <hidden> \\2'

# radius server 10.1.1.1 secret public
cfg.gsub! /^radius server (\S+) secret (\S+)(.*)/, 'radius server \\1 secret <hidden> \\3'
end

cmd 'show version' do |cfg|
cfg.gsub! /.*uptime is.*/, ''
comment cfg
end

cmd 'show running-config' do |cfg|
cfg = cfg.each_line.to_a[0..-1].join
cfg.gsub! /.*!volatile.*/, ''
cfg
end

cfg :telnet do
username /^username:\s/
password /^\r?password:\s/
end

cfg :telnet, :ssh do
# preferred way to handle additional passwords
post_login do
if vars(:enable) == true
cmd "enable"
elsif vars(:enable)
cmd "enable", /^[pP]assword:/
cmd vars(:enable)
end
end
post_login 'terminal no pager'
post_login 'terminal width 65535'
pre_logout 'exit'
end
end