Class: Puppet::Transport::CiscoIos
- Inherits:
-
Object
- Object
- Puppet::Transport::CiscoIos
- Defined in:
- lib/puppet/transport/cisco_ios.rb
Overview
Provides a Transport for making remote calls to a Cisco Ios device
Defined Under Namespace
Classes: ModeState
Instance Attribute Summary collapse
-
#commands ⇒ Object
Returns the value of attribute commands.
-
#config ⇒ Object
readonly
Returns the value of attribute config.
-
#connection ⇒ Object
readonly
Returns the value of attribute connection.
Instance Method Summary collapse
- #close(_context) ⇒ Object
- #create_connection ⇒ Object
- #facts(_context) ⇒ Object
-
#initialize(context, connection_info) ⇒ CiscoIos
constructor
A new instance of CiscoIos.
- #retrieve_mode ⇒ Object
- #retrieve_mode_special_config_mode(mode_in = nil) ⇒ Object
- #run_command(command) ⇒ Object
- #run_command_acl_mode(acl_name, acl_type, command) ⇒ Object
- #run_command_conf_t_mode(command) ⇒ Object
- #run_command_enable_mode(command) ⇒ Object
- #run_command_interface_mode(interface_name, command) ⇒ Object
- #run_command_mst_mode(command) ⇒ Object
- #run_command_radius_mode(radius_name, command) ⇒ Object
- #run_command_radius_server_mode(radius_name, command) ⇒ Object
- #run_command_tacacs_mode(tacacs_name, command) ⇒ Object
- #run_command_tacacs_server_group_mode(tacacs_server_group_name, command) ⇒ Object
- #run_command_vlan_mode(vlan_name, command) ⇒ Object
- #run_command_vrf_mode(vrf_name, command) ⇒ Object
- #save_config(from: 'running-config', to: 'startup-config') ⇒ Object
- #send_command(connection_to_use, options, debug = false) ⇒ Object
- #verify(_context) ⇒ Object
Constructor Details
#initialize(context, connection_info) ⇒ CiscoIos
Returns a new instance of CiscoIos.
28 29 30 31 32 33 34 35 36 |
# File 'lib/puppet/transport/cisco_ios.rb', line 28 def initialize(context, connection_info) @context = context @config = connection_info create_connection @enable_password = connection_info[:enable_password].unwrap @facts = facts(context) PuppetX::CiscoIOS::Utility.facts(@facts) end |
Instance Attribute Details
#commands ⇒ Object
Returns the value of attribute commands.
26 27 28 |
# File 'lib/puppet/transport/cisco_ios.rb', line 26 def commands @commands end |
#config ⇒ Object (readonly)
Returns the value of attribute config.
25 26 27 |
# File 'lib/puppet/transport/cisco_ios.rb', line 25 def config @config end |
#connection ⇒ Object (readonly)
Returns the value of attribute connection.
25 26 27 |
# File 'lib/puppet/transport/cisco_ios.rb', line 25 def connection @connection end |
Instance Method Details
#close(_context) ⇒ Object
110 111 112 113 |
# File 'lib/puppet/transport/cisco_ios.rb', line 110 def close(_context) @connection.close if @connection.channel @connection = nil end |
#create_connection ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/puppet/transport/cisco_ios.rb', line 38 def create_connection require 'uri' require 'net/ssh/telnet' Puppet.debug "Trying to connect to #{config[:host]} as #{config[:user]}" known_hosts_file = config[:known_hosts_file] || "#{Puppet[:vardir]}/ssl/known_hosts" # Create the known hosts directory if it does not exist # eg. using --wait dirname = File.dirname(known_hosts_file) FileUtils.mkdir_p(dirname) unless File.directory?(dirname) verify_host_key = (Gem.loaded_specs['net-ssh'].version < Gem::Version.create('4.2.0')) ? :paranoid : :verify_host_key session = if !config[:verify_hosts].nil? && !config[:verify_hosts] Net::SSH.start(config[:host], config[:user], password: config[:password].unwrap, port: config[:port] || 22, timeout: config[:timeout] || 30, verify_host_key => false, user_known_hosts_file: known_hosts_file, append_all_supported_algorithms: true) else Net::SSH.start(config[:host], config[:user], password: config[:password].unwrap, port: config[:port] || 22, timeout: config[:timeout] || 30, verify_host_key => :very, user_known_hosts_file: known_hosts_file, append_all_supported_algorithms: true) end @options = { 'Prompt' => %r{#{commands['default']['connect_prompt']}}, 'Session' => session } if config[:ssh_logging] == true && (Puppet::Util::Log.level == :debug) if config[:ssh_log_file] @options['Dump_log'] = config[:ssh_log_file] else # ensure we have a cache folder structure exists for the device FileUtils.mkdir_p(Puppet[:statedir]) unless File.directory?(Puppet[:statedir]) @options['Dump_log'] = "#{Puppet[:statedir]}/SSH_I_DUMPED" end FileUtils.touch @options['Dump_log'] FileUtils.chmod 0o0640, @options['Dump_log'] end @connection = Net::SSH::Telnet.new(@options) @enable_password = config[:enable_password].unwrap @command_timeout = config[:command_timeout] || 120 # IOS will page large results which breaks prompt search send_command(@connection, 'terminal length 0') @connection end |
#facts(_context) ⇒ Object
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/puppet/transport/cisco_ios.rb', line 94 def facts(_context) facts = { 'operatingsystem' => 'cisco_ios' } # https://www.cisco.com/c/en/us/support/docs/switches/catalyst-6500-series-switches/41361-serial-41361.html begin version_info = @connection.cmd('show version') raise Puppet::Error, 'Could not retrieve facts' unless version_info facts['hardwaremodel'] = version_info[%r{cisco\s+(\S+).+processor}i, 1] facts['hostname'] = version_info[%r{(\S+)\s+uptime}, 1] facts['serialnumber'] = version_info[%r{Processor board ID (\w*)}, 1] facts['operatingsystemrelease'] = version_info[%r{(?i)IOS Software.*Version\s+([^,\s]+)}, 1] facts['os'] = {} facts['os']['family'] = version_info[%r{(.*Software)}] end facts end |
#retrieve_mode ⇒ Object
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 |
# File 'lib/puppet/transport/cisco_ios.rb', line 160 def retrieve_mode unless connection.nil? re_login = Regexp.new(%r{#{commands['default']['login_prompt']}}) re_enable = Regexp.new(%r{#{commands['default']['enable_prompt']}}) re_conf_t = Regexp.new(%r{#{commands['default']['config_prompt']}}) re_conf_if = Regexp.new(%r{#{commands['default']['interface_prompt']}}) re_conf_tacacs = Regexp.new(%r{#{commands['default']['tacacs_prompt']}}) re_conf_vlan = Regexp.new(%r{#{commands['default']['vlan_prompt']}}) re_conf_tacacs_server_group = Regexp.new(%r{#{commands['default']['tacacs_server_group_prompt']}}) re_conf_radius_server_group = Regexp.new(%r{#{commands['default']['radius_server_group_prompt']}}) re_conf_radius_server = Regexp.new(%r{#{commands['default']['radius_server_prompt']}}) re_conf_line = Regexp.new(%r{#{commands['default']['line_prompt']}}) re_conf_mst = Regexp.new(%r{#{commands['default']['mst_prompt']}}) re_conf_std_nacl = Regexp.new(%r{#{commands['default']['std_nacl_prompt']}}) re_conf_ext_nacl = Regexp.new(%r{#{commands['default']['ext_nacl_prompt']}}) re_conf_vrf = Regexp.new(%r{#{commands['default']['vrf_prompt']}}) prompt = send_command(connection, ' ').lines.last.rstrip return ModeState::LOGGED_IN if prompt.match re_login return ModeState::CONF_T if prompt.match re_conf_t return ModeState::CONF_INTERFACE if prompt.match re_conf_if return ModeState::CONF_TACACS if prompt.match re_conf_tacacs return ModeState::CONF_VLAN if prompt.match re_conf_vlan return ModeState::CONF_TACACS_SERVER_GROUP if prompt.match re_conf_tacacs_server_group return ModeState::CONF_RADIUS_SERVER_GROUP if prompt.match re_conf_radius_server_group return ModeState::CONF_RADIUS_SERVER if prompt.match re_conf_radius_server return ModeState::CONF_LINE if prompt.match re_conf_line return ModeState::CONF_MST if prompt.match re_conf_mst return ModeState::CONF_STD_NACL if prompt.match re_conf_std_nacl return ModeState::CONF_EXT_NACL if prompt.match re_conf_ext_nacl return ModeState::CONF_VRF if prompt.match re_conf_vrf return ModeState::ENABLED if prompt.match re_enable end ModeState::NOT_CONNECTED end |
#retrieve_mode_special_config_mode(mode_in = nil) ⇒ Object
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
# File 'lib/puppet/transport/cisco_ios.rb', line 204 def retrieve_mode_special_config_mode(mode_in = nil) mode_in = retrieve_mode if mode_in.nil? if [ModeState::CONF_INTERFACE, ModeState::CONF_TACACS, ModeState::CONF_VLAN, ModeState::CONF_TACACS_SERVER_GROUP, ModeState::CONF_RADIUS_SERVER_GROUP, ModeState::CONF_RADIUS_SERVER, ModeState::CONF_LINE, ModeState::CONF_MST, ModeState::CONF_STD_NACL, ModeState::CONF_EXT_NACL, ModeState::CONF_VRF].include?(mode_in) return true end false end |
#run_command(command) ⇒ Object
200 201 202 |
# File 'lib/puppet/transport/cisco_ios.rb', line 200 def run_command(command) send_command(connection, command, false) end |
#run_command_acl_mode(acl_name, acl_type, command) ⇒ Object
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 |
# File 'lib/puppet/transport/cisco_ios.rb', line 381 def run_command_acl_mode(acl_name, acl_type, command) conf_acl_cmd = "ip access-list #{acl_type} #{acl_name}" modestate_type = if acl_type.casecmp('extended').zero? ModeState::CONF_EXT_NACL else ModeState::CONF_STD_NACL end if retrieve_mode != modestate_type run_command_conf_t_mode(conf_acl_cmd) # If we were unable to enter ACL mode for whatever reason, throw error if retrieve_mode != modestate_type raise "Could not enter ACL mode for #{acl_name}" end end send_command(connection, command, true) # Exit out of ACL mode to save changes send_command(connection, 'exit', true) end |
#run_command_conf_t_mode(command) ⇒ Object
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
# File 'lib/puppet/transport/cisco_ios.rb', line 256 def run_command_conf_t_mode(command) re_conf_t = Regexp.new(%r{#{commands['default']['config_prompt']}}) conf_t_cmd = { 'String' => 'conf t', 'Match' => re_conf_t } mode = retrieve_mode if retrieve_mode_special_config_mode(mode) send_command(connection, 'String' => 'exit', 'Match' => re_conf_t) elsif mode != ModeState::ENABLED run_command_enable_mode(conf_t_cmd) elsif mode == ModeState::ENABLED send_command(connection, conf_t_cmd) end return_value = send_command(connection, command, true) confirm_prompt = Regexp.new(%r{#{commands['default']['new_model_confirm']}}) acc_confirm_prompt = Regexp.new(%r{#{commands['default']['aaa_accounting_identity_confirm']}}) # confirm prompt eg. # Proceed with the command? [confirm] if return_value.match(confirm_prompt) || return_value.match(acc_confirm_prompt) send_command(connection, '', true) end # Belt and braces approach to potential motd matching as a prompt - send a space with an implicit newline to clear the prompt send_command(connection, ' ', true) return_value end |
#run_command_enable_mode(command) ⇒ Object
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
# File 'lib/puppet/transport/cisco_ios.rb', line 223 def run_command_enable_mode(command) re_enable = Regexp.new(%r{#{commands['default']['enable_prompt']}}) re_conf_t = Regexp.new(%r{#{commands['default']['config_prompt']}}) mode = retrieve_mode if mode == ModeState::CONF_T send_command(connection, 'String' => 'exit', 'Match' => re_enable) elsif retrieve_mode_special_config_mode(mode) send_command(connection, 'String' => 'exit', 'Match' => re_conf_t) send_command(connection, 'String' => 'exit', 'Match' => re_enable) elsif mode != ModeState::ENABLED # Match either nothing (password prompt), or cli prompt (error state) # Errors will be picked out by send_command enable_cmd = { 'String' => 'enable', 'Match' => %r{|#$|>$} } prompt = send_command(connection, enable_cmd, true) # Do not send password unless requried unless prompt =~ %r{#$} # Turn off dump log to prevent leaking enable password = connection.instance_variable_get(:@options) dump_log = ['Dump_log'] if dump_log .delete('Dump_log') connection.instance_variable_set(:@options, ) send_command(connection, @enable_password) ['Dump_log'] = dump_log connection.instance_variable_set(:@options, ) else send_command(connection, @enable_password) end end end send_command(connection, command, true) end |
#run_command_interface_mode(interface_name, command) ⇒ Object
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
# File 'lib/puppet/transport/cisco_ios.rb', line 281 def run_command_interface_mode(interface_name, command) conf_if_cmd = "interface #{interface_name}" if retrieve_mode != ModeState::CONF_INTERFACE run_command_conf_t_mode(conf_if_cmd) # If we were unable to enter interface mode for whatever reason, throw error if retrieve_mode != ModeState::CONF_INTERFACE raise "Could not enter interface mode for interface #{interface_name}" end end command.split("\n").each do |sub_command| prompt = send_command(connection, sub_command, true) re_conf_confirm = Regexp.new(%r{#{commands['default']['network_trunk_confirm']}}) # Network trunk confirm prompt eg. # Subinterfaces configured on this interface will not be available after switchport. # Proceed with the command? [confirm] if prompt.match(re_conf_confirm) send_command(connection, '', true) end end # Exit out of interface mode to save changes send_command(connection, 'exit', true) end |
#run_command_mst_mode(command) ⇒ Object
370 371 372 373 374 375 376 377 378 379 |
# File 'lib/puppet/transport/cisco_ios.rb', line 370 def run_command_mst_mode(command) re_conf_mst = Regexp.new(%r{#{commands['default']['mst_prompt']}}) conf_mst_cmd = { 'String' => 'spanning-tree mst configuration', 'Match' => re_conf_mst } if retrieve_mode != ModeState::CONF_MST run_command_conf_t_mode(conf_mst_cmd) end send_command(connection, command, true) # Exit out of mst mode to save changes send_command(connection, 'exit', true) end |
#run_command_radius_mode(radius_name, command) ⇒ Object
315 316 317 318 319 320 321 322 323 324 |
# File 'lib/puppet/transport/cisco_ios.rb', line 315 def run_command_radius_mode(radius_name, command) re_conf_radius = Regexp.new(%r{#{commands['default']['radius_prompt']}}) conf_radius_cmd = { 'String' => "aaa group server radius #{radius_name}", 'Match' => re_conf_radius } if retrieve_mode != ModeState::CONF_RADIUS_SERVER_GROUP run_command_conf_t_mode(conf_radius_cmd) end send_command(connection, command, true) # Exit out of radius mode to save changes send_command(connection, 'exit', true) end |
#run_command_radius_server_mode(radius_name, command) ⇒ Object
326 327 328 329 330 331 332 333 334 335 |
# File 'lib/puppet/transport/cisco_ios.rb', line 326 def run_command_radius_server_mode(radius_name, command) re_conf_radius_server = Regexp.new(%r{#{commands['default']['radius_server_prompt']}}) conf_radius_server_cmd = { 'String' => "radius server #{radius_name}", 'Match' => re_conf_radius_server } if retrieve_mode != ModeState::CONF_RADIUS_SERVER run_command_conf_t_mode(conf_radius_server_cmd) end send_command(connection, command, true) # Exit out of radius server mode to save changes send_command(connection, 'exit', true) end |
#run_command_tacacs_mode(tacacs_name, command) ⇒ Object
337 338 339 340 341 342 343 344 345 346 |
# File 'lib/puppet/transport/cisco_ios.rb', line 337 def run_command_tacacs_mode(tacacs_name, command) re_conf_tacacs = Regexp.new(%r{#{commands['default']['tacacs_prompt']}}) conf_tacacs_cmd = { 'String' => "tacacs server #{tacacs_name}", 'Match' => re_conf_tacacs } if retrieve_mode != ModeState::CONF_TACACS run_command_conf_t_mode(conf_tacacs_cmd) end send_command(connection, command, true) # Exit out of tacacs mode to save changes send_command(connection, 'exit', true) end |
#run_command_tacacs_server_group_mode(tacacs_server_group_name, command) ⇒ Object
359 360 361 362 363 364 365 366 367 368 |
# File 'lib/puppet/transport/cisco_ios.rb', line 359 def run_command_tacacs_server_group_mode(tacacs_server_group_name, command) re_conf_tacacs_server_group = Regexp.new(%r{#{commands['default']['tacacs_server_group_prompt']}}) conf_tacacs_server_group_cmd = { 'String' => "aaa group server tacacs #{tacacs_server_group_name}", 'Match' => re_conf_tacacs_server_group } if retrieve_mode != ModeState::CONF_TACACS_SERVER_GROUP run_command_conf_t_mode(conf_tacacs_server_group_cmd) end send_command(connection, command, true) # Exit out of tacacs server group mode to save changes send_command(connection, 'exit', true) end |
#run_command_vlan_mode(vlan_name, command) ⇒ Object
348 349 350 351 352 353 354 355 356 357 |
# File 'lib/puppet/transport/cisco_ios.rb', line 348 def run_command_vlan_mode(vlan_name, command) re_conf_vlan = Regexp.new(%r{#{commands['default']['vlan_prompt']}}) conf_vlan_cmd = { 'String' => "vlan #{vlan_name}", 'Match' => re_conf_vlan } if retrieve_mode != ModeState::CONF_VLAN run_command_conf_t_mode(conf_vlan_cmd) end send_command(connection, command, true) # Exit out of vlan mode to save changes send_command(connection, 'exit', true) end |
#run_command_vrf_mode(vrf_name, command) ⇒ Object
304 305 306 307 308 309 310 311 312 313 |
# File 'lib/puppet/transport/cisco_ios.rb', line 304 def run_command_vrf_mode(vrf_name, command) re_conf_vrf = Regexp.new(%r{#{commands['default']['vrf_prompt']}}) conf_vrf_cmd = { 'String' => "ip vrf #{vrf_name}", 'Match' => re_conf_vrf } if retrieve_mode != ModeState::CONF_VRF run_command_conf_t_mode(conf_vrf_cmd) end send_command(connection, command, true) # Exit out of vrf mode to save changes send_command(connection, 'exit', true) end |
#save_config(from: 'running-config', to: 'startup-config') ⇒ Object
401 402 403 404 405 406 407 408 409 |
# File 'lib/puppet/transport/cisco_ios.rb', line 401 def save_config(from: 'running-config', to: 'startup-config') shhh_command = 'file prompt quiet' copy_command = "copy #{from} #{to}" run_command_conf_t_mode(shhh_command) copy_result = run_command_enable_mode(copy_command) copy_status = copy_result.match(%r{\[OK\]|\d+ bytes copied in \d+\.\d+ secs \(\d+ bytes\/sec\)}) raise "Unexpected results for: #{copy_command}: \n: #{copy_result}" unless copy_status copy_status end |
#send_command(connection_to_use, options, debug = false) ⇒ Object
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/puppet/transport/cisco_ios.rb', line 119 def send_command(connection_to_use, , debug = false) if .is_a?(Hash) ['Timeout'] = @command_timeout unless .key?('Timeout') elsif .is_a?(String) = { 'String' => , 'Timeout' => @command_timeout } end return_value = connection_to_use.cmd() # Check for authentication related errors access_denied = commands['default']['access_denied'] = commands['default']['command_authorization_failed'] error_in_authentication = commands['default']['error_in_authentication'] # If authentication related, do not output value as it is most likely sensitive if return_value =~ %r{#{access_denied}|#{}|#{error_in_authentication}} raise return_value.to_s end unknown_command = commands['default']['unknown_command'] invalid_input = commands['default']['invalid_input'] incomplete_command = commands['default']['incomplete_command'] command_rejected = commands['default']['command_rejected'] default_vlan_only_allowed = commands['default']['default_vlan_only_allowed'] default_vlan_name_change = commands['default']['default_vlan_name_change'] if return_value =~ %r{#{unknown_command}|#{invalid_input}|#{incomplete_command}|#{command_rejected}|#{default_vlan_only_allowed}|#{default_vlan_name_change}} sent_string = if .is_a?(Hash) ['String'] else end raise "\n'#{return_value}'\nError sending: '#{sent_string}'" end if debug && !return_value.strip.empty? = "cisco_ios.send_command from:\n" caller.select { |line| line =~ %r{puppet/(provider|transport)+} }.each do |line| += "\t#{line}\n" end += "rtn: #{return_value.inspect}'" Puppet.debug() end return_value end |
#verify(_context) ⇒ Object
115 116 117 |
# File 'lib/puppet/transport/cisco_ios.rb', line 115 def verify(_context) raise if @connection.channel.nil? end |