Archive for the ‘Networking’ Category

Viewing the Open Ports and Connections

Thursday, February 14th, 2008

Using a graphical user interface

The Sysinternals TCPView tool is a graphical interface that displays all of the active connections on a host. It displays all of the connection information you might need, including process name and ID, protocol, local address and port, and remote address and port. It is a real-time tool, so it shows connections that are terminating in red and new connections in green. You can close a connection by right-clicking it and selecting Close Connection. You can also kill the associated process by selecting End Process.

(more…)

Managing Routes

Thursday, February 14th, 2008

Using a command-line interface

The following command displays all the static and dynamic routes on a system:

> route print

(more…)

Finding a Computer’s Active Directory Site

Thursday, February 14th, 2008

Using a command-line interface

In the following command, replace <HostName> with the name of the host whose site you want to find.

> nltest /server:<HostName> /DsGetSite

(more…)

Registering DNS Records or Flushing the DNS Cache

Thursday, February 14th, 2008

Using a command-line interface

The following command displays the contents of the local DNS cache:

> ipconfig /displaydns

(more…)

Configuring DNS Settings

Thursday, February 14th, 2008

Using a graphical user interface

To configure the DNS suffix, do the following:

  1. From the Control Panel, open the System applet.
  2. Select the Computer Name tab (Network Identification tab on Windows 2000).
  3. Click the Change button (Settings button on Windows 2000).
  4. Click the More button.
  5. Enter the suffix under the Primary DNS suffix of this computer heading.
  6. Check the box beside Change primary DNS suffix when domain membership changes if you want the suffix to change to the name of the Active Directory domain the computer joins.
  7. Click OK until all the windows are closed. You will be prompted to reboot for the changes to take effect.

(more…)