Tagged Questions
1
vote
2answers
398 views
IP Range to CIDR in Ruby/Rails?
I want to do two things: Convert IP Address inputs into CIDR
Here are some example inputs:
1.1.1.1
192.168.*.* #=> 192.168.0-255.0-255
192.168.1.2-20
1.1.1-10.1-100
Check if a given IP ...
0
votes
1answer
211 views
NetAddr::Tree take list of CIDR and merge them?
I’m using the Ruby NetAddr::Tree class to hold a bunch of CIDR objects, but I need a way to compress the CIDR objects into larger subnets.
I want a way to take IPs like:
12.26.8.0/21
12.26.16.0/21
...