Dear Brian:

Create a batch script with this code:

@echo off
::   Response.bat    Clay Calvert   12 July 2001
if NOT %3'==' goto Test
echo.
echo.
echo Syntax: %~n0 XXX.XXX.XXX YYY ZZZ [Up ^| Down]
echo.
echo Where XXX.XXX.XXX = The first three octets of the IP
echo address range to check, YYY is the first IP address
echo to check, and ZZZ is the last IP address to check.
echo.
echo Example:  %~n0 123.45.67 10 20
echo.
echo ... will ping from 123.45.67.10 through 123.45.67.20
echo.
echo Specifying Up or Down as the fourth parameter will
echo only indicate addresses matching that condition.
goto:eof

:Test
echo.
Set Down=Down
Set Up=Up
if /I %4'==Down' set Up=^>nul
if /I %4'==Up' set Down=^>nul
for /l %%a in (%2,1,%3) do (
   Title Now working on: %1.%%a
   ping -n 2 %1.%%a |find " TTL=">nul
   if errorlevel 1 (echo %1.%%a %Down%
      ) else (
   echo %1.%%a  %Up%))
Pause

Then use it like this...

Response 192.168.0 0 255

This will ping every address from 192.168.0.0 to 192.168.0.255 and tell you
which ones are up or down. :)  Hope it helps.

Sincerely,

Joshua M. Andrews
Director
Support Corps of America
www.supportcorps.us

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of [EMAIL PROTECTED]
Sent: None
To: wireless@wispa.org
Subject: Wireless Digest, Vol 12, Issue 25

Send Wireless mailing list submissions to
        wireless@wispa.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.wispa.org/mailman/listinfo/wireless
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific than
"Re: Contents of Wireless digest..."


Today's Topics:

   1.  ping utility (Brian Rohrbacher)


----------------------------------------------------------------------

Message: 1
Date: Sat, 11 Feb 2006 12:54:22 -0500
From: Brian Rohrbacher <[EMAIL PROTECTED]>
Subject: [WISPA] ping utility
To: Conversations over a new WISP Trade Organization
        <wireless@wispa.org>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Is there a program out there that will work on windows to ping addresses?  I
hung a Trango AP and don't know it's IP address.  Any way to get it?  I
think I know what range it's on, but that is a lot of addresses to ping.
Any program that will do this?

--
Brian Rohrbacher
Reliable Internet, LLC
www.reliableinter.net
Cell 269-838-8338

"Caught up in the Air" 1 Thess. 4:17



------------------------------

_______________________________________________
Wireless mailing list
Wireless@wispa.org
http://lists.wispa.org/mailman/listinfo/wireless


End of Wireless Digest, Vol 12, Issue 25
****************************************

-- 
WISPA Wireless List: wireless@wispa.org

Subscribe/Unsubscribe:
http://lists.wispa.org/mailman/listinfo/wireless

Archives: http://lists.wispa.org/pipermail/wireless/

Reply via email to