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
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 ...
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 ...
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. ...
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 ...
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
2answers
2k views

Python Network/cidr Calculations

I am working on building an embedded network appliance (linux based) and have come across the need to dynamically build daemon conf files. As such, I need to be able to do some network address ...
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)