Class: Oxidized::Telnet

Inherits:
Input
  • Object
show all
Includes:
Input::CLI
Defined in:
lib/oxidized/input/telnet.rb

Constant Summary collapse

RESCUE_FAIL =
{}.freeze

Instance Attribute Summary collapse

Attributes included from Input::CLI

#node

Instance Method Summary collapse

Methods included from Input::CLI

#connect_cli, #disconnect_cli, #get, #initialize, #login, #newline, #password, #post_login, #pre_logout, #username

Methods included from Config::Vars

#vars

Instance Attribute Details

#telnetObject (readonly)

Returns the value of attribute telnet.



8
9
10
# File 'lib/oxidized/input/telnet.rb', line 8

def telnet
  @telnet
end

Instance Method Details

#cmd(cmd_str, expect = @node.prompt) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
# File 'lib/oxidized/input/telnet.rb', line 38

def cmd(cmd_str, expect = @node.prompt)
  logger.debug "Telnet: #{cmd_str} @#{@node.name}"
  return send(cmd_str + "\r\n") unless expect

  # create a string to be passed to oxidized_expect and modified _there_
  # default to a single space so it shouldn't be coerced to nil by any models.
  out = String(' ')
  @telnet.puts(cmd_str)
  @telnet.oxidized_expect(timeout: @timeout, expect: expect, out: out)
  out
end

#connect(node) ⇒ Object

rubocop:disable Naming/PredicateMethod



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/oxidized/input/telnet.rb', line 10

def connect(node) # rubocop:disable Naming/PredicateMethod
  @node    = node
  @timeout = @node.timeout
  @node.model.cfg['telnet'].each { |cb| instance_exec(&cb) }
  @log = File.open(Oxidized::Config::LOG + "/#{@node.ip}-telnet", 'w') if Oxidized.config.input.debug?
  port = vars(:telnet_port) || 23

  telnet_opts = {
    'Host'    => @node.ip,
    'Port'    => port.to_i,
    'Timeout' => @timeout,
    'Model'   => @node.model,
    'Log'     => @log
  }

  @telnet = Net::Telnet.new telnet_opts
  begin
    
  rescue Timeout::Error
    raise PromptUndetect, ['unable to detect prompt:', @node.prompt].join(' ')
  end
  connected?
end

#connected?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/oxidized/input/telnet.rb', line 34

def connected?
  @telnet && (not @telnet.sock.closed?)
end

#outputObject



54
55
56
# File 'lib/oxidized/input/telnet.rb', line 54

def output
  @telnet.output
end

#send(data) ⇒ Object



50
51
52
# File 'lib/oxidized/input/telnet.rb', line 50

def send(data)
  @telnet.write data
end