File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
1919- netgear: extended login and pager detection to add support for GS728TPv2 and GS752TPv2 (@weberc )
2020
2121### Fixed
22+ - VyOS: Only remove SNMP community, not route-maps. Fixes #3735 (@systeembeheerder )
2223- apc_aos: set comment to "; " to match comments in config.ini (@robertcheramy )
2324- h3c: fix overly permissive prompt regexp causing false matches. Fixes #3673 (@robertcheramy )
2425- extra/device2yaml.rb: fix \r being removed at end of line (@robertcheramy )
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class Vyos < Oxidized::Model
1515 cmd :secret do |cfg |
1616 cfg . gsub! /secret (\S +).*/ , 'secret <secret removed>'
1717 cfg . gsub! /password (\S +).*/ , 'password <secret removed>'
18- cfg . gsub! /community (\S +)/ , 'community <secret removed>'
18+ cfg . gsub! /snmp community (\S +)/ , 'snmp community <secret removed>'
1919 cfg . gsub! /preshared-key (\S +).*/ , 'preshared-key <secret removed>'
2020 cfg . gsub! /private key (\S +).*/ , 'private key <secret removed>'
2121 cfg . gsub! /private-key (\S +).*/ , 'private-key <secret removed>'
You can’t perform that action at this time.
0 commit comments