Nifty way to Identify active LAN Cabling

Say you’re at an Office and you come across a jack that needs to be traced but it is Active. A Toner wouldn’t work for this so you would need a device that can send a Beacon to make the light on the Network Switch Flash/Pulse. Those type of testers costs an arm and a leg. However there is a free way so to speak on making a Laptop act as a Beacon.

Chances are the Laptop is running Windows. You can run a simple BATCH script to make the NIC send a Pulse/Flash so to speak.

:while1
timeout 5
netsh interface set interface name="Local Area Connection" admin=disabled
timeout 5
netsh interface set interface name="Local Area Connection" admin=enabled
goto :while1

How this script works is very simple. It just makes the NIC on the Laptop to enable and disable. Doing so makes the Switch flash on and off every couple of seconds as the script runs.

You could also slap together an Arduino with an Ethernet Shield to do the same thing and have a dedicated device.

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s