vote up 3 vote down star

I am taking an IT class that is a bit over my head, but trying hard to keep up.

On a lab to regarding network topology using port scanners, I am instructed to "to develop a network inventory and topology for the 123.218.44.0/24 subnet."

What does the notation 0/24 mean there? I had assumed it meant to consider the network range 123.218.44.0 to 123.218.44.24. When I use nmap against a range, using parameters in this format:

nmap -sS -O 123.218.44.0/24

nmap reports that it scanned 256 hosts, presumably 123.218.44.0 to 123.218.44.255. There is only one host between 0 and 24, but there are 4 hosts between 101 and 255. I assume that I am meant to find all 5 of those hosts, but I don't understand the notation so I'm not sure. Can anyone clarify for me?

flag

71% accept rate
Edit your question to say "I'm trying to write a simple socket-based server and running into trouble understanding how addresses work" and that way it won't get deleted. :) – Earwicker Apr 1 at 19:32
Heh, is it downvoted and nominated for closed due to not being programming related? I don't quite understand. All this work is a precursor to programming in the course, surely it can be understood that this is prerequisite knowledge for sockets programming. No? I am confused. – JoshJordan Apr 1 at 19:35
I agree that I really don't see why this was closed down. The question might not be that well phrased, but for me it is related to network programming and therefore on-topic on stackoverflow. – Martin C. Apr 1 at 19:36
This site is for specific, programming related questions and answers. You're asking a question about a specific network notation. That's not programming related. See Earwicker's comment :) – Jason Coco Apr 1 at 19:37
Even without that, the question most definitely is programming related. People are much too close-happly. – Michael Borgwardt Apr 1 at 19:38
show 1 more comment

4 Answers

vote up 4 vote down check

That's Classless Inter-Doman Routing notation. The /24 means that the routing prefix of the subnet is 24 bits long, which means there's ony 8 bits left for the subnet itself, i.e. 123.218.44.0 to 123.218.44.255

link|flag
vote up 1 vote down

I recommand you this site that is a really good toolbox for anything related to network computations.

link|flag
vote up 0 vote down

/24 means the mask is 255.255.255.0

And the other posters are correct about /24 being CIDR.

link|flag
vote up 2 vote down

The "0/24" is CIDR notation. It's a standard way to represent the subnet mask.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.