Class: Puppet::NetDev::CE::TelnetSession

Inherits:
Object
  • Object
show all
Defined in:
lib/puppet/provider/ce/session/session.rb

Instance Method Summary collapse

Constructor Details

#initialize(host, username, password) ⇒ TelnetSession

Returns a new instance of TelnetSession.



40
41
42
43
44
45
# File 'lib/puppet/provider/ce/session/session.rb', line 40

def initialize(host, username, password)
  @host = host
  @username = username
  @password = password
  @telnet = nil
end

Instance Method Details

#connectObject



47
48
49
50
51
52
53
54
55
# File 'lib/puppet/provider/ce/session/session.rb', line 47

def connect
          @telnet = Net::Telnet.new('Host' => @host, 'Timeout' => 10, 'Prompt' => /C:.*>/)

          sleep 3
          @telnet.write(@username + "\n")
          @telnet.write(@password + "\n")
          @telnet.write("n\n")
          @telnet
end