Paperlined.org
quests
document updated 18 years ago, on Apr 3, 2008
Goals:

Broader goals:

Uber-solution #1

Often, when a link doesn't appear to be working, if you're able to very quickly analyze the output of Wireshark, then Wireshark can be one of the most broadly useful tools in figuring out what's working and what's not. (eg. just based on broadcast traffic, who else seems to be on the line? (eg. DHCP requests, ARP requests) Maybe the DHCP/DNS/etc servers I was looking for aren't the correct ones, but seeing which ones are here may be useful information) At the same time, sometimes a link with no traffic isn't dead, it just has no traffic on it. Therefore, a tool comprised of:
  1. Passive sensor: A WinPcap-based analyzer, that synthesizes the "alive status" based purely on what it sees (eg. you don't necessarily need to run a ping, if you see a SYN go one way, and its SYN+ACK come back, then you know its response time). Benefits:
  2. Active sensor: Sends out pings/arps, if only to provide a base level of response traffic so we don't have to guess if the silence is due to the link going dead.
  3. Hyperactive sensor: Adding another dependency (winpcap) always sucks. However, winpcap gives you a bonus capability: the ability to inject raw packets. And, I believe these packets bypass any local VPN rules. As such, you can run "ping" and the like on normally totally-firewalled-off NICs. winpcap lists possible programs for this. Some that probably work include:
Might be the best?

Writeups