var fDesc=new Array(); fDesc[0] = "HoverIP is a powerful set of IP utilities, all inside a single box ! With HoverIP you can display your IP configuration (on all network cards), perform different tasks like NSLOOKUP, PING, TRACEROUTE, SCAN PORTS or network, and manage your ROUTES in a very convenient way !

IPconfig: Displays all current TCP/IP network configuration values and refreshes Dynamic Host Configuration Protocol (DHCP) and Domain Name System (DNS) settings. Used without parameters, ipconfig displays the IP address, subnet mask, and default gateway for all adapters.

NSLOOKUP: look up and find IP addresses in the DNS

Routing table: contains information about the topology of the network immediately around it. The construction of routing tables is the primary goal of routing protocols. Static routes are entries made in a routing table by non-automatic means and which are fixed rather than being the result of some network topology 'discovery' procedure.

Traceroute: a tool used to show the route taken by packets across an Internet Protocol (IP) network"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }