0
votes
2answers
61 views

CSV read & write - IP matching IP Range

I've got an issue but don't really have sufficient Python knowledge to solve it. I found some similar cases so for someone who is really good at Python this is probably a really small task to solve, ...
0
votes
1answer
105 views

TXT to CSV file with IP Range to CIDR conversion

HI everyone first of all thank you for visiting my question I am working with a new IDS, OSSIM, It's database requires a host's: Name, CIDR, and Description in a .csv format for uploading through a ...
0
votes
2answers
42 views

Subnetworking zero CIDR notation

A friend and I are arguing about the CIDR notation. What happend if a host have a /0 mask ? My friend said he always be able to communicate with all computers in the world and the host will always ...
0
votes
1answer
39 views

CIDR Binary reading

HI you all im currently studying Network Address.. I wanna know the CIDR of this coz im a little confused on what will be the right CIDR... well i know in .. IP: 202.67.132.1 Sub:255.224.0.0 its ...
-1
votes
3answers
556 views

How can I convert IP range to Cidr in C#?

There has lots of example of convert CIDR to ip range. But I want to know how can I use start/end ip address to generate a/some cidr in C#? for example: I have start ip address(192.168.0.1) and end ...
1
vote
2answers
399 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 ...
2
votes
2answers
408 views

Convert ip array to smallest cidr subnet list in java

I have an ip array like below and I want to convert it to smallest cidr subnet list. Is there a library for that in Java? For example: 1.1.3.0 1.1.3.1 1.1.3.2 1.1.3.3 .. 1.1.3.254 1.1.3.255 1.2.3.0 ...
0
votes
3answers
654 views

How to determine whether my internet IP belongs to a given IP list using Qt

I have following IP list (in CIDR format) stored in a TXT file:< 58.200.0.0/13 202.115.0.0/16 121.48.0.0/15 219.224.128.0/18 ... But I don't know how can I determine whether my IP belongs to ...
1
vote
1answer
442 views

Conversion from IP Range to CIDR Mask

I've been working on an algorithm for converting an IP Range to a list IPs in CIDR Notation (will be mentioned as tuples henceforth). Now, what puzzles me is figuring out what is the Worst Case ...
3
votes
4answers
1k views

How to see if an IP address belongs inside of a range of IPs using CIDR notation?

Here I have a static reference the ranges I need to check: private static List<string> Ip_Range = new List<string>() { "12.144.86.0/23", "31.201.1.176/30", "46.36.198.101/32", ...
0
votes
1answer
212 views

Text in argument on perl code with CIDR ip addresses

My program verifies if ip addresses from an input.txt like this: 190.116.16.99 200.48.11.235 200.11.48.141 190.50.145.4 170.40.111.178 186.160.42.12 200.1.176.15 200.1.177.54 200.1.178.253 ...
-1
votes
1answer
214 views

Read IP addresses from a text file and calculate if it's inside a ip range or cidr block with a command line batch file

I have a text file with a bunch of IP Addresses as follows: 200.48.123.45 143.150.41.12 170.12.39.232 and so on. I need to program a batch file that read every single line of the text file and ...
0
votes
0answers
136 views

What happens to the IP address block when you buy it from your ISP? [closed]

When you want to move the IP adressblock you have at your current ISP (say you are a huge organization) to another ISP, the previous ISP might now lose a block in the middle of its adress space. Now ...
3
votes
4answers
1k views

Matching IPv6 address to a CIDR subnet

Is there a good way to match an IPv6 address to an IPv6 subnet using CIDR notation? What I am looking for is the IPv6 equivalent to this: matching an IP to a CIDR mask in php5? The example given ...
0
votes
1answer
550 views

How to calculate range of IP address given starting address and number of address required

Given a starting address, say 192.16.0.0, How do I calculate the IP address ranges to allocate 4000, 2000, 4000 and 8000 IP addresses to 4 companies that have requested it (in that order). Address ...
2
votes
1answer
170 views

CIDR Address Selection

I understand the general concept of CIDR and how the prefix and suffix bits work, and I generally understand that you can take an address say: 73.132.68.12/24 There are 24 prefix and 8 suffix bits. ...
2
votes
3answers
885 views

List of IP addresses in Python to a list of CIDR

How do I convert a list of IP addresses to a list of CIDRs? Google's ipaddr-py library has a method called summarize_address_range(first, last) that converts two IP addresses (start & finish) to ...
1
vote
2answers
3k views

How to calculate IP ranges

Hi would someone be able to assist with the following question? The question is from a past paper in preparation for an exam. Consider a router that interconnects three subnets: Subnet 1, Subnet ...
2
votes
1answer
1k views

Module, script or algorithm to convert IP range into a CIDR notation

How can I convert many IP ranges into a CIDR notation? All I found is the ip2cidr service, but I have >200K IP-records.
1
vote
4answers
3k views

In Java, given an IP Address range, return the minimum list of CIDR blocks that covers the range

I am having trouble with some of the logic in converting an IP Address range into a list of CIDR blocks. I do believe that this website is doing it right: http://ip2cidr.com/ I would like to pass in ...
3
votes
4answers
2k views

Getting list IPs from CIDR notation in PHP

Is there a way (or function/class) to get the list of IP addresses from a CIDR notation? For example, I have 73.35.143.32/27 CIDR and want to get the list of all IP's in this notation. Any ...
8
votes
5answers
10k views

Converting CIDR address to subnet mask and network address

Given a CIDR address, e.g. 192.168.10.0/24 How to determine mask length? (24) How to determine mask address? (255.255.255.0) How to determine network address? (192.168.10.0)
9
votes
4answers
4k views

Is there way to match IP with IP+CIDR straight from SELECT query?

Something like SELECT COUNT(*) AS c FROM BANS WHERE typeid=6 AND (SELECT ipaddr,cidr FROM BANS) MATCH AGAINST 'this_ip'; So you don't first fetch all records from DB and then match them one-by ...