• 0

Program like Network Magic


Question

Hi,

What programs are there out there (free or paid) that allow you to see who/what's on your wifi network, similar to Network Magic? I understand I could see things like that in my firewall or router but I am just looking for third party solutions since Cisco discontinued the software and were only including it with the Linksys routers.

Thanks,

Brian

Link to comment
https://www.neowin.net/forum/topic/1131464-program-like-network-magic/
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Any wireless router should give you who is associated with it. So your just looking for wireless clients right?

Not sure what direction your looking to go, but airodump-ng for example will sniff the wireless around you and show you all the stations and ap it finds, along with what AP a station (client) is associated with.

Grap a random image from the net for example

post-14624-0-14514600-1358452400.jpg

So I highlighted couple example of which client is connected to which AP.

As to who is connected to your network, be it wired or wireless - other option is just look in your dhcp servers log to who holds a lease and if its active or not. Or just any network scanner to scan your subnet, then simple look in your arp table. Because doing a ping sweep not everything is going to respond. But once you do the scan you can look in your arp table for anything that replied to arp. If they are on your network, even if they block ping and firewall running, etc. still going to respond to arp!

I never used network magic, more like network garbage is what I would of called it - better suited name ;)

What exactly are you looking to accomplish and more than happy to help you find a way to do just that.

edit: Just saw this posted from above -- http://www.nirsoft.net/utils/wireless_network_watcher.html

Guess how that works ;) Scans network segment, looks for things that respond to arp - lists them ;) Prob exactly what your looking for!

  • 0

Hi,

What programs are there out there (free or paid) that allow you to see who/what's on your wifi network, similar to Network Magic? I understand I could see things like that in my firewall or router but I am just looking for third party solutions since Cisco discontinued the software and were only including it with the Linksys routers.

Thanks,

Brian

SSIDER - http://www.metageek.net/products/inssider/

  • 0

Thanks all.

More for BudMan's questions, here's what I'm trying to do.

Back in the summer, a Linux co-worker of mine came over and helped me install Smoothwall onto a Linux VM. Ever since, the speeds seem to be slower, both on the network and even on the Internet. So, I tried some product called Who's on my WiFi and I attempted to make a network map out of it mapping Mac addresses to the various devices in my house. It did a decent job but due to some devices being Nintendo 3DS's, iPod touches, Vonage modem, etc. (Maybe close to 20 devices (I have four kids and a wife)). I couldn't map hostnames and devices to everything. I figure the slowness might be Smoothwall, but I would like to create a network map to everything connected and actually see if someone is getting onto my network or it's Smoothwall. Plus, I want to get rid of cached information if possible.

  • 0

So how is this smoothwall vm connecting you to the internet. And where does your wireless connect in - are you double natting? Or is it just used as AP.

I run a VM as my router as well -- goes like this

internet -- cable modem -- (internet nic) N40L(vms) (lan nic) -- switch - other devices and wireless AP.

Is this how your connected?

You mention a vontage modem? I would assume that is natting for that to work, and then your smoothwall natting again? And then you have wireless router - which could be also natting, etc.

Can you please draw out your network? How many devices are wireless? Wireless is shared mind you!! You have one box using up the wireless and that can slow down everything else that is wireless, etc.

  • 0

So I have cable modem > smoothwall physical box (Using DHCP, two NICs: one NIC is green, second NIC is red) > wireless router (DHCP turned off and being used as a switch) > wireless and physically connected PCs. Vonage modem is connected directly to the switch (only one NAT).

I had my co-worker stop over and he suggested changing the web traffic to low on QoS on Smoothwall cause it was set to high. That should fix the one issue I have for Vonage calls being choppy when I'm on the Internet.

Wireless devices (not all used at once):

Media Center PC conected to TV

iPad

2 iPod Touches

2 Nintendo 3DS's

3 laptops

Desktop PC

my work iPhone (I leave WiFi on all the time)

My wife's Android cell

Wired:

my Desktop,

ESXi host (running three Linux VMs and Server 2012 Essentials as a DC/Backup server)

Smoothwall

Vonage

At any one time for connectivity, my Desktop will be on, Server 2012 sending small traffic and backup up some locations in the evening, both iPod touches, the iPad and our cell phones.

  • 0

If your running QoS then yeah I would look to that why your having slow downs.

If you looking to map everything on your network - that link to the little scanner from nirsoft should do it for you. Just ran a quick scan on my work segment

post-14624-0-23997600-1358459191.jpg

its very QUICK!!!

This topic is now closed to further replies.
  • Posts

    • Can we not have paperless office, like we was promised in the 80's
    • I actually laughed out loud in real life at the heading on this—whatever Microsoft is drinking, I want some of it.
    • Euro-Office must default to ODF to be considered "genuinely European", LibreOffice argues by David Uzondu Euro-Office is a web-based collaborative office suite that positions itself as a "European sovereign alternative" to American tech companies, backed by a coalition of developers including Nextcloud, IONOS, Abilian, BTactic, OpenProject, and, more recently, Tuta. The project officially went live a couple of days ago, but not before drawing heavy fire from LibreOffice developers, who called the marketing claim that Euro-Office represents the "first open-source office suite developed in Europe" a deceptive historical inaccuracy because projects like OpenOffice and LibreOffice existed decades earlier. Now that the project has launched, LibreOffice is back with another complaint, arguing that Euro-Office cannot consider itself "genuinely European" while it pushes proprietary Microsoft defaults on users. Euro-Office had promised to improve the OpenDocument Format (ODF) back in April, but the current release still plagues users with several technical failures. For instance, the suite lacks an admin setting to enforce ODF, and mobile editors completely block ODF saves, forcing files into Microsoft's OOXML formats. Some configurations force files into read-only mode, while editing frequently corrupts document formatting or erases data. LibreOffice thinks that merely supporting a format as an afterthought does not make you a sovereign alternative, as file formats are the battleground where" digital sovereignty is won or lost." The road to the first stable release of Euro-Office has been quite bumpy due to an aggressive public fallout with OnlyOffice, from which the coalition originally forked the project. OnlyOffice struck back by accusing the coalition of violating copyright terms under its AGPLv3 branding requirements by stripping the original branding anyway and forking the code. Getting Euro-Office up and running is a bit wonky (at least for non-technical users), as there is no direct installer to grab off the web. The easiest way we learnt is by using Docker. First, pull the official Euro-Office image from the GitHub Container Registry: docker pull ghcr.io/euro-office/documentserver:latest Then, run the container with active ports and a secure JWT token, enabling the test environment: docker run -i -t -d -p 8080:80 --restart=always -e EXAMPLE_ENABLED=true -e JWT_SECRET=my_secure_jwt_secret ghcr.io/euro-office/documentserver:latest And finally, open a web browser and go to the following address: http://localhost:8080 If you are running this on a remote server, replace localhost with your server's IP address. You will see the Euro-Office test page, where you can create new text documents, spreadsheets, or presentations directly in the browser. Image via Euro-Office Nextcloud promises that proper standalone desktop versions and mobile apps will arrive in a future release.
    • It’s any of their products not just windows.
  • Recent Achievements

    • Week One Done
      FBSPL earned a badge
      Week One Done
    • One Year In
      Jim Dugan earned a badge
      One Year In
    • One Month Later
      Tommi118 earned a badge
      One Month Later
    • One Month Later
      sjbousquet earned a badge
      One Month Later
    • Week One Done
      sjbousquet earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      486
    2. 2
      PsYcHoKiLLa
      197
    3. 3
      +Edouard
      155
    4. 4
      Steven P.
      83
    5. 5
      ATLien_0
      69
  • Tell a friend

    Love Neowin? Tell a friend!