Class: Puppet::NetDev::CE::TelnetSession
- Inherits:
-
Object
- Object
- Puppet::NetDev::CE::TelnetSession
- Defined in:
- lib/puppet/provider/ce/session/session.rb
Instance Method Summary collapse
- #connect ⇒ Object
-
#initialize(host, username, password) ⇒ TelnetSession
constructor
A new instance of TelnetSession.
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
#connect ⇒ Object
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 |