Skip to content

Instantly share code, notes, and snippets.

@okochang
Last active December 12, 2015 06:38
Show Gist options
  • Save okochang/4730588 to your computer and use it in GitHub Desktop.
Save okochang/4730588 to your computer and use it in GitHub Desktop.
rubyからpingを実行したときのメモ
# -*- coding: utf-8 -*-
require 'net/ping'
## Pingの宛て先を指定して下さい
addr = 'google.co.jp'
pinger = Net::Ping::External.new(addr)
## Pingが通るかどうかテストします
if pinger.ping?
puts 'reachable'
else
puts 'unreachable'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment