Re: list all the devices connected to the router

2011-04-26 Thread bruno
Kamaraju S Kusumanchi wrote: bruno wrote: Kamaraju S Kusumanchi wrote: I connect my PCs to internet via Verizon DSL router. When I go to 192.168.1.1 in a browser (say firefox), I am able to see all the computers connected to this router. However, from command line is there any way to probe fo

Re: list all the devices connected to the router

2011-04-26 Thread Kamaraju S Kusumanchi
bruno wrote: > Kamaraju S Kusumanchi wrote: >> I connect my PCs to internet via Verizon DSL router. When I go to >> 192.168.1.1 in a browser (say firefox), I am able to see all the >> computers connected to this router. >> >> However, from command line is there any way to probe for the list of IP

Re: list all the devices connected to the router

2011-04-26 Thread bruno
Kamaraju S Kusumanchi wrote: I connect my PCs to internet via Verizon DSL router. When I go to 192.168.1.1 in a browser (say firefox), I am able to see all the computers connected to this router. However, from command line is there any way to probe for the list of IP addresses of all the mach

Re: list all the devices connected to the router

2011-04-25 Thread shawn wilson
On Apr 25, 2011 4:15 AM, "Klistvud" wrote: > > Dne, 25. 04. 2011 01:47:01 je Kamaraju S Kusumanchi napisal(a): > >> Any other ideas? >> thanks > > > Well, here's the one-liner I use (a crontab entry actually): > > for ip in $(seq 1 254); do ping -c 1 192.168.1.$ip>/dev/null; [ $? -eq 0 ] && echo "

Re: list all the devices connected to the router

2011-04-25 Thread Klistvud
Dne, 25. 04. 2011 01:47:01 je Kamaraju S Kusumanchi napisal(a): Any other ideas? thanks Well, here's the one-liner I use (a crontab entry actually): for ip in $(seq 1 254); do ping -c 1 192.168.1.$ip>/dev/null; [ $? -eq 0 ] && echo "192.168.1.$ip" || : ; done Found it on the Internet a wh

Re: list all the devices connected to the router

2011-04-24 Thread shawn wilson
On Sun, Apr 24, 2011 at 7:47 PM, Kamaraju S Kusumanchi wrote: > shawn wilson wrote: > >> sense no one has mentioned it yet - nmap -sP 192.168.1.* > > Thanks for the nmap command. This lists some of the machines but not all. > For example, when I look at 192.168.1.1 in a web browser I see that the

RE: list all the devices connected to the router

2011-04-24 Thread Kamaraju S Kusumanchi
shawn wilson wrote: > sense no one has mentioned it yet - nmap -sP 192.168.1.* Thanks for the nmap command. This lists some of the machines but not all. For example, when I look at 192.168.1.1 in a web browser I see that the router is connected to 192.168.1.36 . However, it does not show up in

Re: list all the devices connected to the router

2011-04-24 Thread shawn wilson
I have got to stop doing this: Ya know, there is a reason I pinged all addresses on a /24 net before running arp and why I mentioned clearing the arp cache before doing this. :) > s/winged/pinged/ > Again, nmap is the right tool for the job.

Re: list all the devices connected to the router

2011-04-24 Thread shawn wilson
On Apr 24, 2011 1:39 PM, "John Hasler" wrote: > > Kamaraju S Kusumanchi writes: > > However, from command line is there any way to probe for the list of > > IP addresses of all the machines connected to the router? > > man arp > Ya know, there is a reason I winged all addresses on a /24 net befor

Re: list all the devices connected to the router

2011-04-24 Thread John Hasler
Kamaraju S Kusumanchi writes: > However, from command line is there any way to probe for the list of > IP addresses of all the machines connected to the router? man arp -- John Hasler -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Co

Re: list all the devices connected to the router

2011-04-24 Thread shawn wilson
> seq 0 254 | while read f; do ping -c 1 $f; done; arp g, that should be: seq 0 254 | while read f; do ping -c 1 192.168.1.$f; done; arp -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive:

RE: list all the devices connected to the router

2011-04-24 Thread shawn wilson
On Sun, Apr 24, 2011 at 1:13 PM, Huang, Tao wrote: > On Mon, Apr 25, 2011 at 12:52 AM, Kamaraju S Kusumanchi > wrote: >> I connect my PCs to internet via Verizon DSL router. When I go to >> 192.168.1.1 in a browser (say firefox), I am able to see all the computers >> connected to this router. >>

Re: list all the devices connected to the router

2011-04-24 Thread Huang, Tao
On Mon, Apr 25, 2011 at 12:52 AM, Kamaraju S Kusumanchi wrote: > I connect my PCs to internet via Verizon DSL router. When I go to > 192.168.1.1 in a browser (say firefox), I am able to see all the computers > connected to this router. > > However, from command line is there any way to probe for t

Re: list all the devices connected to the router

2011-04-24 Thread Camaleón
On Sun, 24 Apr 2011 12:52:22 -0400, Kamaraju S Kusumanchi wrote: > I connect my PCs to internet via Verizon DSL router. When I go to > 192.168.1.1 in a browser (say firefox), I am able to see all the > computers connected to this router. > > However, from command line is there any way to probe fo

Re: list all the devices connected to the router

2011-04-24 Thread Chris Brennan
On Sun, Apr 24, 2011 at 12:52 PM, Kamaraju S Kusumanchi wrote: I connect my PCs to internet via Verizon DSL router. When I go to > 192.168.1.1 in a browser (say firefox), I am able to see all the computers > connected to this router. > > However, from command line is there any way to probe for th