xxxxts
|
2010-08-26
, 09:04
|
|
Posts: 491 |
Thanked: 341 times |
Joined on Nov 2009
@ LA
|
#1
|
|
2010-08-26
, 09:30
|
Posts: 55 |
Thanked: 72 times |
Joined on Nov 2009
|
#2
|
|
2010-08-26
, 11:28
|
|
Posts: 549 |
Thanked: 299 times |
Joined on Jun 2010
@ Australian in the Philippines
|
#3
|
Nmap scan report for 192.168.4.6 Nmap scan report for 192.168.4.8 Nmap scan report for 192.168.4.14 Nmap scan report for 192.168.4.201 Nmap scan report for 192.168.4.210 Nmap scan report for 192.168.4.220
# nmap 192.168.4.14 Starting Nmap 5.21 (http://nmap.org) at 2010-08-26 19:10 PHT Interesting ports on 192.168.4.14: Not shown: 992 closed ports PORT STATE SERVICE 21/tcp open ftp 22/tcp open ssh 23/tcp open telnet 80/tcp open http 139/tcp open netbios-ssn 443/tcp open https 445/tcp open microsoft-ds 515/tcp open printer Nmap done: 1 IP address (1 host up) scanned in 1.16 seconds
dchky:~# smbclient -U dchky -L 192.168.4.14 creating lame upcase table creating lame lowcase table Enter dchky's password: Domain=[NAS] OS=[Unix] Server=[Samba 3.0.24] Sharename Type Comment --------- ---- ------- Volume_1 Disk lp Printer USB Printer Volume_1-1 Disk IPC$ IPC IPC Service (DNS-323) Domain=[NAS] OS=[Unix] Server=[Samba 3.0.24] Server Comment --------- ------- BLINKY DNS-323 Workgroup Master --------- ------- NAS BLINKY WORKGROUP TINGS-MOBILE
The Following 4 Users Say Thank You to dchky For This Useful Post: | ||
|
2010-08-26
, 11:40
|
Posts: 94 |
Thanked: 61 times |
Joined on Feb 2010
@ Shoreham
|
#4
|
|
2010-08-26
, 12:01
|
|
Posts: 549 |
Thanked: 299 times |
Joined on Jun 2010
@ Australian in the Philippines
|
#5
|
|
2010-08-26
, 14:39
|
|
Posts: 491 |
Thanked: 341 times |
Joined on Nov 2009
@ LA
|
#6
|
|
2010-08-26
, 16:18
|
Posts: 569 |
Thanked: 462 times |
Joined on Jul 2010
@ USA
|
#7
|
|
2010-08-26
, 16:33
|
Posts: 1,341 |
Thanked: 708 times |
Joined on Feb 2010
|
#8
|
|
2010-09-23
, 08:25
|
Posts: 110 |
Thanked: 14 times |
Joined on Sep 2010
|
#9
|
I like the linux way a tad better, it's more informative : )
@josh The N900 does do SMB.
This assumes you have 'nmap', 'rootsh', and 'smbclient' on your N900, that you are slightly familiar with x-term, and that you know a bit about the network you are connected to - including IP addresses. (Edit: and that you know how to fix the broken samba-common.postinst script - you don't really have to do this, but it'll save you having to read apt-get complaints)
# nmap -sP 192.168.4.0/24 | awk /report/
It'll spit out a list of any IP addresses that were awake and responding to the ping.
eg:
To find out more information about each computer I'll then use nmap again to do a port scan:Code:Nmap scan report for 192.168.4.6 Nmap scan report for 192.168.4.8 Nmap scan report for 192.168.4.14 Nmap scan report for 192.168.4.201 Nmap scan report for 192.168.4.210 Nmap scan report for 192.168.4.220
(My NAS for example)
Just looking at that jibberish I can see port 139 and 445 are open, so I know there is some Microsoft business happening in there somewhere.Code:# nmap 192.168.4.14 Starting Nmap 5.21 (http://nmap.org) at 2010-08-26 19:10 PHT Interesting ports on 192.168.4.14: Not shown: 992 closed ports PORT STATE SERVICE 21/tcp open ftp 22/tcp open ssh 23/tcp open telnet 80/tcp open http 139/tcp open netbios-ssn 443/tcp open https 445/tcp open microsoft-ds 515/tcp open printer Nmap done: 1 IP address (1 host up) scanned in 1.16 seconds
After this I might use 'smbclient' to see what is being shared, in my case my NAS has a user / pass restriction, so your incantation of smbclient may vary to suite your environment.
From here it's a simple case of mount -t cifs blah blah if you want to mount the remote share directly on the N900.Code:dchky:~# smbclient -U dchky -L 192.168.4.14 creating lame upcase table creating lame lowcase table Enter dchky's password: Domain=[NAS] OS=[Unix] Server=[Samba 3.0.24] Sharename Type Comment --------- ---- ------- Volume_1 Disk lp Printer USB Printer Volume_1-1 Disk IPC$ IPC IPC Service (DNS-323) Domain=[NAS] OS=[Unix] Server=[Samba 3.0.24] Server Comment --------- ------- BLINKY DNS-323 Workgroup Master --------- ------- NAS BLINKY WORKGROUP TINGS-MOBILE
Anyway... That's how I do it. It might not be quite as easy as point and click, but it certainly is more... interesting... if you're at the mall on free wifi : )
The Following User Says Thank You to chivar For This Useful Post: | ||
|
2010-09-23
, 12:22
|
Posts: 94 |
Thanked: 61 times |
Joined on Feb 2010
@ Shoreham
|
#10
|
Re: "View Entire Network"
There should be an app for Windows boxes. I don't mind nmap - but I don't know how to mount.