Difference between revisions of "Techwiki:Networking"

From ReactOS Wiki
Jump to: navigation, search
Line 25: Line 25:
 
=== Results ===
 
=== Results ===
 
<placeholder>
 
<placeholder>
 +
 +
== References ==
 +
* [http://www.microsoft.com/downloads/details.aspx?FamilyID=c76296fd-61c9-4079-a0bb-582bca4a846f&DisplayLang=en TCP/IP Fundamentals (pdf)]
 +
* [http://technet.microsoft.com/en-us/library/bb758873.aspx MSDN: TCP/IP Fundamentals for Windows]
 +
* [http://www.microsoft.com/downloads/details.aspx?FamilyID=06c60bfe-4d37-4f50-8587-8b68d32fa6ee&displaylang=en Microsoft Windows Server 2003 TCP/IP Implementation Details]
 +
* [http://technet.microsoft.com/en-us/network/bb545475.aspx Next Generation TCP/IP Stack]

Revision as of 11:14, 29 November 2009

Network configuration stored in the Registry

To my knowledge, there are 4 places in the Registry where Windows stores network information:

  • HKLM\System\CurrentControlSet\Services\{GUID}\Parameters\Tcpip
  • HKLM\System\CurrentControlSet\Services\Tcpip\Linkage - note the Bind and Export keys
  • HKLM\System\CurrentControlSet\Services\Tcpip\Parameters
  • HKLM\System\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{GUID}

To keep compatibility, all have to work the same under ReactOS as under Windows.

The job is now to find out, which one represents the main place to store the information and how the other ones are synchronized. Tests I could imagine under Windows XP or Server 2003:

  • Manipulate the Registry configuration information in all places and find out, which one is used after a system restart
  • Delete a key and determine by which actions it is recreated and synchronized
  • Trying different (also exotic) network settings to find out the logic behind Windows' storage of network settings (ie, changing the network config and observing the changes in registry)
  • ...
  • Doing these tests using different ways to change the network configuration (TCP/IP Configuration Dialog, XP's "netsh.exe", ipconfig, ....)

Please write your test results to this Wiki page. They could help solving some mysteries about Windows' Network Stack :-) Colin Finck 20:25, 20 October 2008 (UTC)

The following article of Microsoft might provide useful background information: KB 314053

Results

<placeholder>

References