vaguerent/lib/vagrant/util/ipv4_interfaces.rb
2020-05-18 10:39:21 -07:00

16 lines
314 B
Ruby

module Vagrant
module Util
module IPv4Interfaces
def ipv4_interfaces
Socket.getifaddrs.select do |ifaddr|
ifaddr.addr && ifaddr.addr.ipv4?
end.map do |ifaddr|
[ifaddr.name, ifaddr.addr.ip_address]
end
end
extend IPv4Interfaces
end
end
end