Sha256: 45a895ca43779630b39ddaddfb108c2e85a5c965dff49a88ba71d617526a3af6
Contents?: true
Size: 1.92 KB
Versions: 2
Compression:
Stored size: 1.92 KB
Contents
require 'time' module OVSImager class TcpDump SIZE = 400 def initialize(ping=false, from=nil, to=nil) throw 'must be root.' if Process::UID.eid != 0 @ping = ping @from = from @to = to end def test(ifaces) result = {} ping = nil if @ping puts "Sending ping from #{@from} to #{@to} ..." ping = IO.popen("ping -s #{SIZE} -c 15 -I #{@from} #{@to} >/dev/null", "r") end threads = ifaces.map do |(iface, iref)| Thread.new do Thread.current[:iface] = iface ns = iref[:ns] nscmd = ns == :root ? '' : "ip netns exec #{ns} " dump = IO.popen("exec #{nscmd}tcpdump -v -l -n -i #{iface} \\( icmp or udp port 4789 \\) and greater #{SIZE} 2>&1", "r") puts dump.gets time_end = Time.now + 5 req_from = req_to = rep_from = rep_to = nil while (waitmax = time_end - Time.now) > 0 do rs, ws, = IO.select([dump], [], [], waitmax) break unless rs if r = rs[0] msg = r.gets break unless msg # puts msg if msg.match(/length #{SIZE+8}/) && msg.match(/([\da-f\.:]+) > ([\da-f\.:]+): ICMP echo (request|reply)/) if $3 == 'request' req_from = $1 req_to = $2 else rep_from = $1 rep_to = $2 end break if req_from && req_to && rep_from && rep_to end end end puts "Killing tcpdump(#{dump.pid}) on interface #{iface}." Process.kill('TERM', dump.pid) dump.close result[iface] = [req_from, req_to, rep_from, rep_to] end end threads.each {|th| th.join(10)} if @ping Process.kill('TERM', ping.pid) ping.close end return result end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ovsimager-0.0.3 | lib/ovsimager/tcpdump.rb |
ovsimager-0.0.2 | lib/ovsimager/tcpdump.rb |