class IPAddr def netmask _to_string(@mask_addr) end def cidr IPAddr.new(netmask).to_i.to_s(2).count("1") end def to_cidr to_string + "/" + cidr.to_s end end