Classless Inter-Domain Routing, a method for allocating TCP/IP network addresses and routing data packets. Divides IP address into network id (high bits) and host id (low bits) as determined by netmask. In 1993, replaced the older classful network routing.
1
vote
0answers
12 views
PostgreSQL expanding cidr into individual addresses
I have a large list of subnets in a network stored in the following layout. This is used as a master table to store assets that will be used to automatically probe for status by a Python-script at ...
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 ...
-1
votes
3answers
555 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 ...
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, ...
1
vote
2answers
31 views
Postgresql join only most specific cidr match
I have a table "test_networks" that is a list of networks with a description about what each network is and where it is located.
CREATE TABLE test_networks
(
id serial PRIMARY KEY,
address cidr,
...
0
votes
1answer
86 views
calculate IP range using PHP and CIDR
I've seen various questions and answers around this site and I'm still having difficulty wrapping my head around this problem (could be because I've got a cold). Regardless, I'm trying to come up with ...
13
votes
7answers
7k views
matching an IP to a CIDR mask in php5?
I'm looking for quick/simple/(maybe built in that i never noticed before), method for matching a given IP4 dotted quad IP to a CIDR notation mask.
I have a bunch of IPs I need to see if they match a ...
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 ...
2
votes
3answers
778 views
PHP5 calculate IPv6 range from cidr prefix?
I am able to do this with IPv4 using code snippets from various online sources. I was wondering if there was a way to do it with IPv6.
Basically I just need a form that I can enter an IPv6 address ...
16
votes
5answers
605 views
CIDR bitwise operations - could I be a bit wiser?
I am building a class to represent an IPv4 subnet. I am storing the network address and the subnet mask as 4 byte binary strings, which are built during the constructor based on the arguments. One of ...
0
votes
2answers
53 views
How can I use nmap to list whether or not the addresses in a subnet are active or not using Python
I know that nmap has the ability to ping sweep and output a list of only active IPs, but I am scouring the net to figure how to list whether or not an IP is active using CIDR notation. (ie for ...
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 ...
0
votes
2answers
479 views
CIDR entries and routing tables
I have a question which asks the following:
Suppose a router has the following CIDR entries in its routing table:
Net/Prefix Next Hop
128.96.39.0/24 Interface 0
128.96.39.128/25 Interface 1
...
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
135 views
CIDR entries and router
A router has the following CIDR entries in its forwarding table:
Address/mask Next hop
135.46.56.0/22 Interface A
135.46.60.0/22 Interface B
135.46.40.0/23 Interface C
default Interface D
Where ...
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 ...
9
votes
3answers
4k views
Setting CIDR/IP so anyone can access it from any IP?
How do you set you CIDR/IP so anyone can access it from anywhere?
I'm trying to make my AWS RDS DB instance accessible from anywhere as my ISP doesn't give me a static IP. Everytime my IP changes I ...
0
votes
1answer
236 views
AWS Elastic Beanstalk: No data received: Unable to load the webpage
I just deployed a .NET application using SQL Server via Elastic Beanstalk.
It seems like my newly deployed application can't connect to my database. I just followed this video: ...
2
votes
1answer
65 views
Django admin CIDR type
The problem is that I am working on a Django Admin project, which should be able to accept CIDR format data and put that into database (Postgres).
Let's say I have a model:
...
0
votes
1answer
327 views
CIDR subnet calculation and python ipcalc
I am questioning the results of the ipcalc module (ipcalc) for Python (it seems that netaddr may be a better choice).
Let's take 192.168.1.25/30 as an example. In binary, the last octet is 00011001 ...
3
votes
2answers
5k views
List IP all addresses in a subnet
I need to get all of the IP addresses contained in within a subnet and I'm trying to do it using IPnetwork
For example the subnet 192.168.1.0/29 would have the following output:
// Output
...
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 ...
1
vote
2answers
320 views
Extracting netmask from ifconfig output and printing it in CIDR format
I need to extract the netmask for two sets of IPs and print it in CIDR format, out on to the screen. Thinking of using either shell or tcl to do this. Guess the major sticky points here is converting ...
1
vote
1answer
152 views
How to sort IP addresses in a trie table?
I want to make a bit of code to have a small "routing table" in my Go program.
I'm using left-leaning red-black trees with the http://github.com/petar/GoLLRB package and basically it seems to work ...
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)
2
votes
4answers
243 views
Testing if a network in cidr notation overlaps another network
I'm searching for a php algorithm that efficiently test if one cidr notated network overlaps another.
Basically I have the following situation:
Array of cidr adresses:
$cidrNetworks = array(
...
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 ...
-1
votes
1answer
195 views
Converting netmasks php
How can I convert a netmask to a specific netmask.
Example: 127.0.0.0/16 Convert to /24 netmask.
It should output something like:
127.0.0.0/24
127.0.1.0/24
127.0.2.0/24
127.0.2.0/24
etc. all the ...
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 ...
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
...
2
votes
1answer
175 views
Convert wildcard subnet to smallest cidr subnet list
I need to convert wildcard subnets to smallest cidr subnet list.
For example:
1.2.3.4/255.0.255.0
converted to
1.0.3.0/24
1.1.3.0/24
1.2.3.0/24
1.3.3.0/24
...
1.254.3.0/24
1.255.3.0/24
Above ...
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
653 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 ...
4
votes
1answer
356 views
As IPV6 needs 128 bits(16 bytes) then why in postgres CIDR datatype has storage as 24 byte(8.1) and 19byte(9.1)?
i am working with ipv4 and ipv6 to store in postgres db.
as ipv4 needs 32 bits(4byte) and ipv6 needs 128(16byte) bits.then why in postgres CIDR and INET datatype has the storage as 12 byte and 24 ...
7
votes
1answer
9k views
List of IP Space used by Facebook
I am looking for an authoritative list of IP space Facebook uses. I need this to support a locked down developer environment that has very tight restrictions on outbound connectivity.
Today I found ...
2
votes
7answers
1k views
python regex CIDR matching
m = re.findall("\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}",s)
probably very easy question for somebody who knows regex, how do I modify it so it will match not only IPv4, but also something with CIDR like ...
2
votes
1answer
848 views
Oracle PL/SQL versions of INET6_ATON and NTOA functions?
Any have any good code for converting a IPv6 address string into an integer? Converting IPv4 seems to be fairly easy, with the one format. However, IPv6 has several different formats to show an ...
4
votes
5answers
9k views
How to convert CIDR to network and IP address range in C#?
I have been looking around quite a bit to find some C# code to convert a network in CIDR notation (72.20.10.0/24) to an IP address range, without much luck. There are some threads about CIDR on ...
1
vote
2answers
1k views
How to compare IP address range in C#?
Say, if I have an IP address range (CIDR notation) and I need to know if some arbitrary IP address is within that range -- both presented as strings -- what is the easiest way to do this with C# (for ...
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 ...
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
4answers
127 views
How to trim CIDR notation off an IP?
I want to get rid of the CIDR notation and tried the following, but it doesn't seem to work like this:
<?php
$txt='156.67.0.0/16';
$re='(\\/)'.'(\\d+)';
$end = rtrim($txt,$re);
echo $end;
...
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 ...
0
votes
1answer
303 views
How to get VLSM IP range from pool of assignable addresses a.b.c.d/x - e.f.g.h/y
If I have a pool of addressable IP's in 214.97.254/23, is it possible to assign addresses to 6 subnets that require:
Subnet A - 250 interfaces,
Subnet B - 120 interfaces,
Subnet C - 120 interfaces,
...
1
vote
1answer
544 views
Postgres CIDR. How to select only network w/o subnet?
I have a table Net where is the list of networks
-- Table: net
CREATE TABLE net
(
id serial NOT NULL,
cidr cidr,
description text,
CONSTRAINT net_pkey PRIMARY KEY (id )
)
I need to select ...
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
2answers
2k views
python 3: ipaddr/netaddr modules
I have got to be doing something wrong here... I am at present trying to validate whether an ip is within a specific subnet utilizing a builtin module.
I am using activepython:
ActivePython ...



