<?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/"
	>

<channel>
	<title>xpresslearn.com &#187; General</title>
	<atom:link href="http://www.xpresslearn.com/category/networking/networkgeneral/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xpresslearn.com</link>
	<description>Solutions to your Networking and Security questions</description>
	<lastBuildDate>Tue, 13 Dec 2011 18:16:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Windows Unidentified network</title>
		<link>http://www.xpresslearn.com/networking/networkgeneral/windows-unidentified-network</link>
		<comments>http://www.xpresslearn.com/networking/networkgeneral/windows-unidentified-network#comments</comments>
		<pubDate>Fri, 25 Feb 2011 22:23:18 +0000</pubDate>
		<dc:creator>Scott Pilkinton</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Windows Unidentified network]]></category>

		<guid isPermaLink="false">http://www.xpresslearn.com/?p=660</guid>
		<description><![CDATA[The article will explain why interfaces show up in the Network and Sharing Center of Windows Vista/7/2008 as an Unidentified network and how to turn off the discovery function, so that they no longer are automatically classified.  By turning off discover for each interface (as needed), you can eliminate the Unidentified Network all together.]]></description>
			<content:encoded><![CDATA[<p>There are things that will bug me from time to time when setting up a new system in regards to how software is implemented.  I&#8217;m sure this is common for other people in similar situations, most of the time it is just easier to ignore whatever the issue is &#8211; especially if it is just &#8216;cosmetic&#8217;.  This particular issue falls somewhere in the middle of cosmetic and possibly problematic, but I would prefer it to be gone, nonetheless&#8230;</p>
<p>The issue I&#8217;m speaking about is one regarding Windows Vista/7/2008 Server and the &#8216;Unidentified network&#8217;.  Before we dive into fixing the unidentified network categorization, a little explanation on how the process works:  The Windows Operating System wants to classify each active network interface, in order to determine what category to place the adapter in.  Inside the Control Panel, click on Network and Internet, then click View network status and tasks.  In the default view, this should bring you to the &#8216;Network and Sharing Center&#8217;.  Inside the section &#8216;View your active networks&#8217;, each connected network interface will be displayed.</p>
<p>Each network interface is then categorized as either Public, Private, or Domain.  Once the interface is automatically assigned to one of these categories, certain rules are applied.  The rules are related to the Windows Firewall, Network Discovery, and Network Sharing.</p>
<p><span id="more-660"></span></p>
<p>Let&#8217;s exclude the Domain category for a moment and talk about Public and Private networks.  Usually when a new network interface is activated (this includes Wireless networks) a window will appear asking you if the network is part of a public or private network.  The Public option is intended to be just that: public areas, which would typically be locations outside of your &#8216;trust zone&#8217;.  With Public networks, you get the most secure settings applied to that interface, which include Firewall, Network Discovery and Sharing settings.  Private networks will get less secure options applied, but usually allow more plug and play functionality like: Windows Firewall being less restrictive, Sharing allowed by default, etc.</p>
<p>Quite honestly, in a company network &#8211; most of the time you don&#8217;t necessarily want all this automatic stuff to happen.  Us network people like to think we are smart enough to know what is best for our systems and don&#8217;t want Windows (or anything else for that matter) to try and figure it out for us.  Nonetheless, most all default software installations and factory hardware configurations are geared toward the automatic, I know what is best for you configuration.</p>
<p>In this specific example, I have a crossover connection between two Windows 2008 servers that will be used with Microsoft Clustering Services.  With this connection, I have the least amount of properties assigned to the interface.  All I need is and IP address and subnet mask.  There won&#8217;t be any default gateway, DNS servers, etc &#8211; just enough to communicate over a point to point connection with another host.  Another common example of when you would have this same type configuration is when you have a secondary adapter in a machine that is communicating to device on the same subnet and no routing is involved, such as an interface being used for iSCSI storage connection.  Even though this is a common enough configuration in the business world, Windows can&#8217;t seem to figure out what to do with it.  So, what happens is the interface becomes part of an &#8216;Unidentified Network&#8217; and takes on the properties of the Public network settings (strict firewall, no sharing, etc.).</p>
<p>The fix to this is to tell Windows not to try and automatically determine what type of connection it is, but that it is an endpoint device and is not a connection to a true external network.  Consequently, Windows will then ignore the endpoint device when Windows identifies networks. The Network Awareness APIs indicate that the device does not connect the computer to a network. For end users in this situation, the Network and Sharing Center and the network icon in the notification area do not show the NDIS endpoint device as connected. However, the connection is shown in the Network Connections Folder.</p>
<p>So, for every interface that you don&#8217;t want showing up as an &#8216;Unidentified network&#8217; like the example below:</p>
<p><a href="http://www.xpresslearn.com/wp-content/uploads/01.jpg"><img class="aligncenter size-full wp-image-662" title="Windows Unidentified network" src="http://www.xpresslearn.com/wp-content/uploads/01.jpg" alt="" width="501" height="91" /></a></p>
<p>all you have to do is the following:</p>
<p>At a command prompt, run: <strong><em>ipconfig /all</em></strong></p>
<p>Find the interface that is showing up as Unidentifed, which in this case has been renamed to Crossover:</p>
<p><a href="http://www.xpresslearn.com/wp-content/uploads/2.jpg"><img class="aligncenter size-full wp-image-663" title="IPconfig output" src="http://www.xpresslearn.com/wp-content/uploads/2.jpg" alt="" width="635" height="159" /></a></p>
<p>and make note of the Physical Address (The image above has the mac address erased).</p>
<p>Next, invoke powershell at the command line.  Once that the PS command prompt, issue the command: <strong><em>get-wmiobject win32_networkadapter</em></strong> as shown below:</p>
<p><a href="http://www.xpresslearn.com/wp-content/uploads/3.jpg"><img class="aligncenter size-full wp-image-664" title="Powershell Get Network adapter properties" src="http://www.xpresslearn.com/wp-content/uploads/3.jpg" alt="" width="512" height="70" /></a></p>
<p>Once the powershell output is displayed, match up the Physical Address obtained from the previous ipconfig output with the MACAddress field of the Powershell output.  The value that needs to be obtained is the DeviceID.  In our example, the DeviceID is: 10 (shown below)</p>
<p><a href="http://www.xpresslearn.com/wp-content/uploads/4.jpg"><img class="aligncenter size-full wp-image-666" title="Powershell Network Adapter output" src="http://www.xpresslearn.com/wp-content/uploads/4.jpg" alt="" width="625" height="100" /></a></p>
<p>Now that the proper DeviceID has been obtained, open regedit and browse to the following key:</p>
<p>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002BE10318}</p>
<p>Underneath the above key, there are numbers listed for each interface on the system.  Click on the number that matches the previously obtained DeviceID.</p>
<p>Add the following new DWORD Key:</p>
<p><strong>*NdisDeviceType</strong> (be sure to include the * at the begininng)</p>
<p>Then edit the newly created key *NdisDeviceType and set the value to <strong>1</strong></p>
<p>Close regedit and reboot the machine.</p>
<p>After the machine comes back up, the adapter will no longer appear in the Network and Sharing Center.  However, if you click the Adapter settings link which lists all the network connections, you will see the interface.  Only this time, there will be no mention of an Identified network!</p>
<p><a href="http://www.xpresslearn.com/wp-content/uploads/6.jpg"><img class="aligncenter size-full wp-image-667" title="Adapter displayed in Network Connections" src="http://www.xpresslearn.com/wp-content/uploads/6.jpg" alt="" width="435" height="149" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xpresslearn.com/networking/networkgeneral/windows-unidentified-network/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

