Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Feb 2004 18:01:34 +0100 (CET)
From:      Olaf Hoyer <ohoyer@gaff.hhhr.ision.net>
To:        Marty Landman <MLandman@face2interface.com>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: DHCP access
Message-ID:  <20040222174400.T57042@gaff.hhhr.ision.net>
In-Reply-To: <6.0.0.22.0.20040222095859.03dc3c78@pop.face2interface.com>
References:  <E1AuKeY-0003wT-Bn@dick.ccstores.com> <20040221052137.GL24309@hardesty.saintaardvarkthecarpeted.com> <4037D5D7.8030700@mac.com> <6.0.0.22.0.20040222085418.01b94e68@pop.face2interface.com> <6.0.0.22.0.20040222095859.03dc3c78@pop.face2interface.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 22 Feb 2004, Marty Landman wrote:

> At 09:42 AM 2/22/2004, Olaf Hoyer wrote:
>
> >The syntax to ping a whole /24 segment would be:
>
> Hi Olaf. Could you please explain what is meant by '/24 segment'? I'm new
> to networking as you can see!


Hi!

Well, what is formerly called a "Class C" network is now in the new
CIDR-notation a "/24", meaning that there are 256 IP's in that network.

A class A is a /8, a class B a /16.

Yes, there are some subtle differencies about how a router addresses
this, but for size they are the same.
>
> # nmap -sP 192.168.0.0/24
>
> Starting nmap V. 3.00 ( www.insecure.org/nmap/ )
> sendto in send_ip_raw: sendto(4, packet, 28, 0, 192.168.0.8, 16) => Can't
> assign requested address
> Sleeping 60 seconds then retrying

Seems to be a bug with nmap V3.00
I use 3.50, and it works. Solution could be an upgrade or exclusion of
your own box from the scanning range.

> >after this you will also have some output from the arp -a command,
> >because the arp cache has to be filled somehow.
>
> swamisalami# arp -a
> ? (192.168.0.0) at ff:ff:ff:ff:ff:ff on ep0 permanent [ethernet]
> delliver (192.168.0.1) at 00:08:74:c0:5e:69 on ep0 [ethernet]
> woody (192.168.0.3) at 00:a0:cc:40:3e:9b on ep0 [ethernet]
> swamisalami (192.168.0.7) at 00:20:af:4d:24:b7 on ep0 permanent [ethernet]
> ? (192.168.0.8) at (incomplete) on ep0 [ethernet]
> penguin (192.168.0.160) at 00:a0:24:75:04:49 on ep0 [ethernet]
> eileen (192.168.0.240) at 00:a0:cc:40:55:cf on ep0 [ethernet]
> ? (192.168.0.255) at ff:ff:ff:ff:ff:ff on ep0 permanent [ethernet]
> swamisalami#
>
> Ok, not sure why the output was broken up into two portions but it has now
> captured all the nodes on my box. Furthermore a subsequent arp -a gives a
> more usable output e.g.

snip

>
> Did you mean then that I should run the nmap followed by the arp -a to get
> a look at all nodes on my class c network? In this case it seems the only
> thing needed for me to put this into a shell script is a way to not have to
> manually interrupt the nmap which seemed to want to keep trying, after
> sleeping for progressively longer periods of time. Unless there is a glitch
> to be worked around somehow on 192.168.0.8 (never in use on my network
> afaik) and that what happened here was not typical behavior.

Ok, some basics beforehand:

anytime some hosts wants to contact another host, it yells with some
broadcast on the local collision segment (arp-request) that the Station,
which has IP-address a.b.c.d. sprays the answer (the MAC-Address on
the other station) back throughout the segment.
This answer is cached by the OS for a short time, that for future use no
unnecessary lookups have to be made.

This means, that, if you hook up a station to a LAN, which did not
participiated in any of the LAN traffic, the arp cache on that station
is of course empty.

One way to fill it, is by simply pinging all other hosts on that
segment.

like:

#!/bin/sh
ping 192.168.0.1
ping 192.168.0.2
.
.
.
ping 192.168.0.254

nmap -sP does exactly the same above, but with less typing effort ;-)


For each station that is up and running, you get a MAC address back, and
therefore the arp cache is populated.

> It would be a nice utility for me to have and perhaps run off cron - i.e.
> to test each connection on my network and report back so I know on a steady
> basis that everything's up and running (or at least reachable).

Yes, would be practicable. You should consider updating nmap, though...

HTH
Olaf


-- 
Olaf Hoyer        ohoyer@gaff.hhhr.ision.net
Fuerchterliche Erlebniss geben zu raten,
ob der, welcher sie erlebt, nicht etwas Fuerchterliches ist.
(Nietzsche, Jenseits von Gut und Boese)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040222174400.T57042>