<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>4sysops &#187; networking</title>
	<atom:link href="http://4sysops.com/archives/tag/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://4sysops.com</link>
	<description>For Windows Administrators</description>
	<lastBuildDate>Wed, 08 Feb 2012 20:25:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<image>
    <title>4sysops</title>
    <url>http://4sysops.com/4sysops-rss.png</url>
    <link>http://4sysops.com</link>
    <width>143</width>
    <height>49</height>
    <description>4sysops.com</description>
    </image>		<item>
		<title>FREE: Zenmap: Windows GUI for nmap</title>
		<link>http://4sysops.com/archives/zenmap-windows-gui-for-nmap/</link>
		<comments>http://4sysops.com/archives/zenmap-windows-gui-for-nmap/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 17:29:08 +0000</pubDate>
		<dc:creator>Justin Shin</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=7726</guid>
		<description><![CDATA[Zenmap is an Open Source GUI for the free Windows network scanner  nmap.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Zenmap is an Open Source GUI for the free Windows network scanner  nmap.</i></strong></p>
<p><a href="http://nmap.org/">Nmap </a>is a tool that needs no introduction. Quite arguably it should be in the hands, or at least the back pocket, of most systems administrators. Nmap can perform network host and service discovery, security scans, OS fingerprinting, and a whole lot more. <a href="http://nmap.org/zenmap/">Zenmap</a>, a highly functional GUI for nmap, helps ease the learning curve by providing a user-friendly interface for both building scans and viewing scan results or reports. Plus, Zenmap is a multi-platform application that runs on Windows as well as Linux and Mac.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/01/The-Windows-Zenmap-GUI.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/01/The-Windows-Zenmap-GUI.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="The Windows Zenmap GUI" src="http://4sysops.com/wp-content/uploads/2012/01/The-Windows-Zenmap-GUI_thumb.png" alt="The Windows Zenmap GUI" width="404" height="459" border="0" /></a></p>
<p align="center"><em>The Windows Zenmap GUI</em></p>
<h2>How it works</h2>
<p>You can think of Zenmap as a “syntax builder” for nmap. Rather than sitting on top of nmap, it simply sends commands to the platform-specific nmap executable and pipes the output back. This is very useful for nmap beginners who would like to harness the power of nmap while learning some of the <a href="http://nmap.org/book/man.html">deep syntax options</a> it provides.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/01/Zenmap-makes-it-easy-to-build-out-command-line-options-like-this.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/01/Zenmap-makes-it-easy-to-build-out-command-line-options-like-this.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Zenmap makes it easy to build out command line options like this" src="http://4sysops.com/wp-content/uploads/2012/01/Zenmap-makes-it-easy-to-build-out-command-line-options-like-this_thumb.png" alt="Zenmap makes it easy to build out command line options like this" width="591" height="32" /></a></p>
<p><em>Zenmap makes it easy to build out command line options like this</em></p>
<p>The basic operation in nmap is network scanning and Zenmap allows you to perform and save scans as well as the results from those scans. Zenmap uses Profiles, which are basically nmap parameter presets, to specify how scans are performed. It ships with some handy preset profiles, such as <em>Intense scan</em>, which scans hosts with “all advanced/aggressive options,” <em>Quick scan</em>, which scans hosts without those advanced options, and <em>Slow comprehensive scan</em>, which is exactly as it sounds. Budding administrators can choose profiles that match their needs. For example, if your goal is host discovery, <em>Quick scan</em> might do the job. If your goal is to map out every single TCP port, you’ll need to do an <em>Intense scan, all TCP ports</em> at a minimum.</p>
<h2>Defining a target</h2>
<p>Every scan must be associated to a specific target, which can be a single host, an interval range of hosts, or a full subnet. Nmap uses the <a href="http://nmap.org/book/man-target-specification.html">following syntax</a> for target definitions:</p>
<ul>
<li><strong>Single host:</strong> Just a hostname or IP address will do, like localhost or 127.0.0.1<strong></strong></li>
<li><strong>Interval:</strong> Intervals are denoted by a dash in the IP address; for example, if you want to scan 192.168.1.0/24 through 192.168.10.0/24, you would use 192.168.1-10.0-255<strong></strong></li>
<li><strong>CIDR Notation:</strong> Nmap accepts CIDR target specification, like 192.168.5.0/24<strong></strong></li>
<li><strong>Lists:</strong> Separate different targets with a comma; for instance, 10.1.1.0/24, 192.168.1.0/24<strong></strong></li>
</ul>
<h2>Reporting window</h2>
<p>Zenmap provides different tabs for reporting on scan results. These tabs either directly report the output of nmap or expand on the output with diagrams and user-friendly reports. The tabs include:</p>
<ul>
<li><strong>Nmap output:</strong> The piped output of the nmap command sent by Zenmap<strong></strong></li>
<li><strong>Ports/Hosts:</strong> If a host is selected on the left, this will display open and unknown ports. If a service is selected on the left, this will display all hosts for that service<strong></strong></li>
<li><strong>Topology: </strong>A neat diagram of the network topology as understood by Nmap<strong></strong></li>
<li><strong>Host Details:</strong> Displays a condensed report of pertinent host information from the scan</li>
</ul>
<p><a href="http://4sysops.com/wp-content/uploads/2012/01/A-sample-Nmap-output-window-from-an-Intense-scan.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/01/A-sample-Nmap-output-window-from-an-Intense-scan.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="A sample Nmap output window from an Intense scan" src="http://4sysops.com/wp-content/uploads/2012/01/A-sample-Nmap-output-window-from-an-Intense-scan_thumb.png" alt="A sample Nmap output window from an Intense scan" width="404" height="459" border="0" /></a></p>
<p align="center"><em>A sample Nmap output window from an Intense scan</em></p>
<h1>Useful tools</h1>
<p>Zenmap also ships with some useful tools that can help you track changes between scans and drill down to useful information within long scan results. The <em>Compare Results</em> tool provides an interface for differentiating between two scans, which can be used to monitor daily changes in network topology or available hosts. The <em>Search Scan Results</em> tool is great for finding specific text in results, and the <em>Filter Hosts</em> tool does exactly what you would imagine &#8211; it filters hosts, which comes in handy when scanning large subnets or lists of networks.</p>
<h2>Saving scans</h2>
<p>By going to File &gt; Save Scan, you can save a scan result report in XML or plain text format for later consumption. This comes in handy when you perform a large scan and do not want to repeat the scan again later while reviewing results. The XML format is also very friendly for consumption by third party report generation packages as well as web service reporting.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2012/01/A-sample-XML-report-generated-by-Zenmap.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/01/A-sample-XML-report-generated-by-Zenmap.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="A sample XML report generated by Zenmap" src="http://4sysops.com/wp-content/uploads/2012/01/A-sample-XML-report-generated-by-Zenmap_thumb.png" alt="A sample XML report generated by Zenmap" width="604" height="400" border="0" /></a></p>
<p align="center"><em>A sample XML report generated by Zenmap</em></p>
<h2>Custom profiles</h2>
<p>Perhaps the best feature of Zenmap is its Profile Editor, which empowers users who are unfamiliar with nmap syntax to build powerful and custom scanning profiles. These profiles can be saved for later use and even exported to other interested admins. The Profile Editor window contains the following tabs:</p>
<ul>
<li><strong>Profile:</strong> The name and description of your profile<strong></strong></li>
<li><strong>Scan:</strong> The most important tab, where you can specify targets, scan type (TCP, UDP, IP), timing template, and much more<strong></strong></li>
<li><strong>Ping:</strong> Specifies ping behavior. You can suppress pings or build a specific ICMP packet<strong></strong></li>
<li><strong>Scripting: </strong>Include nmap scripts in your scan. Zenmap comes with many useful scripts<strong></strong></li>
<li><strong>Target:</strong> Allows for greater target specification flexibility, including excluded hosts, target list files, and fast scan support<strong></strong></li>
<li><strong>Source:</strong> Specify how you would like the scanner to behave with respect to scanning identity, IP address, port, and interface<strong></strong></li>
<li><strong>Other:</strong> Includes options for verbosity level, TTL, and other scanner behaviors<strong></strong></li>
<li><strong>Timing: </strong>Defines timing profile with respect to maximum scan time, scan delay, and timeouts, among other things<strong></strong></li>
</ul>
<p><a href="http://4sysops.com/wp-content/uploads/2012/01/Use-the-Profile-Editor-to-develop-custom-profiles-that-meet-your-enterprise-needs.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2012/01/Use-the-Profile-Editor-to-develop-custom-profiles-that-meet-your-enterprise-needs.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="Use the Profile Editor to develop custom profiles that meet your enterprise needs" src="http://4sysops.com/wp-content/uploads/2012/01/Use-the-Profile-Editor-to-develop-custom-profiles-that-meet-your-enterprise-needs_thumb.png" alt="Use the Profile Editor to develop custom profiles that meet your enterprise needs" width="604" height="400" border="0" /></a></p>
<p align="center"><em>Use the Profile Editor to develop custom profiles that meet your enterprise needs</em></p>
<p>Saving profiles saves time because it allows the administrator to quickly perform familiar and repetitive scans without specifying the target and options. Using saved profiles also ensures that when comparing two scan results you are working from the same scan options.</p>
<h2>Wrapping up</h2>
<p>Zenmap is an excellent Windows GUI for nmap and takes the edge off of the learning curve. Administrators who are versed in basic networking will have little trouble jumping into the simple, yet powerful interface that Zenmap offers. Since ZenMap is Open Source, it represents a great cost savings for the budget-strapped admin with excellent community support and regular updates. If you haven’t checked out Zenmap yet, give it a try! Achieving IT security is a moving target, and Zenmap makes it easier to reach your goal.</p>
<h2><a href="http://nmap.org/zenmap/">Zenmap</a></h2>
Author: Justin Shin
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-emco-mac-address-scanner/" title="FREE: EMCO MAC Address Scanner (June 27, 2011)">FREE: EMCO MAC Address Scanner</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/zenmap-windows-gui-for-nmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: SolarWinds Real-Time Bandwidth Monitor</title>
		<link>http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/</link>
		<comments>http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 19:05:13 +0000</pubDate>
		<dc:creator>Timothy Warner</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=7542</guid>
		<description><![CDATA[In this article you will be introduced to the free Real-Time Bandwidth Monitor utility from SolarWinds. With this tool you can watch network utilization statistics for multiple interfaces in real time]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this article you will be introduced to the free Real-Time Bandwidth Monitor utility from SolarWinds. With this tool you can watch network utilization statistics for multiple interfaces in real time</i></strong></p>
<p>One of the duties of many Windows systems administrator is network management. That is, you may be called to detect, diagnose, troubleshoot and resolve network interface slowdowns.</p>
<p>As your network grows in complexity to include multiple line-of-business (LOB) Web applications, load-balancing configurations, and the like, interface troubleshooting and performance monitoring can easily become extremely cumbersome and complex.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Monitoring-an-interface.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Monitoring-an-interface.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="SolarWinds Real-Time Bandwidth Monitor - Monitoring an interface" src="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Monitoring-an-interface_thumb.png" alt="SolarWinds Real-Time Bandwidth Monitor - Monitoring an interface" width="600" height="311" /></a></p>
<p align="center"><em>Monitoring an interface with SolarWinds Real-Time Bandwidth Monitor</em></p>
<p>To assist us in this effort, <a href="http://www.solarwinds.com/?CMP=SYN-TAD-4SYSOPS-RTBM_REVIEW-X-SWHP-SOLARWINDS">SolarWinds</a> gives us the <a href="http://www.solarwinds.com/register/registrationshort.aspx?program=1643&amp;c=70150000000PDzJ&amp;CMP=SYN-TAD-4SYSOPS-RTBM_REVIEW-RTBM-DL-RTBM">Real-Time Bandwidth Monitor</a>. This is a free utility that enables us to monitor network bandwidth utilization statistics for multiple interfaces in real time.</p>
<h2>Setting up interface bandwidth monitoring</h2>
<p>The Real-Time Bandwidth Monitor software can be installed on any modern 32- or 64-bit edition of Windows desktop and server operating systems.</p>
<p>However, it should be noted that because the interface polling and statistics gathering in this product relies upon Simple Network Management Protocol (SNMP), you need SNMP turned on for any device you will be monitoring, which it will be by default for your network devices.</p>
<p>In some cases, you will prefer to have an SNMP server in place in your domain prior to using this tool.</p>
<p>For instance, you can fire up Server Manager in Windows Server 2008 R2 and install the <strong>SNMP Server</strong> feature, as shown in the following figure.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/12/Windows-Server-2008-R2-Install-SNMP-Server-feature.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/12/Windows-Server-2008-R2-Install-SNMP-Server-feature.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="Windows Server 2008 R2 - Install SNMP Server feature" src="http://4sysops.com/wp-content/uploads/2011/12/Windows-Server-2008-R2-Install-SNMP-Server-feature_thumb.png" alt="Windows Server 2008 R2 - Install SNMP Server feature" width="600" height="444" /></a></p>
<p align="center"><em>Windows Server 2008 R2 &#8211; Install SNMP Server feature</em></p>
<p>Once you have SNMP Server installed, you can configure SNMP-related metadata like the community name and trap destinations by modifying the properties of the SNMP Service Windows service. This process is depicted in the following screen capture.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/12/SNMP-Service-Windows-service.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/12/SNMP-Service-Windows-service.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="SNMP Service Windows service" src="http://4sysops.com/wp-content/uploads/2011/12/SNMP-Service-Windows-service_thumb.png" alt="SNMP Service Windows service" width="600" height="481" /></a></p>
<p align="center"><em>SNMP Service Windows service</em></p>
<p>Upon first launch of the application, you are asked to create a monitor. This task includes three pieces of information:</p>
<ul>
<li>The IP or hostname of a device (desktop PC, server, switch, router, wireless access point, etc.)</li>
<li>The SNMP version in use on your network (1,2, or 3)</li>
<li>The SNMP credentials (community name for SNMPv1 and v2; username, context, and authentication method for SNMPv3)</li>
</ul>
<p><a href="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Configuring-the-device.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Configuring-the-device.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="SolarWinds Real -Time Bandwidth Monitor -Configuring the device" src="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Configuring-the-device_thumb.png" alt="SolarWinds Real -Time Bandwidth Monitor -Configuring the device" width="600" height="427" /></a></p>
<p align="center"><em>Configuring the device</em></p>
<p>The next step in the setup process is selecting the desired interface. If you are connected to a switch, then you will be able to monitor individual port IDs; if you are connected to a Windows server, you can choose among physical and virtual network interfaces.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Selecting-an-interface-to-monitor.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Selecting-an-interface-to-monitor.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="SolarWinds Real -Time Bandwidth Monitor - Selecting an interface to monitor" src="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Selecting-an-interface-to-monitor_thumb.png" alt="SolarWinds Real -Time Bandwidth Monitor - Selecting an interface to monitor" width="600" height="428" /></a></p>
<p align="center"><em>Selecting an interface to monitor</em></p>
<p>We are almost finished. The final step in the configuration process is setting threshold values. The percentages that you specify for warning and critical values enable the Real-Time Bandwidth Monitor to give you feedback regarding degrees of bandwidth utilization.</p>
<p>Note in the following screenshot that you can also limit the chart date to a particular time interval or data points (sampling is performed at the half-second rate). Click <strong>Launch Monitor</strong> to start the monitor. Yes, you can have more than one monitor running on a host computer simultaneously.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Setting-threshold-values.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Setting-threshold-values.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="SolarWinds Real-Time Bandwidth Monitor -Setting threshold values" src="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Setting-threshold-values_thumb.png" alt="SolarWinds Real-Time Bandwidth Monitor -Setting threshold values" width="600" height="430" /></a></p>
<p align="center"><em>Setting threshold values</em></p>
<h2>Monitoring an interface</h2>
<p>As you can see in the following screenshot, the monitoring screen is a resizable dialog box that is laid out in a very easy-to-understand manner. Inbound and outbound traffic on the selected interface are color-coded, as is the data line if it exceeds a threshold value.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Monitoring-an-interface.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Monitoring-an-interface.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="SolarWinds Real-Time Bandwidth Monitor - Monitoring an interface" src="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Monitoring-an-interface_thumb.png" alt="SolarWinds Real-Time Bandwidth Monitor - Monitoring an interface" width="600" height="311" /></a></p>
<p align="center"><em>Monitoring an interface</em></p>
<p>The line chart is active; you can analyze data points simply by hovering your mouse over them. This is shown in the following screen capture.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Analyzing-a-data-point.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Analyzing-a-data-point.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="SolarWinds Real-Time Bandwidth Monitor - Analyzing a data point" src="http://4sysops.com/wp-content/uploads/2011/12/SolarWinds-Real-Time-Bandwidth-Monitor-Analyzing-a-data-point_thumb.png" alt="SolarWinds Real-Time Bandwidth Monitor - Analyzing a data point" width="291" height="323" /></a></p>
<p align="center"><em>Analyzing a data point</em></p>
<p>You can make use of another of SolarWinds tools (this one is not free) called <a href="http://www.solarwinds.com/products/toolsets/wankiller.aspx?CMP=SYN-TAD-4SYSOPS-RTBM_REVIEW-T-PPI-WAN_KILLER">WAN Killer</a> to simulate loads through monitored network interfaces.</p>
<p>While we are on the subject of related SolarWinds software, the Real-Time Bandwidth Monitor is a &#8220;smaller sibling&#8221; to their enterprise <a href="http://www.solarwinds.com/products/network-management/network-performance-monitor.aspx?CMP=SYN-TAD-4SYSOPS-RTBM_REVIEW-NPM-PPI-NPM">Orion Network Performance Monitor</a> (NPM) software. NPM is a one-stop solution for automatically discovering and monitoring interfaces in your LAN and WAN environments. You can download a free demo from SolarWinds if you are so interested.</p>
<h2>Conclusion</h2>
<p>In summary, the SolarWinds Real-Time Bandwidth Monitor gives us systems/network administrators the ability to visualize network bandwidth utilizations on our interfaces. This data is extremely important not only for troubleshooting speed and access problems, but also for application performance tuning and enhancing the overall health of our network. Please feel free to leave your questions in the comments portion of this post.</p>
<h2><a href="http://www.solarwinds.com/register/registrationshort.aspx?program=1643&amp;c=70150000000PDzJ&amp;CMP=SYN-TAD-4SYSOPS-RTBM_REVIEW-RTBM-DL-RTBM">Real-Time Bandwidth Monitor</a></h2>
Author: Timothy Warner
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/poll-are-you-currently-using-a-monitoring-solution/" title="Poll: Are you currently using a monitoring solution? (January 17, 2012)">Poll: Are you currently using a monitoring solution?</a> (11)</li>
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-8-dashboards/" title="SCOM 2012 review &#8211; Part 8: Dashboards (December 28, 2011)">SCOM 2012 review &#8211; Part 8: Dashboards</a> (0)</li>
	<li><a href="http://4sysops.com/archives/scom-2012-review-part-7-linux-and-jee-monitoring/" title="SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring (December 26, 2011)">SCOM 2012 review &#8211; Part 7: Linux and JEE monitoring</a> (4)</li>
	<li><a href="http://4sysops.com/archives/notifications-and-custom-commands-in-nagwinnrpe/" title="Notifications and Custom Commands in Nagwin/Nrpe (December 23, 2011)">Notifications and Custom Commands in Nagwin/Nrpe</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set up a 802.1x in a Active Directory domain &#8211; Part 2</title>
		<link>http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/</link>
		<comments>http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 22:05:08 +0000</pubDate>
		<dc:creator>Geoff Kendal</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6766</guid>
		<description><![CDATA[In part 1, we started to walk through deploying a 801.x wireless network. In this article, we will look at configuring the Network Policy Server (NPS) role, the access points, and finally pushing out the settings to clients via Group Policy.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In part 1, we started to walk through deploying a 801.x wireless network. In this article, we will look at configuring the Network Policy Server (NPS) role, the access points, and finally pushing out the settings to clients via Group Policy.</i></strong></p>
<p>We already started to <a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/">set up our 802.1x wireless network</a>, by installing certificate services and enrolling our NPS server. We now have to configure our ‘Network Policy Server’. We can do this by opening the NPS frontend which you can find in the Administrative Tools folder.</p>
<p>The first thing to check is that NPS has been registered in Active Directory – right click the root NPS node and if it isn’t greyed out, click ‘Register server in Active Directory’. We can now start the NPS wizard, by clicking on the NPS root node, then from the main area, selecting ‘RADIUS Server for 802.1x wireless’ from the pulldown menu, then clicking the ‘configure 802.1x’ link below it.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-Network-Policy-Server.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-Network-Policy-Server.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="802.1x Active Directory - Network Policy Server" src="http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-Network-Policy-Server_thumb.png" alt="802.1x Active Directory - Network Policy Server" width="600" height="405" /></a></p>
<p><em>Network Policy Server – RADIUS configuration</em></p>
<p>From the next window, we want to select wireless connections, and enter a descriptive name for the policies the wizard will create within NPS. Once we have entered this information, we need to set up a RADIUS client. All your access points will be RADIUS clients (provided that they support this). You will need to supply a friendly name (I used the access point&#8217;s hostname) and also its IP address.</p>
<p>Next, we have to supply a shared secret that is common for all access points and the NPS server. The main point is that users will never have to deal with the shared secret. On the first RADIUS client, you can use the ‘generate option’. Make sure to take a note of the generated key.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-New-Radius-client.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-New-Radius-client.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="802.1x Active Directory -New Radius client" src="http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-New-Radius-client_thumb.png" alt="802.1x Active Directory -New Radius client" width="500" height="511" /></a></p>
<p><em>Generate the shared secret for NPS and RADIUs clients</em></p>
<p>On the next screen, we should choose MS Protected EAP (PEAP). The following screen in the wizard is of interest, as it will allow you to fine-tune who or what has access to your wireless network. I initially added ‘Domain Users’ and ‘Domain Computers’, however, this would allow employees to join untrusted devices onto our network by entering their AD username &amp; password. In the end I opted for keeping ‘Domain Computers’ to ensure that all managed devices can connect. Then I created an Active Directory group ‘Allowed Wi-Fi users’, so IT can easily allow certain users access by adding them to an AD group.</p>
<p>The good thing about adding domain computers at this stage is that the wireless connection will be established before a user has logged on. This allows users who don’t have cached credentials to log on and you can manage a system remotely while it is sat at the login screen.</p>
<p>Once you have finished the wizard, you should restart the NPS server. NPS is now ready to start authenticating clients, so we move onto the configuration of our access points. Most access points are configured using a web based interface, as mentioned earlier. I’m using a Cisco WAP200. Once on the admin interface, I just navigated to the wireless security settings, selected WPA2-Enterprise, set the encryption to AES, entered the IP address of my RADIUS (NPS) server, and entered the shared secret that we made a note of earlier (You did take a note of it, didn’t you?)</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-Cisco-Access-Point.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-Cisco-Access-Point.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none;" title="802.1x Active Directory - Cisco Access Point" src="http://4sysops.com/wp-content/uploads/2011/08/802.1x-Active-Directory-Cisco-Access-Point_thumb.png" alt="802.1x Active Directory - Cisco Access Point" width="500" height="451" /></a></p>
<p><em>Cisco WAP200 RADIUS configuration</em></p>
<p>At this point, clients should be ready to connect to the wireless network – I added my Active Directory user account to the ‘Allowed Wi-Fi users’ group and was then able to connect my iPhone after entering my Active Directory credentials and accepting the certificate we generated earlier.</p>
<p>When everything is working fine, I recommend deploying the settings to clients using Group Policy. You will find the required settings under Computer Settings &gt; Windows settings &gt; Security Settings &gt; Wireless Network Policies. You can add additional access points to the RADIUS clients folder in the NPS frontend. Make sure to use the same shared secret as before.</p>
Author: Geoff Kendal
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-emco-mac-address-scanner/" title="FREE: EMCO MAC Address Scanner (June 27, 2011)">FREE: EMCO MAC Address Scanner</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</title>
		<link>http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/</link>
		<comments>http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 20:00:47 +0000</pubDate>
		<dc:creator>Geoff Kendal</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6719</guid>
		<description><![CDATA[If you’re running a Wi-Fi network in your enterprise Windows network, 802.1x is certainly the way to go - it moves away from pre-shared keys and lets us centrally manage access to your wireless network. In this article I’ll start to take you through how to set up your own 802.1x Wi-Fi network on a Windows Active Directory domain.]]></description>
			<content:encoded><![CDATA[<p><strong><i>If you’re running a Wi-Fi network in your enterprise Windows network, 802.1x is certainly the way to go &#8211; it moves away from pre-shared keys and lets us centrally manage access to your wireless network. In this article I’ll start to take you through how to set up your own 802.1x Wi-Fi network on a Windows Active Directory domain.</i></strong></p>
<h2>Benefits of using 802.1x for Wi-Fi authentication</h2>
<p>If you’re running Wi-Fi to provide access to you enterprise, you need to ensure that it is as secure as possible, and also keep access to the wireless network manageable. At home you probably use a pre shared key (PSK) to grant/restrict access to the wireless network, while this is fine for a network with only a handful of client devices, we need something a bit more durable in the enterprise – Imagine having to change the key on 100+ workstations when a disgruntled employee leaves your business! Using 802.1x / WPA2-Enterprise technology we can control access to our wireless network in a much more granular fashion, by selecting groups of users or computers from active directory that will be granted access – if a user’s AD account is disabled, so is their ability to access the wireless network. We can also use group policy to push out the Wi-Fi settings, completely centralising all aspects of you wireless network deployment.</p>
<h2>Requirements</h2>
<p>Before we get started, we will need a few bits and pieces:</p>
<ul>
<li>Windows 2008 domain</li>
<li>Wireless access point (supporting RADIUS/WPA2-Enterprise)
In my examples, I’ll be using a CISCO WAP200.</li>
<li>Laptop with Wi-Fi that is an Active Directory domain member</li>
</ul>
<p><span class="Apple-style-span" style="font-size: 20px; font-weight: bold;">Installing the NPS and Certificate Services</span></p>
<p>Firstly, we will need to add the following roles onto a server, or servers to the domain (if you’ve already got servers running these, you don’t need to add them again):</p>
<ul>
<li>Active Directory Certificate Services</li>
<li>Network Policy and Access Services</li>
</ul>
<p>You can add roles by opening up ‘Server Manager’, selecting ‘roles’, then clicking on ‘add roles’ and following the wizard. The Certificate Services setup will ask you a few questions, if it’s your first time using the Certificate Services role, you’ll just want to select Enterprise &amp; Root CA.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/08/802.1x-Wi-Fi-Windows-Active-Directory-Certificates.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/08/802.1x-Wi-Fi-Windows-Active-Directory-Certificates.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border: 0px;" title="802.1x - Wi-Fi - Windows - Active Directory - Certificates" src="http://4sysops.com/wp-content/uploads/2011/08/802.1x-Wi-Fi-Windows-Active-Directory-Certificates_thumb.png" alt="802.1x - Wi-Fi - Windows - Active Directory - Certificates" width="500" height="233" border="0" /></a></p>
<p><em>Certificates snap-in</em></p>
<h2>Certificate enrolment</h2>
<p>Once we have installed the roles, we will need to enrol our NPS server for a certificate from the server that is running our Certificate Services (CS). To do this, from the server running NPS, we need the Certificates MMC snap-in (Run mmc.exe &gt; file &gt; Add/Remove snap-ins &gt; Certificates) – make sure you set the snap-in to manage certificates for the computer account on the local system. Once the certificates MMC is loaded, we can enrol for a new certificate by right clicking on the Certificates\Personal\Certificates folder, then selecting ‘Request new certificate’ – all being well, we should be able to click next, then tick ‘Active Directory Enrolment’ – we should then see a certificate issued to the server running NPS, issued by our CS.</p>
<p>In part 2 we will continue with our 802.1x wireless setup, by configuring our NPS role and access points.</p>
Author: Geoff Kendal
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/microsoft-exam-70-640-active-directory-trusts-sample-question/" title="Microsoft Exam 70-640 &#8211; Active Directory trusts &#8211; Sample question (February 8, 2012)">Microsoft Exam 70-640 &#8211; Active Directory trusts &#8211; Sample question</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-exam-70-640-active-directory-trusts/" title="Microsoft Exam 70-640 &#8211; Active Directory trusts (February 7, 2012)">Microsoft Exam 70-640 &#8211; Active Directory trusts</a> (0)</li>
	<li><a href="http://4sysops.com/archives/microsoft-exam-70-640-configuring-active-directory-forests-and-domains-sample-practice-question/" title="Microsoft Exam 70-640 &#8211; Active Directory Forests and Domains &#8211; Sample question (January 18, 2012)">Microsoft Exam 70-640 &#8211; Active Directory Forests and Domains &#8211; Sample question</a> (5)</li>
	<li><a href="http://4sysops.com/archives/microsoft-exam-70-640-configuring-active-directory-forests-and-domains/" title="Microsoft Exam 70-640 &#8211; Active Directory Forests and Domains (January 17, 2012)">Microsoft Exam 70-640 &#8211; Active Directory Forests and Domains</a> (0)</li>
	<li><a href="http://4sysops.com/archives/how-to-synchronize-windows-server-2008-with-an-external-time-server/" title="How to synchronize Windows Server 2008 with an external time server (January 9, 2012)">How to synchronize Windows Server 2008 with an external time server</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: WhatsUp Gold TFTP Server</title>
		<link>http://4sysops.com/archives/free-whatsup-gold-tftp-server/</link>
		<comments>http://4sysops.com/archives/free-whatsup-gold-tftp-server/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 21:15:09 +0000</pubDate>
		<dc:creator>External author</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6716</guid>
		<description><![CDATA[The free TFTP Server from WhatsUp Gold allows you to securely transfer operating system software or device configuration files across computers and devices in your network.]]></description>
			<content:encoded><![CDATA[<p><strong><i>The free TFTP Server from WhatsUp Gold allows you to securely transfer operating system software or device configuration files across computers and devices in your network.</i></strong></p>
<p><em>Submitted by Ipswitch</em></p>
<p>Are you a network engineer who is looking for an always-on, service based tool to simplify and secure the transfer of system or configuration files across your network? The <a href="http://www.whatsupgold.com/free-software/network-tools/tftp-server.aspx">WhatsUp Gold free TFTP Server</a> allows you to save time and effort while uploading and downloading files.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/08/Free-TFTP-Server.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/08/Free-TFTP-Server.png','',event,300,75)"><img style="background-image: none; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; padding-top: 0px; border-width: 0px;" title="Free TFTP Server" src="http://4sysops.com/wp-content/uploads/2011/08/Free-TFTP-Server_thumb.png" alt="Free TFTP Server" width="604" height="372" border="0" /></a></p>
<p><em>WhatsUP Gold free TFTP Server</em></p>
<h2>Features</h2>
<ul>
<li>Restrict client permissions to the server.</li>
<li>Transfer and store IOS firmware configurations and images.</li>
<li>Back-up and restore network device configuration files including Cisco IOS, Juniper, HP, 3Com.</li>
<li>Supports file sizes up to 4 GB</li>
<li>Runs as a Windows service, supporting 24&#215;7 server availability</li>
<li>Restrict TFTP server availability by subnet.</li>
<li>Define a custom TFTP server root.</li>
<li>Bind the TFTP server to a single IP address, or opt to bind it to all available addresses on the computer running the tool.</li>
</ul>
<h2><a href="http://www.whatsupgold.com/free-software/network-tools/tftp-server.aspx">WhatsUp Gold TFTP Server</a></h2>
Author: External author
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-emco-mac-address-scanner/" title="FREE: EMCO MAC Address Scanner (June 27, 2011)">FREE: EMCO MAC Address Scanner</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-whatsup-gold-tftp-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: EMCO MAC Address Scanner</title>
		<link>http://4sysops.com/archives/free-emco-mac-address-scanner/</link>
		<comments>http://4sysops.com/archives/free-emco-mac-address-scanner/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 21:30:03 +0000</pubDate>
		<dc:creator>External author</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6294</guid>
		<description><![CDATA[Introducing EMCO MAC Address Scanner - a brand new freeware tool for Windows that allows extracting MAC addresses from network PCs.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Introducing EMCO MAC Address Scanner &#8211; a brand new freeware tool for Windows that allows extracting MAC addresses from network PCs.</i></strong></p>
<p><em>Submitted by Igor Vinnykov</em></p>
<p>As is well known, a MAC address is a unique serial number that identifies the network card and distinguishes it from all others. While most network operations use an IP address to identify the target, some require a MAC address as well. For example, you need to know the MAC address of the remote PC if you need to turn it on remotely using the <a href="http://4sysops.com/archives/free-emco-wakeonlan-wake-on-lan-utility-for-large-networks/">Wake-on-LAN</a> technology. Under Windows, you can find out the computer MAC address by using the standard ipconfig utility, but it can only work on a local PC. To extract MAC addresses from remote computers, you have to use specialized network utilities and <a href="http://emcosoftware.com/mac-address-scanner">EMCO MAC Address Scanner</a> is one of them.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/07/Free.MAC_.Address.Scanner.von_.EMCO_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/07/Free.MAC_.Address.Scanner.von_.EMCO_.png','',event,300,75)"><img style="background-image: none; border-right-width: 0px; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Free MAC Address Scanner von EMCO" border="0" alt="Free MAC Address Scanner von EMCO" src="http://4sysops.com/wp-content/uploads/2011/07/Free.MAC_.Address.Scanner.von_.EMCO_thumb.png" width="600" height="455" /></a></p>
<p><em>EMCO MAC Address Scanner</em></p>
<p>EMCO MAC Address Scanner is a network application designed to extract MAC addresses from PCs located in a corporate network. It allows scanning the entire network and detecting MAC addresses for every discovered PC. Alternatively, you can scan selected workgroups or domains, a range of IP addresses or a particular PC only. Multiple scan operations are performed in parallel to reduce the time required to scan large networks.   
<p>During a network scan, the application detects PCs available within the selected workgroups, domains or IP range and tries to extract their MAC addresses. If an attempt to extract such an address fails, the application repeats the attempt using a different MAC detection mechanism. The current version uses the Neighbor Discovery, NetBIOS, WinAPI and WMI methods, and only if all of them fail, the application reports that the MAC address is not detected. Usually, it may happen if you don&#8217;t have an administrative access to the remote PC. In this case, you can find the respective error message in the application log and try to resolve the problem by specifying alternate credentials to be used to connect to a particular PC or a group of PCs.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/07/EMCO.Free_.MAC_.Address.Scanner.Applying.Alternate.Credentials.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/07/EMCO.Free_.MAC_.Address.Scanner.Applying.Alternate.Credentials.png','',event,300,75)"><img style="background-image: none; border-right-width: 0px; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="EMCO Free MAC Address Scanner - Applying Alternate Credentials" border="0" alt="EMCO Free MAC Address Scanner - Applying Alternate Credentials" src="http://4sysops.com/wp-content/uploads/2011/07/EMCO.Free_.MAC_.Address.Scanner.Applying.Alternate.Credentials_thumb.png" width="600" height="455" /></a></p>
<p><em>Applying Alternate Credentials</em></p>
<p>When the network enumeration is complete, the application displays a list of scanned PCs with their MAC addresses. Those PCs that have not revealed their MAC addresses can be rescanned with one mouse click. Once you are satisfied with the result, you can export the collected information to an XML or a CSV file for future use as input for other tools such as the Wake-on-LAN utility, for example.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/07/EMCO.Free_.MAC_.Address.Scanner.Export.MAC_.Addresses.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/07/EMCO.Free_.MAC_.Address.Scanner.Export.MAC_.Addresses.png','',event,300,75)"><img style="background-image: none; border-right-width: 0px; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="EMCO.Free.MAC.Address.Scanner.Export.MAC.Addresses" border="0" alt="EMCO.Free.MAC.Address.Scanner.Export.MAC.Addresses" src="http://4sysops.com/wp-content/uploads/2011/07/EMCO.Free_.MAC_.Address.Scanner.Export.MAC_.Addresses_thumb.png" width="600" height="455" /></a></p>
<p><em>Export MAC addresses</em></p>
<h2><a href="http://emcosoftware.com/mac-address-scanner">EMCO MAC Address Scanner</a></h2>
Author: External author
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-emco-mac-address-scanner/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FREE: Network Activity Indicator &#8211; Displays network activity in the systray</title>
		<link>http://4sysops.com/archives/free-network-activity-indicator-displays-network-activity-in-the-systray/</link>
		<comments>http://4sysops.com/archives/free-network-activity-indicator-displays-network-activity-in-the-systray/#comments</comments>
		<pubDate>Fri, 20 May 2011 22:00:34 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6152</guid>
		<description><![CDATA[The portable Network Activity Indicator tool brings back the Windows XP network icon and can display download and upload speeds.]]></description>
			<content:encoded><![CDATA[<p><strong><i>The portable Network Activity Indicator tool brings back the Windows XP network icon and can display download and upload speeds.</i></strong></p>
<p>Some of you might remember Windows XP, one of the predecessors of Windows 7. One of the superior features of this popular operating system was the network icon in the systray. Contrary of Windows 7&#8242;s network icon it was able to display the network activity with two little blinking monitors representing inbound and outbound connections.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/05/Network.Activity.Indicator.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/Network.Activity.Indicator.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Network.Activity.Indicator" src="http://4sysops.com/wp-content/uploads/2011/05/Network.Activity.Indicator_thumb.png" border="0" alt="Network.Activity.Indicator" width="305" height="388" /></a></p>
<p>The main purpose of these monitors were to attract the user&#8217;s attention that a network connection was established. The older readers know that, in the good old Windows XP times, dialup connections were the common way to connect to the Internet, and Internet service providers charged by the hour. Computers nowadays are always online, so the blinking monitors have become somewhat obsolete, which is probably why Microsoft replaced them with an admittedly simple network icon.</p>
<p>But I really miss Windows XP&#8217;s network icon. The constantly blinking monitors gave me the feeling that my computer is a part of something bigger. The free Network Activity Indicator not only satisfies nostalgia needs, however. The tool can also display the currently used upload and download bandwidth. A single click on its systray icon reveals two graphs that represent upload and download speeds of the immediate past. And, like the Windows XP network icon, the Network Activity Indicator also displays the received and sent packets. However, it would be more useful if the tool showed the amount of transferred data in MB.</p>
<p>Nevertheless, those of you who are still claiming that Windows XP has superior features such as the blinking monitors have no more excuse to keep running an archaic operating system.</p>
<p>By the way, if you search the download link for Network Activity Indicator on its homepage, it is in the upper right corner.</p>
<h2><a href="http://laushung.deviantart.com/art/Network-Activity-Indicator-205863269">Network Activity Indicator</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-network-activity-indicator-displays-network-activity-in-the-systray/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FREE: TMnetSim Network Simulator &#8211; Simulate network latency and packet loss</title>
		<link>http://4sysops.com/archives/free-tmnetsim-network-simulator-simulate-network-latency-and-packet-loss/</link>
		<comments>http://4sysops.com/archives/free-tmnetsim-network-simulator-simulate-network-latency-and-packet-loss/#comments</comments>
		<pubDate>Thu, 12 May 2011 01:54:50 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=6090</guid>
		<description><![CDATA[The free Network Simulator TMnetSim allows you to simulate a poor or slow network connection by configuring network latency (packet delay) and packet loss between client and server.]]></description>
			<content:encoded><![CDATA[<p><strong><i>The free Network Simulator TMnetSim allows you to simulate a poor or slow network connection by configuring network latency (packet delay) and packet loss between client and server.</i></strong></p>
<p>Analysts keep preaching the cloud gospel, and it appears that quite a few CIOs have become believers. What many underestimate is that the connection between earth and heaven, respectively the cloud, can sometimes get clogged when too many believers knock on heaven&#8217;s door because they all want &quot;to be in&quot; (as Steve Ballmer would express it).</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.png','',event,300,75)"><img style="border-right-width: 0px; margin: 0px auto; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Network Simulator TMnetSim" border="0" alt="Network Simulator TMnetSim" src="http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim_thumb.png" width="604" height="303" /></a></p>
<p> So, before you leave the solid ground of your LAN to find blissfulness in higher spheres, you might want to simulate what happens when the network connection between your clients and the almighty cloud servers becomes slow. The free portable tool <a href="http://tmurgent.com/Tools.aspx">TMnetSim Network Simulator</a> enables you to simulate a poor or slow network connection in your lab.  
</p>
<p>TMnetSim sits between the client and the server and allows only as much network quality as you admit. You can launch the tool either on the client or on the server. It is also possible to run the client and server on the same computer. The configuration for these scenarios is a bit different. The example below explains how you have to set up TMnetSim on the server if you want to test a slow RDP connection.</p>
<p>First, you have to tell TMnetSim to listen to a free TCP port on the server. I used 3390 for this example. Then, you have to configure the destination to which TMnetSim will forward the packets. Since the Remote Desktop Session Host is on the same machine as TMnetSim in this configuration, you can use 127.0.0.1 as the outbound IP address. The RDP port is 3389 by default, which is why you have to use this as the outbound port (see screenshot above).</p>
<p>To connect the RDP client to the RDS host, you can use the IP address of the server. But instead of connecting to the default RDP port 3389, you have to tell your RDP client to connect to port 3390 (see screenshot below) because this is the port where TMnetSim is waiting for packets to be forwarded to the RDS host.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.RDP_.client.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.RDP_.client.png','',event,300,75)"><font color="#2e2302"></font><img style="border-bottom: 0px; border-left: 0px; margin: 0px auto; display: block; float: none; border-top: 0px; border-right: 0px" title="Network Simulator - TMnetSim - RDP client" border="0" alt="Network Simulator - TMnetSim - RDP client" src="http://4sysops.com/wp-content/uploads/2011/05/Network.Simulator.TMnetSim.RDP_.client_thumb.png" width="412" height="249" /></a> </p>
<p>TMnetSim supports two ways to simulate a bad network connection: You can configure the network latency (packet delay), or you can configure packet loss. For packet delays, you can choose between Fixed, Normal, Gaussian, and Markovian. A fixed packet delay gives you a general idea of how a slow network connection affects the performance of the application. But for a more realistic test, you should use one of the three other methods that work with a random network latency that is common in WANs.</p>
<p>The Markovian packet delay is the most realistic method. If you choose this method, you have to configure the Delay Base and the Jitter in milliseconds. The Jitter determines the maximum range the packet delay can vary. For instance, if you use a Delay Base of 1000ms and a Jitter of 200ms, TMnetSim will randomly choose a delay for each packet in the range from 900ms to 1100ms. More information about the different packet delay methods can be found in TMnetSim&#8217;s manual.</p>
<p>TMnetSim allows you to configure the network latency for the inbound and the outbound connection, but, to keep things simple, it is enough to use just one method. The configuration example above will let you experience a very jerky RDP connection. With a packet delay of 300ms, I could already feel the difference from a solid LAN connection.</p>
<p>Packet loss is quite common in WANs. TCP can compensate packet losses by retransmitting lost packets. However, this reduces the network&#8217;s throughput. Some higher protocols such as RDP have a low tolerance for packet loss. A loss rate of 3% in each direction can break an RDP connection.</p>
<p>After configuring the IP address, the ports, the network latency, and the packet loss, you have to click &quot;Start&quot; to make TMnetSim listen on the Inbound Connection port. As soon as the connection is established, the tool will display some useful data in the lower pane, such as the current packet delay, the bandwidth, or the lost packets. TMnetSim Network Simulator can also capture the packets and copy them to text files.</p>
<p>I tested TMnetSim Network Simulator 2.4.0.0 on Windows 7 and Windows Server 2008 R2.</p>
<p>Do you know of another good network simulator tool?</p>
<h2><a href="http://tmurgent.com/Tools.aspx">TMnetSim Network Simulator</a></h2>
<p>(Search for TMnetSim on the page.)</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/dedicated-administrator-connection-dac-in-sql-server-2008-r2/" title="Dedicated Administrator Connection (DAC) in SQL Server 2008 R2 (November 15, 2011)">Dedicated Administrator Connection (DAC) in SQL Server 2008 R2</a> (3)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-tmnetsim-network-simulator-simulate-network-latency-and-packet-loss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: CommTest &#8211; Test network speed</title>
		<link>http://4sysops.com/archives/free-commtest-test-network-speed/</link>
		<comments>http://4sysops.com/archives/free-commtest-test-network-speed/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 00:39:45 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5927</guid>
		<description><![CDATA[CommTest is a portable free tool that allows you to test the network speed between two computers.]]></description>
			<content:encoded><![CDATA[<p><strong><i>CommTest is a portable free tool that allows you to test the network speed between two computers.</i></strong></p>
<p><a href="http://www.roadkil.net/program.php/P5/CommTest">CommTest</a> is a very simple program but is nevertheless quite useful if you want to test the network speed between two computers. All you have to do is start the tool on both machines and then establish a connection from one of the computers to the other by entering the IP address or the domain name. Make sure that no firewall is in the way or that port 65000 is open.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/04/Test.network.speed_.ComTest.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/04/Test.network.speed_.ComTest.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border-width: 0px;" title="Test network speed - ComTest" src="http://4sysops.com/wp-content/uploads/2011/04/Test.network.speed_.ComTest_thumb.png" border="0" alt="Test network speed - ComTest" width="441" height="218" /></a></p>
<p>CommTest will then immediately start uploading and downloading data and test the network speed in KB/s. You can also see the bytes and packets that have been sent and received. The tool is supposed to be able to measure the latency, but that didn&#8217;t work when I tried it. This was probably due to the fact that I tested it in a virtual environment and so the latency might have been just too small to be measurable.</p>
<p>I tried CommTest 1.2 on Windows 7 and Windows Server 2008 R2.</p>
<p>If you just want to test the network speed to the Internet, then the online tool <a href="http://4sysops.com/archives/speedtestnet-measure-your-network-speed-to-locations-around-the-world/">speedtest.net</a> is the thing for you.</p>
<h2><a href="http://www.roadkil.net/program.php/P5/CommTest">CommTest</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-commtest-test-network-speed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FREE: Wake-on-LAN Packet Sniffer &#8211; Capture Magic Packets</title>
		<link>http://4sysops.com/archives/free-wake-on-lan-packet-sniffer-capture-magic-packets/</link>
		<comments>http://4sysops.com/archives/free-wake-on-lan-packet-sniffer-capture-magic-packets/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 01:34:37 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5910</guid>
		<description><![CDATA[The free Wake-on-LAN Packet Sniffer tool allows you to display Wake-on-LAN Magic Packet frames.]]></description>
			<content:encoded><![CDATA[<p><strong><i>The free Wake-on-LAN Packet Sniffer tool allows you to display Wake-on-LAN Magic Packet frames.</i></strong></p>
<p>The portable utility <a href="http://www.profshutdown.com/wakeonlan_troubleshoot.aspx">Wake-on-LAN Packet Sniffer</a> is one of the simplest free tools I have ever tried. All you can do with it is launch it. And then you have to wait. You wait for Magic Packets. Magic Packets are shy creatures, but sometimes you can catch them if you boot up early.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/03/Magic.Packets.Wake_.On_.LAN_.Packet.Sniffer.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/03/Magic.Packets.Wake_.On_.LAN_.Packet.Sniffer.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Magic.Packets.Wake.On.LAN.Packet.Sniffer" src="http://4sysops.com/wp-content/uploads/2011/03/Magic.Packets.Wake_.On_.LAN_.Packet.Sniffer_thumb.png" border="0" alt="Magic.Packets.Wake.On.LAN.Packet.Sniffer" width="506" height="390" /></a></p>
<p>What I mean is, if a PC doesn&#8217;t wake up even though you have bombarded the machine with Wake-on-LAN Magic Packet frames, you can boot up the machine manually, launch the Wake-on-LAN Packet Sniffer, and see if the Magic Packets really arrive at the NIC of this PC.</p>
<p>Usually, Wake-on-LAN tools work reliably in LANs. Problems often come up if you want to send Magic Packets across routers. This only works if the routers in your organizations are configured to forward broadcasts containing Magic Packets. Another cause of error can be the NIC, which is either not configured to accept Magic Packets or simply doesn&#8217;t support Wake-on-LAN.</p>
<p>These last two errors can&#8217;t be ruled out with the Wake-on-LAN Packet Sniffer because you have to use the tool when the PC is already fully awake. Hence, Wake-on-LAN Packet Sniffer also works on boards that don&#8217;t support Wake-on-LAN.</p>
<p>In the screenshot, you can see that the tool can even create pictures of these shy creatures. As I explained in my article about the <a href="http://4sysops.com/archives/free-solarwinds-wake-on-lan-tool/">free SolarWinds Wake-on-LAN tool</a>, Magic Packets consist of six bytes of 255 (hex FF) followed by sixteen repetitions of the target computer’s MAC address.</p>
<p>I have tried Wake-on-LAN Packet Sniffer 1.1 on Windows 7 and used the <a href="http://www.profshutdown.com/wol_free_utility.aspx">Wake-on-LAN Packet sender</a> of the same vendor (Power Management Software). The ultimate <a href="http://4sysops.com/archives/free-emco-wakeonlan-wake-on-lan-utility-for-large-networks/">free Wake-on-LAN utility certainly is EMCO WakeOnLan</a>.</p>
<h2><a href="http://www.profshutdown.com/wakeonlan_troubleshoot.aspx">Wake-on-LAN Packet Sniffer</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-wake-on-lan-packet-sniffer-capture-magic-packets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE: Network Infrastructure Change Reporter &#8211; Network device discovery and auditing</title>
		<link>http://4sysops.com/archives/free-network-infrastructure-change-reporter-network-device-discovery-and-auditing/</link>
		<comments>http://4sysops.com/archives/free-network-infrastructure-change-reporter-network-device-discovery-and-auditing/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 03:33:08 +0000</pubDate>
		<dc:creator>External author</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5869</guid>
		<description><![CDATA[Network Infrastructure Change Reporter is a network device auditing and reporting tool that tracks changes to all network devices and their settings.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Network Infrastructure Change Reporter is a network device auditing and reporting tool that tracks changes to all network devices and their settings.</i></strong></p>
<p><em>Submited by Stephen Schimmel</em></p>
<p><a href="http://www.netwrix.com/network_infrastructure_change_reporter_freeware.html">Network Infrastructure Change Reporter</a> is a network device discovery and auditing tool, which is very similar to all other NetWrix Change Reporter products (offered standalone or as a part of <a href="http://www.netwrix.com/change_auditing_solution.html">NetWrix Change Reporter Suite</a>). This product scans specified IP ranges for network devices, discovers new devices, reports disappeared devices, and more importantly audits network devices for configuration changes, such as changes in device parameters, routing tables, permissions, firewall rules and everything else exposed through SNMP protocol and device-specific MIB files.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/03/Network.Device.Discovery.NetWrix.Infrastructure.Change.Reporter.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/03/Network.Device.Discovery.NetWrix.Infrastructure.Change.Reporter.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border-width: 0px;" title="Network Device Discovery - NetWrix Infrastructure Change Reporter" src="http://4sysops.com/wp-content/uploads/2011/03/Network.Device.Discovery.NetWrix.Infrastructure.Change.Reporter_thumb.png" border="0" alt="Network Device Discovery - NetWrix Infrastructure Change Reporter" width="419" height="644" /></a></p>
<p>The idea is very simple—it just looks at the available MIB files (many of them are included in the product installation and you can also import MIB files specific to your devices) and polls the managed devices periodically (once a day by default) to see what settings have changed and reports the changes detected since the last scan. The tool is invaluable in diagnosing device issues caused by recent changes (e.g. if you colleague changed something important and forgot to tell this to others – by this Change Reporter will tell you that next morning). It&#8217;s also great for automatic documentation of network changes and can be used to perform security and compliance audits.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/03/Network.Device.Discovery.NetWrix.Infrastructure.Change.Reporter.Reports.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/03/Network.Device.Discovery.NetWrix.Infrastructure.Change.Reporter.Reports.png','',event,300,75)"><img style="margin: 0px; display: inline; border-width: 0px;" title="Networ Device Discovery - NetWrix.Infrastructure Change Reporter - Reports" src="http://4sysops.com/wp-content/uploads/2011/03/Network.Device.Discovery.NetWrix.Infrastructure.Change.Reporter.Reports_thumb.png" border="0" alt="Networ Device Discovery - NetWrix.Infrastructure Change Reporter - Reports" width="600" height="198" /></a></p>
<p>The reports are sent automatically by e-mail to specified recipients. You can customize the reports by including or excluding certain types of changes (e.g. exclude some config settings that change too frequently and have no relevance to you).</p>
<p>As is the case with most NetWrix products, this product is available in both freeware and commercial editions. The free version only supports audit archiving and reporting for two days (today and yesterday).</p>
<h2><a href="http://www.netwrix.com/network_infrastructure_change_reporter_freeware.html">Network Infrastructure Change Reporter</a></h2>
Author: External author
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-network-infrastructure-change-reporter-network-device-discovery-and-auditing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poll: When will you deploy IPv6 in your organization?</title>
		<link>http://4sysops.com/archives/poll-when-will-you-deploy-ipv6-in-your-organization/</link>
		<comments>http://4sysops.com/archives/poll-when-will-you-deploy-ipv6-in-your-organization/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 10:35:02 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Poll]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5858</guid>
		<description><![CDATA[I will argue in this article that IPv6 will not come gradually but overnight. In this poll, you can share the plans of your organization to get prepared for the big change on the Internet.]]></description>
			<content:encoded><![CDATA[<p><strong><i>I will argue in this article that IPv6 will not come gradually but overnight. In this poll, you can share the plans of your organization to get prepared for the big change on the Internet.</i></strong></p>
<p>I am quite aware of the fact that running such a poll on 4sysops won&#8217;t reveal representative data. It is not just that I hope I have whetted your appetite for IPv6 with my <a href="http://4sysops.com/archives/ipv6-part-1-get-started-now/">IPv6 tutorial</a>. It is no secret that some regions, most prominently the emerging markets in Asia, have a bigger interest in deploying IPv6 than do the countries in the west that won&#8217;t really suffer from the fact that all IPv4 addresses have been taken. And according to the statistics of my web analysis tool, mostly westerners enjoy reading 4sysops.</p>
<p>You know, about two years ago I recommended to <a href="http://4sysops.com/archives/why-and-how-to-disable-ipv6/">disabl</a><a href="http://4sysops.com/archives/why-and-how-to-disable-ipv6/">e</a><a href="http://4sysops.com/archives/why-and-how-to-disable-ipv6/"> IPv6</a> in your organization mostly for security reasons and for reducing complexity. If you followed my advice, you probably didn&#8217;t miss anything since then. IPv6 still plays no significant role on the Internet and in corporate networks.</p>
<p>It is hard to tell what the next two years will bring. As I&#8217;ve said before, the fact that more and more mobile phones, tablets, e-book devices, TV sets, etc. require IP addresses could make the introduction of IPv6 interesting also for countries in the west. The sheer number of new Internet devices could mean that NAT (Network Address Translation) will reach its limits earlier than many expect.</p>
<p>One thing is for sure, though—IPv6 won&#8217;t come gradually; it will come overnight. It is always like this with these new technologies. Do you remember how IPv4 came to your organization? The Internet technology has been available for decades before suddenly everyone wanted to be connected as fast as possible. I think CompuServe was the first big online service that got connected to the Internet. After that, the other online services didn&#8217;t want to fall behind and so within a relatively short time period everyone wanted to be &#8220;in,&#8221; as Steve Ballmer would express it today.</p>
<p>I think, it will be the same way with IPv6. Who knows, maybe the iPhone 6 will be the first IPv6-only device, and Steve Jobs will once again be the man who made it all possible. The question will be how fast your organization can make the transition from IPv4 to IPv6. This is certainly nothing that can be done on the fly. Thus it might make sense to get ready for the big change before there is a real need for it.</p>
<p>On the other hand, you might just wasting resources if you deploy a technology that increases costs, but not productivity, in your company. If you deployed IPv6 two years ago, as some IPv6 enthusiasts recommended, you most likely did it just for the fun of it. So what will you do?</p>
<p>Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/poll-when-will-you-deploy-ipv6-in-your-organization/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>IPv6 tutorial &#8211; Part 8: Special addresses</title>
		<link>http://4sysops.com/archives/ipv6-tutorial-part-8-special-addresses/</link>
		<comments>http://4sysops.com/archives/ipv6-tutorial-part-8-special-addresses/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 00:54:19 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5833</guid>
		<description><![CDATA[The special IPv6 addresses discussed in this part of the IPv6 tutorial are the unspecified address, the loopback address, IPv4-mapped addresses, 6to4 addresses, multicast addresses, and the solicited-node address.]]></description>
			<content:encoded><![CDATA[<p><strong><i>The special IPv6 addresses discussed in this part of the IPv6 tutorial are the unspecified address, the loopback address, IPv4-mapped addresses, 6to4 addresses, multicast addresses, and the solicited-node address.</i></strong></p>
<p>Last time, I talked about <a href="http://4sysops.com/archives/ipv6-tutorial-part-7-zone-id-and-unique-local-ipv6-unicast-addresses/">zone IDs and unique local IPv6 unicast addresses</a>. Today, I will introduce some special addresses. In practice, usually only the networking guys really have to deal with these addresses. But as a Windows admin, you should have at least heard of the terms.</p>
<h2>Unspecified address</h2>
<p>The IPv6 unspecified address is specified as &#8220;0:0:0:0:0:0:0:0&#8243; (or &#8220;::&#8221; if you have a sense for mathematical beauty). I think, this naming convention is somewhat funny. It reminds me of the &#8220;unspeakable word.&#8221; But there is also some sense in this because applications use the unspecified address as a variable for, well, an unspecified address. I guess, you won&#8217;t see this address often, just like you didn&#8217;t have many encounters with the unspecified IPv4 address 0.0.0.0. Note that you can&#8217;t assign this address to an interface, which also makes sense because then you would specify it, which is strictly forbidden. <img src='http://4sysops.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<h2>Loopback address</h2>
<p>The IPv6 loopback address is almost as beautiful as the unspecified address: ::1. The loopback address for IPv4 127.0.0.1 is comparably ugly and, like its predecessor, is assigned to every host interface and used by applications to communicate with local services via TCP/IP. Packets addressed to the loopback interface must never leave the host.</p>
<h2>IPv4-mapped address</h2>
<p>Like the loopback address, IPv4-mapped addresses are only used for internal representation on a host. They allow developers to use one API for both IPv4 and IPv6 calls. The syntax of IPv4-mapped addresses looks like this: :FFFF:w.x.y.z, where &#8220;w.x.y.z&#8221; is the IPv4 address that is represented in the IPv6 address.</p>
<h2>6to4 addresses</h2>
<p>6to4 is a tunneling technique that allows two IPv6 cable systems to communicate over an IPv4 network (usually the Internet). For this, at least one of the IPv6 systems needs an IPv4 address and a special IPv6 address, the so-called 6to4 address. A computer that has a 6to4 address is called &#8220;6to4 host.&#8221; This transition technology will mostly likely be used by computers in IPv4 networks to reach IPv6-only hosts. Essentially, the 6to4 address makes the 6to4 host appear on the &#8220;IPv6 landscape&#8221; even if it is not directly reachable through IPv6 by encapsulating IPv6 packets in IPv4 packets. The IPv4 packets are converted to IPv6 packets and vice versa by a 6to4 gateway. 6to4 addresses have the prefix 2002::/16. The next 32 bits are the IPv4 address of the 6to4 host converted into hex. Since a 6to4 address can only be created by using a unique public IPv4 address, the correspondingIPv6 address is also unique. The last 80 bits are for the local network and the host.</p>
<h2>IPv6 multicast addresses</h2>
<p>Like in IPv4, IPv6 multicast addresses are used to send the same data to multiple hosts simultaneously. Since multicast-capable software, such as OS imaging tools, typically do all the IP configuration, Windows admins usually are not bothered with the networking details. But if you ever stumble across an IPv6 address that begins with FF, you know what you are dealing with.</p>
<h2>Solicited-node address</h2>
<p>A special type of multicast address are the solicited-node addresses, which have the prefix FF02::1:FF00:0/104. Solicited-node addresses are used for <a href="http://4sysops.com/archives/ipv6-tutorial-part-3-new-features-ipsec-and-lan-features/">neighbor discovery</a>, which I already discussed in my article about the new IPv6 features. If a host needs to know the MAC address that belongs to a certain IP address, it won&#8217;t use an ARP broadcast like in IPv4. Instead, it would use multicast to contact only those hosts that listen to the solicited-node addresses where the last 24 bits are identical to the ones in the IP address that has to be resolved.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/ipv6-tutorial-part-8-special-addresses/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<series:name><![CDATA[IPv6 Tutorial]]></series:name>
	</item>
		<item>
		<title>IPv6 tutorial &#8211; Part 7: Zone ID and unique local IPv6 unicast addresses</title>
		<link>http://4sysops.com/archives/ipv6-tutorial-part-7-zone-id-and-unique-local-ipv6-unicast-addresses/</link>
		<comments>http://4sysops.com/archives/ipv6-tutorial-part-7-zone-id-and-unique-local-ipv6-unicast-addresses/#comments</comments>
		<pubDate>Sat, 12 Mar 2011 02:55:52 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5831</guid>
		<description><![CDATA[The zone ID is used to distinguish ambiguous link-local and site-local addresses. Unique local IPv6 unicast addresses are another way to address the problem of ambiguous IPv6 addresses.]]></description>
			<content:encoded><![CDATA[<p><strong><i>The zone ID is used to distinguish ambiguous link-local and site-local addresses. Unique local IPv6 unicast addresses are another way to address the problem of ambiguous IPv6 addresses.</i></strong></p>
<p>In the last post of this IPv6 tutorial, I introduced <a href="http://4sysops.com/archives/ipv6-tutorial-part-6-site-local-addresses-and-link-local-addresses/">link-local and site-local IPv6 addresses</a>. The problem with local-use unicast addresses is that they are not unique because they can be reused. Everything is fine as long as duplicate addresses are in networks of different organizations (sites). However, within in an organization, local-use addresses can also be assigned multiple times.</p>
<h2>IPv6 zone ID</h2>
<p>The purpose of zone IDs is to distinguish these addresses. For instance, if host A has two NICs that are connected to two different links (subnets), the same local-link address could have been used for NIC 1 on host A and on host B that is on the link of host A&#8217;s NIC 2. To distinguish this ambiguous link-local address, host A uses the interface index of NIC 1 as the zone ID for the local IP address.</p>
<p>For site-local addresses, the operating system uses the site ID (also called the scope ID). If a host is only connected to one site, this ID is always 1.</p>
<p>You can display the interface indexes on a host with the command &#8220;netsh interface ipv6 show address level=verbose&#8221;. If you launch the ipconfig command, you can see the local-link and site-local addresses with their zone IDs. The syntax for identifying the zone is address%zone_ID. This is an example of a link-local IP address with zone ID 11: fe80::bd0f:a8bc:6480:238b%11.</p>
<p>Note that the zone ID is only known at the local host that assigned it. I think in practice you will seldom be bothered with zone IDs as you don&#8217;t have to configure them manually.</p>
<h2>Unique local IPv6 unicast address</h2>
<p>Even with the use of zone IDs, you should probably avoid having ambiguous IP addresses in your network. Instead of site-local addresses, you can work with unique local IPv6 unicast addresses. These local-use addresses are also not routed across the Internet; however, like global IPv6 addresses, they are unique. Well, more or less, as you will soon see.</p>
<p>The prefix of unique local IPv6 unicast addresses is FC00::/7. The eighth bit is the Local flag and is set to 1 for local addresses. A Local flag with 0 has not yet been defined. Perhaps this could be a way to make local IPv6 addresses global? Anyway, until IPv6, creators have made up their mind, the prefix of unique local IPv6 unicast addresses is FD00::/8. Don&#8217;t worry if you don&#8217;t really understand this; all you really have to know about unique local IPv6 unicast addresses is this:</p>
<p>The next 40 bits are for the global ID and are randomly set. The following 16 bits are the subnet ID, which you can use for hierarchical addresses within your organization. As usual, the last 64 bits are the interface ID.</p>
<p>The trick with the random global ID is that it makes it somewhat unlikely for duplicate local addresses to occur on a site or even in the networks of two merging organizations. Actually, the probability that two organizations use the same global ID for their unique local IPv6 addresses is 1/2<sup>40</sup>=9.1 10<sup>-13</sup>. Winning the Lotto jackpot is a few magnitudes more likely. However, what the IPv6 creators didn&#8217;t take into account is that Murphy&#8217;s Law rules in all networks. Hence, &#8220;relatively unique local IPv6 unicast addresses&#8221; would probably have been a better name. <img src='http://4sysops.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>In the next post in this IPv6 tutorial, I will discuss the <a href="http://4sysops.com/archives/ipv6-tutorial-part-8-special-addresses/">special IPv6 addresses: unspecified address, IPv4-mapped address, 6to4 addresses, IPv6 multicast address, and solicited-node address</a>.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/ipv6-tutorial-part-7-zone-id-and-unique-local-ipv6-unicast-addresses/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<series:name><![CDATA[IPv6 Tutorial]]></series:name>
	</item>
		<item>
		<title>IPv6 tutorial &#8211; Part 6: Site-local addresses and link-local addresses</title>
		<link>http://4sysops.com/archives/ipv6-tutorial-part-6-site-local-addresses-and-link-local-addresses/</link>
		<comments>http://4sysops.com/archives/ipv6-tutorial-part-6-site-local-addresses-and-link-local-addresses/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 02:41:38 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5829</guid>
		<description><![CDATA[In this article, you will learn about the syntax of IPv6 site-local addresses and link-local addresses, which are so-called local-use, unicast addresses. ]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this article, you will learn about the syntax of IPv6 site-local addresses and link-local addresses, which are so-called local-use, unicast addresses. </i></strong></p>
<p>In the last post of this IPv6 tutorial, you learned about the different address types and the new public IP addresses,<a href="http://4sysops.com/archives/ipv6-tutorial-part-5-address-types-and-global-unicast-addresses/"> the global unicast addresses</a>. Today I will introduce the so-called local-use, unicast addresses, which are those IPv6 addresses that are not routed across the public Internet. There are two types of local-use, unicast addresses: site-local addresses and link-local addresses.</p>
<h2>Site-local addresses</h2>
<p>Site-local addresses are equivalent to private IP addresses in IPv4. The address space reserved for these addresses, which are only routed within an organization and not on the public Internet, is 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16. In IPv6, the first 10 bits of a site-local address are set to 1111111011, which is why these addresses always begin with FEC0. The following 54 bits are the subnet ID, which you can use in your organization for hierarchical routing, and the last 64 bits are the interface ID, which is the part that has to be unique on a link (local network on which hosts communicate without intervening routers). Thus, the prefix of a site-local address is FEC0::/10.</p>
<p>Note:  Site-local addresses have been <a href="https://www.ietf.org/rfc/rfc3879.txt">deprecated</a>, but existing implementations can still continue use them. Thus, they will probably stay around for a while. The proper way to work with private addresses in IPv6 is the use of <a href="http://4sysops.com/archives/ipv6-tutorial-part-7-zone-id-and-unique-local-ipv6-unicast-addresses/">unique local addresses</a> which I will discuss in my next post.</p>
<h2>Link-local addresses</h2>
<p>From IPv4, you might know APIPA (Automatic Private IP Addressing) or AutoNet. Whenever automatic IP configuration through DHCP fails, Windows automatically assigns an autoconfiguration address in the range 169.254.0.1 to 169.254.255.254, which allows the computer to communicate with other machines on the link. In IPv6, link-local addresses always begin with 1111111010 (FE80).</p>
<p>Unlike site-local addresses, link-local addresses are never forwarded by routers and therefore can only be reached on the link. This is the reason why the next 54 bits are set to 0. The last 64 bits are set randomly by the operating system.</p>
<p>There is an important difference between IPv6 link-local addresses and IPv4 APIPA addresses. Once a PC receives an IPv4 address from a DHCP server, the APIPA address is no longer reachable. However, with IPv6, a network interface always has a link-local address even if you assign another IPv6 address manually or if the NIC receives an IPv6 address from a DHCP server. This means that computers on a link can always communicate through IPv6 using link-local addresses, which is not the case in IPv4 because APIPA addresses are not in the same subnet as private or public IPv4 addresses. Thus, if the local DHCP is unavailable, the computers can still access local services through IPv6 but won&#8217;t be able to reach the Internet or services in other links.</p>
<p>In the next post of this IPv6 tutorial, I will talk a little about the <a href="http://4sysops.com/archives/ipv6-tutorial-part-7-zone-id-and-unique-local-ipv6-unicast-addresses/">zone ID and unique local IPv6 unicast addresses</a>.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/ipv6-tutorial-part-6-site-local-addresses-and-link-local-addresses/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<series:name><![CDATA[IPv6 Tutorial]]></series:name>
	</item>
		<item>
		<title>IPv6 tutorial &#8211; Part 5: Address types and global unicast addresses</title>
		<link>http://4sysops.com/archives/ipv6-tutorial-part-5-address-types-and-global-unicast-addresses/</link>
		<comments>http://4sysops.com/archives/ipv6-tutorial-part-5-address-types-and-global-unicast-addresses/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 02:06:52 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5826</guid>
		<description><![CDATA[This part of the IPv6 tutorial discusses the three general IPv6 address types (unicast, multicast, anycast) and introduces the sub type global unicast address.]]></description>
			<content:encoded><![CDATA[<p><strong><i>This part of the IPv6 tutorial discusses the three general IPv6 address types (unicast, multicast, anycast) and introduces the sub type global unicast address.</i></strong></p>
<p>In my last post in the IPv6 series, you learned the <a href="http://4sysops.com/archives/ipv6-tutorial-part-4-ipv6-address-syntax/">IPv6 address syntax</a>. Today, I will introduce the different types of IPv6 addresses.</p>
<h2>IPv6 address types</h2>
<p>There are three general types of IPv6 addresses: unicast, multicast, and anycast.</p>
<h2>Unicast addresses</h2>
<p>You know unicast addresses from IPv4. A unicast address is the most common form of an IP address and is assigned to one network interface.</p>
<h2>Multicast addresses</h2>
<p>Multicast addresses are also known in IPv4. These addresses identify multiple network interfaces / hosts. A typical use of multicast addresses in a Windows environment is the deployment of OS images to multiple hosts, simultaneously.</p>
<h2>Anycast addresses</h2>
<p>This is a new address type in IPv6. Like a multicast address, an anycast address identifies multiple interfaces; however, while multicast packets are accepted by multiple machines, anycast packets are delivered only to one interface (host). This address type allows for services that are provided by multiple servers where only one server has to respond. In routing, anycast addresses are used to route packets to the closest routers.</p>
<p>And what about broadcast addresses? They no longer exist in IPv6. Broadcasts are replaced by multicast messages. I will say something about this IPv6 technique in a later post.</p>
<p>IPv6 knows five different unicast address types: global unicast addresses, link-local addresses, site-local addresses, unique local IPv6 unicast addresses, and special addresses.</p>
<h2>Global unicast addresses</h2>
<p>A global unicast address is simply what we call a public IP address in IPv4—that is, an IP address that is routed across the whole Internet. You can make out a global unicast address easily: The first three bits are set to 001. Thus, the address prefix of a global IPv6 address is 2000::/3 because 0010000000000000 is 2000 in hex. However, in the future, the IANA (Internet Assigned Numbers Authority) might delegate currently unassigned portions of the IPv6 address space. Hence, 2000::/3 won&#8217;t always be the prefix for global unicast addresses.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/03/IPv6.tutorial.Global.unicast.address.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/03/IPv6.tutorial.Global.unicast.address.png','',event,300,75)"><img style="margin: 0px; display: inline;" title="IPv6 - tutorial - Global unicast address" src="http://4sysops.com/wp-content/uploads/2011/03/IPv6.tutorial.Global.unicast.address_thumb.png" alt="IPv6 - tutorial - Global unicast address" width="600" height="172" /></a></p>
<p>(Note: The diagram is from Microsoft&#8217;s &#8220;<a href="http://www.microsoft.com/windowsserver2003/technologies/ipv6/introipv6.mspx">Introduction to IP Version 6</a>.&#8221;)</p>
<p>The next 45 bits are the so-called global routing prefix. This is the part that is assigned to organizations. The following 16 bits are for the subnet ID, which you can use for hierarchical addressing in your network. The last 64 bits indicate the interface ID, which is the part of the IPv6 address that must be unique within a subnet. You know what this means, right? You can have 65,536 (=2<sup>16</sup>subnets), and each subnet can have 18446744073709551616 (=2<sup>64</sup>) computers. I hope you have an efficient OS deployment tool. <img src='http://4sysops.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>In my next post, I will cover the <a href="http://4sysops.com/archives/ipv6-tutorial-part-6-site-local-addresses-and-link-local-addresses/">site-local addresses and link-local address</a>.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/ipv6-tutorial-part-5-address-types-and-global-unicast-addresses/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<series:name><![CDATA[IPv6 Tutorial]]></series:name>
	</item>
		<item>
		<title>IPv6 tutorial &#8211; Part 4: IPv6 address syntax</title>
		<link>http://4sysops.com/archives/ipv6-tutorial-part-4-ipv6-address-syntax/</link>
		<comments>http://4sysops.com/archives/ipv6-tutorial-part-4-ipv6-address-syntax/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 03:32:36 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5813</guid>
		<description><![CDATA[In this article, you will learn the main concepts of the IPv6 address syntax: colon-hexadecimal representation, leading zero suppression, zero compression, and IPv6 prefix.]]></description>
			<content:encoded><![CDATA[<p><strong><i>In this article, you will learn the main concepts of the IPv6 address syntax: colon-hexadecimal representation, leading zero suppression, zero compression, and IPv6 prefix.</i></strong></p>
<p>Now that you know about the <a href="http://4sysops.com/archives/ipv6-part-2-new-features-routing/">new features of IPv6</a>, it is time to have a closer look at the practical details. In this post, I will give a short summary about the IPv6 address syntax. It is essentially a condensed version of the corresponding part in Microsoft&#8217;s white paper &#8220;<a href="http://www.microsoft.com/windowsserver2003/technologies/ipv6/introipv6.mspx">Introduction to IP Version 6</a>.&#8221;</p>
<h2>Colon-hexadecimal representation</h2>
<p>An IPv6 address consists of 128 bits and is presented in eight 16-bit blocks. Each 16-bit block is converted to a four-digit hexadecimal number. Blocks are separated by colons.</p>
<p>Example: 2001:0DB8:<span style="color: #ff0000;">0000</span>:2F3B:02AA:00FF:FE28:9C5A</p>
<h2>Leading zero suppression</h2>
<p>Because IPv6 addresses are quite long, the leading zeroes within a 16-bit block can be removed, but each block must have at least a single digit.</p>
<p>Example: 2001:DB8:<span style="color: #ff0000;">0</span>:2F3B:2AA:FF:FE28:9C5A</p>
<h2>Zero compression</h2>
<p>A contiguous sequence of 16-bit blocks set to 0 can be replaced with the so-called double colon (::). Zero compression can only be applied once in an IP address. To determine how many blocks have been omitted, you just have to count the remaining blocks and subtract this number from 8.</p>
<p>Example: FE80:<span style="color: #ff0000;">0:0:0</span>:2AA:FF:FE9A:4CA2 can be zero compressed to FE80::2AA:FF:FE9A:4CA2.</p>
<h2>IPv6 prefix</h2>
<p>IPv6 prefixes are used to express IPv6 subnets, routes, and address ranges. The syntax of IPv6 prefixes looks like this: <em>address/prefix-length</em>. It is comparable to the Classless Inter-Domain Routing (CIDR) notation for IPv4 (for instance, 192.168.0.0/16 represents a Class B subnet): Subnet masks are no longer used in IPv6.</p>
<p>Example: 21DA:D3:0:2F3B::/64 represents a subnet of 2<sup>64 </sup>addresses, where the first 64 bits are fixed and the last 64 bits are variable.</p>
<p>Admittedly, IPv6 addresses look somewhat complicated compared to the relatively simple IPv4 addresses. Rest assured that typos in IPv6 addresses will knock down quite a few systems once IPv6 starts replacing IPv4. But this is the price of the large address space. I guess, we will get used to it. In my next post, I will discuss the different types of IPv6 addresses. I promise that things won&#8217;t get easier. <img src='http://4sysops.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>In the next post of this tutorial I will say some general words about the<a href="http://4sysops.com/archives/ipv6-tutorial-part-5-address-types-and-global-unicast-addresses/"> IPv6 address types and I will introduce the most address type, the global IPv6 unicast address</a>.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/ipv6-tutorial-part-4-ipv6-address-syntax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[IPv6 Tutorial]]></series:name>
	</item>
		<item>
		<title>FREE: EMCO WakeOnLan &#8211; Wake-on-LAN utility for large networks</title>
		<link>http://4sysops.com/archives/free-emco-wakeonlan-wake-on-lan-utility-for-large-networks/</link>
		<comments>http://4sysops.com/archives/free-emco-wakeonlan-wake-on-lan-utility-for-large-networks/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 03:01:03 +0000</pubDate>
		<dc:creator>External author</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5747</guid>
		<description><![CDATA[Designed to be used in large corporate networks, a free Wake-on-LAN utility from EMCO allows network administrators to wake up multiple remote PCs.]]></description>
			<content:encoded><![CDATA[<p><strong><i>Designed to be used in large corporate networks, a free Wake-on-LAN utility from EMCO allows network administrators to wake up multiple remote PCs.</i></strong></p>
<p><em>Submitted by Igor Vinnykov</em></p>
<p>If you’ve ever tried to use Wake-on-LAN technology, you may know that its configuration can be confusing sometimes. You have to enable WOL in BIOS and motherboard settings and correctly specify the WOL command parameters. Wake-on-LAN utilities (see a <a href="http://4sysops.com/archives/free-solarwinds-wake-on-lan-tool/">review</a> for one of them) usually allow waking up one remote PC and require that you specify its IP and MAC addresses in order to generate and send a magic packet to it. In order to wake up multiple PCs, you have to write scripts to detect MAC addresses of remote PCs and execute a WOL utility to send the magic packet to every PC. A <a href="http://www.wake-on-lan.net/">free Wake-on-LAN tool from EMCO</a> is specially designed to wake up multiple remote PCs and allows automating all required operations.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/07/Free.Wake_.On_.LAN_.utility.EMCO_.WakeOnLAN.FREE_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/07/Free.Wake_.On_.LAN_.utility.EMCO_.WakeOnLAN.FREE_.png','',event,300,75)"><img style="background-image: none; border-right-width: 0px; margin: 0px auto; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Free Wake On LAN utility - EMCO WakeOnLAN FREE" border="0" alt="Free Wake On LAN utility - EMCO WakeOnLAN FREE" src="http://4sysops.com/wp-content/uploads/2011/07/Free.Wake_.On_.LAN_.utility.EMCO_.WakeOnLAN.FREE_thumb.png" width="600" height="455" /></a></p>
<p><em>Free Wake On LAN utility &#8211; EMCO WakeOnLAN FREE</em></p>
<h2>Automated Wake-on-LAN</h2>
<p>By using EMCO WakeOnLan Free, it&#8217;s really easy to wake up remote PCs, because all the configuration steps that you have to perform manually when using other utilities are automated here. In order to initiate Wake-on-LAN, you only have to select target PCs and press one button to start the operation. The application has an automatic network scanning feature that allows detecting PCs available in the Active Directory and workgroups and selecting them as targets for the Wake-On-LAN operation. All detected PCs are displayed in the visual interface according to the network structure, including groups and organization units, so that you can save time by selecting an organization unit node in the domain as a Wake-On-LAN target if you need to wake up all PCs in this unit. You can also create custom grouping for the PCs which should be turned on simultaneously.</p>
<h2>Automatic MAC addresses detection</h2>
<p>Another time-saving advantage of the EMCO WakeOnLan Free is an automatic MAC addresses detection. During a network scan, the application tries to retrieve MAC addresses for every detected PC sequentially applying four different methods until the MAC address is retrieved. In case of failure (for example, due to insufficient permissions on a remote PC), you can find the error message and troubleshooting instructions in the Application log and try to repeat retrieving the MAC address after following the suggested troubleshooting steps. Such automatic detection of MAC addresses for remote PCs can save you a lot of time and simplify your WOL configuration if you need to wake up remote PCs in a large network.</p>
<h2>Wake-On-LAN for large networks</h2>
<p>EMCO WakeOnLan Free was designed to be used in large corporate networks that may include different subnets. In such networks, both the network hardware and the Wake-on-LAN utility should be configured properly to guarantee WOL packets delivery. EMCO WakeOnLan Free provides different options for transmitting WOL packets, which include unicast and directed broadcast methods. You can select the appropriate method depending on your network configuration. Also, there is another option that can be extremely helpful for large networks. By default, the application is set to send Wake-On-LAN packets to multiple PCs in parallel to reduce the time required to wake them up. However, if multiple PCs are started simultaneously, it can cause a power peak. To prevent it, you can configure the application to limit the number of WOL packets sent per second.</p>
<p>If you are looking for a way to fully automate the wake-up tasks across the organization, the Professional version of EMCO WakeOnLan is the right choice allowing you to schedule WOL tasks and execute them automatically on a defined date and time.</p>
<h2><a href="http://emcosoftware.com/products/wake-on-lan/features.php">EMCO WakeOnLan Free</a></h2>
Author: External author
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-emco-wakeonlan-wake-on-lan-utility-for-large-networks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FREE: IPMon &#8211; Monitor IP traffic</title>
		<link>http://4sysops.com/archives/free-ipmon-monitor-ip-traffic/</link>
		<comments>http://4sysops.com/archives/free-ipmon-monitor-ip-traffic/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 01:48:08 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5739</guid>
		<description><![CDATA[IPMon is a free IP monitoring tool that is useful for troubleshooting and monitoring purposes.]]></description>
			<content:encoded><![CDATA[<p><strong><i>IPMon is a free IP monitoring tool that is useful for troubleshooting and monitoring purposes.</i></strong></p>
<p>There are so many good free packet sniffers. Most noteworthy are <a href="http://4sysops.com/archives/review-microsoft-network-monitor-30-netmon-a-rival-to-wireshark-and-omnipeek/">Network Monitor</a>, <a href="http://4sysops.com/archives/wireshark-powerful-network-analyzer/">Wireshark</a> , and <a href="http://4sysops.com/archives/smartsniff-a-smarter-packet-sniffer-than-etherealwireshark/">SmartSniff</a>. IPMon is a much simpler tool. Although it does not even allow you to view the payload of IP packets, this free IP monitoring tool can be useful in situations where a full-blown packet sniffer would be overkill.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/02/Monitor.IP_.Traffic.IPMon_.Plus_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/02/Monitor.IP_.Traffic.IPMon_.Plus_.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Monitor IP Traffic - IPMon Plus" src="http://4sysops.com/wp-content/uploads/2011/02/Monitor.IP_.Traffic.IPMon_.Plus_thumb.png" border="0" alt="Monitor IP Traffic - IPMon Plus" width="604" height="403" /></a></p>
<p><a href="http://www.netikus.net/products_nttoolkit.html">IPMon</a>, which belongs to the <a href="http://4sysops.com/archives/free-nt-toolkit-28-useful-admin-tools/">NT Toolkit suite</a>, is available as a command line utility and GUI tool (IPMon+) for Windows, Linux, FreeBSD, and OS X. The utility monitors all IP traffic on local network interfaces.</p>
<p><a href="http://4sysops.com/wp-content/uploads/2011/02/Monitor.IP_.Traffic.IPMon_.command.line_.png" onclick="return enlarge('http://4sysops.com/wp-content/plugins/zap_imgpop/','http://4sysops.com/wp-content/uploads/2011/02/Monitor.IP_.Traffic.IPMon_.command.line_.png','',event,300,75)"><img style="margin: 0px auto; display: block; float: none; border: 0px;" title="Monitor IP Traffic - IPMon - command line" src="http://4sysops.com/wp-content/uploads/2011/02/Monitor.IP_.Traffic.IPMon_.command.line_thumb.png" border="0" alt="Monitor IP Traffic - IPMon - command line" width="604" height="321" /></a></p>
<p>What I like is that repetitive traffic is grouped. Thus if a remote computer connects to multiple ports on the local host, IPMon only displays it as one connection. In a way, the tool works like <a href="http://4sysops.com/archives/free-tcpeye-live-netstat-command/">netstat and similar tools</a>. The main difference is that IPMon works with the <a href="http://www.winpcap.org/">WinpCap driver</a>, so it will see packets even if they are blocked by the firewall. It operates on a lower level and as such is more accurate. Another advantage is that you get a timestamp for each connection. This can be quite helpful for troubleshooting client-server communication where you only want to know if certain connections are established or not when you perform certain actions.</p>
<p>IPMon+ displays the protocol (TCP, UDP, ICMP, ARP), the source and destination IP, the source and destination ports, and the transmitted bytes. You can filter the ports according to protocols and ports. Also useful is that you can copy / paste from the output (e.g. into Excel) as well as sort output by clicking on columns.</p>
<p>Note that IPMon requires the <a href="http://www.winpcap.org/">WinPcap</a> network driver on Windows. All the other operating systems usually already include the pcap libraries.</p>
<h2><a href="http://www.netikus.net/products_nttoolkit.html">IPMon</a></h2>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/free-ipmon-monitor-ip-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPv6 tutorial &#8211; Part 3: New features: IPsec and LAN features</title>
		<link>http://4sysops.com/archives/ipv6-tutorial-part-3-new-features-ipsec-and-lan-features/</link>
		<comments>http://4sysops.com/archives/ipv6-tutorial-part-3-new-features-ipsec-and-lan-features/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 02:03:16 +0000</pubDate>
		<dc:creator>Michael Pietroforte</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">https://4sysops.com/?p=5733</guid>
		<description><![CDATA[This article discusses the new IPv6 features of IPsec support, automatic address assignment, and the neighbor discovery function of the ICMPv6 protocol that will replace ARP.]]></description>
			<content:encoded><![CDATA[<p><strong><i>This article discusses the new IPv6 features of IPsec support, automatic address assignment, and the neighbor discovery function of the ICMPv6 protocol that will replace ARP.</i></strong></p>
<p>In the last post of this series, I discussed the <a href="http://4sysops.com/archives/ipv6-part-2-new-features-routing/">new IPv6 features Quality of Service (QoS), hierarchical addressing, and the new address space</a>. In this post, I talk about some of the new IPv6 features that are most relevant for Windows admins.</p>
<h2>Mandatory IPsec support</h2>
<p>The IPv6 specification mandates support for IPsec (Internet Protocol security). IPv6 supporters often claim that this will improve overall security on the Internet. Since IPsec for IPv4 is optional, proprietary VPN solutions are ubiquitous. However, I believe, the main reason why IPsec deployments are rare is because configuration is relatively complicated. Thus, I doubt somehow that we will see significantly more IPsec deployments because of IPv6.</p>
<p>But what is most disappointing for me is that IPv6 doesn&#8217;t encrypt all kinds of IP traffic. While IPsec <em>implementation</em> is mandatory for IPv6, IPsec <em>deployment</em> is not. Besides, IPsec is essentially a solution for securing connections among sites; it is not a P2P encryption solution.</p>
<p>In my view, it is unbelievable that we are now introducing a new network protocol with a huge amount of effort but will still send data in clear text across the Internet. The inventors of IPv4 couldn&#8217;t foresee that secure data transmission would be an issue since their protocol was just intended to allow data transfers between educational institutions. No one really could imagine that the whole planet will use this form of communication in the future.</p>
<p>The IPv6 creators had the chance to correct this shortcoming of the Internet protocol and ensure that any kind of network traffic is encrypted by default. It is really a pity that they didn&#8217;t use this once-in-a-lifetime chance.</p>
<h2>(Simplified) automatic address assignment</h2>
<p>This is perhaps one of the features that will affect the work of Windows admins the most. Much of the documentation talks of &#8220;simplified&#8221; address assignment, but I somehow think this new feature will cause confusion among admins in the beginning. In an IPv4 network, a computer&#8217;s automatic address assignment means that a DHCP server is involved.</p>
<p>IPv6 still knows DHCP-based address assignment (also called stateful address configuration), but now hosts can also configure themselves with IPv6 addresses (stateless address configuration). There are two types of stateless configurations. Hosts can derive an IP address from a prefix (the first part of an IPv6 address that belongs to your organization) advertised by a local router, and they can assign themselves so-called link-local addresses (addresses that are not routed), which they can use to communicate with other nodes on the link (local network). Scary, isn&#8217;t it?</p>
<h2>Neighbor discovery</h2>
<p>The Internet Control Message Protocol for IPv6 (ICMPv6) will replace the Address Resolution Protocol (ARP). You probably know that ARP is used to determine the link layer address (MAC address in the case of Ethernet) from the IP address. The main problem of ARP is that it uses broadcasts, which disturbs all hosts on the link (LAN). By contrast, IPv6 uses Neighbor Solicitation multicast messages for neighbor discovery. Instead of sending a broadcast message to all nodes on the link, only the so-called solicited node multicast IPv6 address is contacted. The first 104 bits of the solicited node multicast are fixed (FF02::1:FF00:0/104), and the last 24 bits are equivalent to the last 24 bits of the IP address that has to be resolved. Since only nodes that share the last 24 bits in their IP address will listen to the solicited node address, fewer hosts are disturbed.</p>
<h2>Extensibility</h2>
<p>This is my favorite new IPv6 feature. While the IPv4 header only supports 40 bytes for options, the size of the IPv6 extensions is only constrained by the size of the IPv6 packet. IPv6 supports multiple so-called extensions headers that can be added after the IPv6 header. These extensions headers have no maximum size, which makes future enhancements of the protocol quite flexible. My hope is that this feature will be used for mandatory encryption of all IP packets.</p>
<p>Next, I will introduce the <a href="http://4sysops.com/archives/ipv6-tutorial-part-4-ipv6-address-syntax/">IPv6 address syntax</a>.</p>
Author: Michael Pietroforte
<br />
<small>Copyright &#169; 2006-2012, 4sysops, Digital fingerprint: 3db371642e7c3f4fe3ee9d5cf7666eb0</small><br />
	<br /><strong>Related</strong>
	<ul class="st-related-posts">
	<li><a href="http://4sysops.com/archives/zenmap-windows-gui-for-nmap/" title="FREE: Zenmap: Windows GUI for nmap (January 3, 2012)">FREE: Zenmap: Windows GUI for nmap</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-solarwinds-real-time-bandwidth-monitor/" title="FREE: SolarWinds Real-Time Bandwidth Monitor (December 1, 2011)">FREE: SolarWinds Real-Time Bandwidth Monitor</a> (0)</li>
	<li><a href="http://4sysops.com/archives/set-up-a-802-1x-in-a-active-directory-domain-part-2/" title="Set up a 802.1x in a Active Directory domain &#8211; Part 2 (August 29, 2011)">Set up a 802.1x in a Active Directory domain &#8211; Part 2</a> (5)</li>
	<li><a href="http://4sysops.com/archives/set-up-an-802-1x-wi-fi-network-in-a-windows-active-directory-domain-part-1/" title="Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1 (August 22, 2011)">Set up an 802.1x Wi-Fi network in a Windows Active Directory domain &#8211; Part 1</a> (0)</li>
	<li><a href="http://4sysops.com/archives/free-whatsup-gold-tftp-server/" title="FREE: WhatsUp Gold TFTP Server (August 19, 2011)">FREE: WhatsUp Gold TFTP Server</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://4sysops.com/archives/ipv6-tutorial-part-3-new-features-ipsec-and-lan-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[IPv6 Tutorial]]></series:name>
	</item>
	</channel>
</rss>

