blob: 78164d03d8dd17959b28ff8410149c13e4c33b75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
module Oxidized
require 'stringio'
require_relative 'cli'
begin
require 'net/tftp'
rescue LoadError
raise OxidizedError, 'net/tftp not found: sudo gem install net-tftp'
end
class TFTP < Input
include Input::CLI
# TFTP utilizes UDP, there is not a connection. We simply specify an IP and send/receive data.
def connect node
@node = node
@node.model.cfg['tftp'].each { |cb| instance_exec(&cb) }
@log = File.open(Oxidized::Config::Log + "/#{@node.ip}-tftp", 'w') if Oxidized.config.input.debug?
@tftp = Net::TFTP.new @node.ip
end
def cmd file
Oxidized.logger.debug "TFTP: #{file} @ #{@node.name}"
config = StringIO.new
@tftp.getbinary file, config
config.rewind
config.read
end
private
def disconnect
# TFTP uses UDP, there is no connection to close
ensure
@log.close if Oxidized.config.input.debug?
end
end
end
|