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 ...
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 ...
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
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
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
2answers
43 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
243 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
67 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
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
1answer
331 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 ...
1
vote
2answers
322 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
153 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 ...
2
votes
4answers
246 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
votes
3answers
559 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
400 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
...
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
...
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 ...
0
votes
3answers
656 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 ...
16
votes
5answers
606 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 ...
4
votes
1answer
357 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 ...
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
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 ...
0
votes
2answers
480 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
...
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 ...
2
votes
3answers
780 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 ...
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 ...
1
vote
1answer
545 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 ...
0
votes
1answer
306 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,
...
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
551 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
888 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
1answer
852 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 ...
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 ...
1
vote
1answer
180 views
Apache SubnetInfo for loopback address
Using the Apache Commons Net library, why does the following output 0 addresses for the CIDR notation 127.0.0.1/32 ? I'd have expected one, or am I misunderstanding something? Is the address 127.0.0.1 ...
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
2answers
2k views
php cidr prefix to netmask
I'm looking to convert a cidr prefix (e.g. /28) to a netmask (e.g. 255.255.255.240) and have not located a function for this, does one exist in php? If not, how would I go about doing this?
1
vote
1answer
681 views
How to get IP address list from CIDR notation in PHP? [duplicate]
Possible Duplicate:
Getting list IPs from CIDR notation in PHP
Hi there,
I need to generate the list of IP addresses from a CIDR notation.
For example, user has entered 200.41.132.11/28. ...
1
vote
2answers
398 views
subneting in cidr notation
I just have problem with subneting network address in CIDR notaion ,can anyone explain it for me?
for example how can I solve this question:
Give the subnet addresses in CIDR notation if the network ...
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 ...
