Ruby 使用 Net::Ping 连接到指定的 TCP/UDP 端口 2014/10/29 15040 require 'rubygems' require 'net/ping' if Net::PingTCP.new('http://www.google.com/', 80).ping puts "Pong!" else puts "No response" end