Re: scaning the local network with arping/sh script

2005-04-25 Thread Abu Khaled
I want to thank you all for replying to my post. I'm building the world at the moment and can't wait to start testing what you guys suggested. I knew you guys won't let me down.As always I ended up having my problems solved as well as adding more to my knowledge. It's a wonderful feeling. Thanks

Re: scaning the local network with arping/sh script

2005-04-25 Thread c0ldbyte
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 25 Apr 2005, Murat Balaban wrote: Hi, Did you check http://www.enderunix.org/knowlan/ ? What is Knowlan? Knowlan is ARP protocol based Local Area Network IP and MAC Adress Extractor. Knowlan uses libpcap and libnet libraries for to be simple to

Re: scaning the local network with arping/sh script

2005-04-25 Thread Begumisa Gerald M
> Thanks Alex. Ettercap is a nice tool but I don't run X on my > Gateway/Servers. I was looking for a port/package that runs from > console. Seems that I forgot to mention that in my post. I may be mistaken / have outdated source but I seem to remember Ettercap to be able to also use t

Re: scaning the local network with arping/sh script

2005-04-25 Thread Murat Balaban
Hi, Did you check http://www.enderunix.org/knowlan/ ? What is Knowlan? Knowlan is ARP protocol based Local Area Network IP and MAC Adress Extractor. Knowlan uses libpcap and libnet libraries for to be simple to handle and to have a simple code for any interestor to deal with the code. To desc

Re: scaning the local network with arping/sh script

2005-04-24 Thread Alex Soares de Moura
Abu Khaled wrote: On 4/24/05, Alex Soares de Moura <[EMAIL PROTECTED]> wrote: Abu Khaled wrote: Greetings... I don't know much about scripting but i tried to write one to scan my local network using the net/arping port. here is the script: #!/bin/sh IP=1 while [ $IP -le 20 ] do echo -e ".\c" if

Re: scaning the local network with arping/sh script

2005-04-24 Thread Abu Khaled
On 4/24/05, Alex Soares de Moura <[EMAIL PROTECTED]> wrote: > Abu Khaled wrote: > > >Greetings... > > > >I don't know much about scripting but i tried to write one to scan my > >local network using the net/arping port. > >here is the script: > > > >#!/bin/sh > >IP=1 > >while [ $IP -le 20 ] > >do >

scaning the local network with arping/sh script

2005-04-23 Thread Abu Khaled
Greetings... I don't know much about scripting but i tried to write one to scan my local network using the net/arping port. here is the script: #!/bin/sh IP=1 while [ $IP -le 20 ] do echo -e ".\c" if ( arping -c 1 -q -i rl1 10.0.0.$IP ) then echo -e "\n10.0.0.$IP Online" fi IP=$(( $IP