Click here to Skip to main content
Click here to Skip to main content

SwitchNetConfig - Laptop users, quickly switch network and proxy configuration in different places

By , 6 May 2004
 

Introduction

This is a tiny utility which stores multiple network and proxy configuration as profiles. You can apply a profile to set specific network setting and proxy from simple shortcuts.

Background

If you have a laptop, when you go to different places, you have to change Network configuration and browser proxy. I have to go to 4 different places everyday with my laptop; my university, my offices and my home. Everywhere I have to change my IP setting and IE Proxy. I could write a WMI Script to do all of them. Unfortunately, for some reason WMI is not working from VB Script in my laptop but somehow it is working from .NET. So, I have made a handy utility which I can use to store configuration profiles for different places and apply them very quickly just by pressing one key and a ENTER at system startup. This program automatically sets IP, Subnet, Gateway and DNS for my LAN card and also changes the IE Proxy setting.

Using the code

You can setup in 3 easy steps.

  • 1. Click New and enter a profile name.
  • 2. Set IP configuration
  • 3. Set IE Proxy configuration

It’s even easier to use:

  • 1. Press the first letter of your profile. For example, “h” for Home.
  • 2. Press ENTER and wait as it applies the profile.
  • 3. Press ESC to quit.

Points of Interest

It’s a very simple Winforms application written in C#. The key technologies are:

  • 1. WMI
  • 2. IE Registry tweaking
  • 3. XML Serialization

WMI

Windows Management Intrumentation (WMI) helps you work with Network configuration. For example, the following code retrieves Network Setting for a given Network Card.

/// <summary>
/// Returns the network card configuration of the specified NIC
/// </summary>
/// <PARAM name="nicName">Name of the NIC</PARAM>
/// <PARAM name="ipAdresses">Array of IP</PARAM>
/// <PARAM name="subnets">Array of subnet masks</PARAM>
/// <PARAM name="gateways">Array of gateways</PARAM>
/// <PARAM name="dnses">Array of DNS IP</PARAM>
public static void GetIP( string nicName, out string [] ipAdresses, 
  out string [] subnets, out string [] gateways, out string [] dnses )
{
  ipAdresses = null;
  subnets = null;
  gateways = null;
  dnses = null;

  ManagementClass mc = new ManagementClass(
    "Win32_NetworkAdapterConfiguration");
  ManagementObjectCollection moc = mc.GetInstances();

  foreach(ManagementObject mo in moc)
  {
    // Make sure this is a IP enabled device. 
    // Not something like memory card or VM Ware
    if( mo["ipEnabled"] as bool )
    {
      if( mo["Caption"].Equals( nicName ) )
      {
        ipAdresses = (string[]) mo["IPAddress"];
        subnets = (string[]) mo["IPSubnet"];
        gateways = (string[]) mo["DefaultIPGateway"];
        dnses = (string[]) mo["DNSServerSearchOrder"];

        break;
      }
    }
  }
}

“Win32_NetworkAdapterConfiguration” gives you the collection of network adapters installed. Be careful, all the entries in this list may not be your LAN card.

Similarly you can set Network configuration just by a couple of lines.

/// <summary>
/// Set IP for the specified network card name
/// </summary>
/// <PARAM name="nicName">Caption of the network card</PARAM>
/// <PARAM name="IpAddresses">Comma delimited string 
///           containing one or more IP</PARAM>
/// <PARAM name="SubnetMask">Subnet mask</PARAM>
/// <PARAM name="Gateway">Gateway IP</PARAM>
/// <PARAM name="DnsSearchOrder">Comma delimited DNS IP</PARAM>
public static void SetIP( string nicName, string IpAddresses, 
  string SubnetMask, string Gateway, string DnsSearchOrder)
{
  ManagementClass mc = new ManagementClass(
    "Win32_NetworkAdapterConfiguration");
  ManagementObjectCollection moc = mc.GetInstances();

  foreach(ManagementObject mo in moc)
  {
    // Make sure this is a IP enabled device. 
    // Not something like memory card or VM Ware
    if( mo["IPEnabled"] as bool )
    {
      if( mo["Caption"].Equals( nicName ) )
      {

        ManagementBaseObject newIP = 
          mo.GetMethodParameters( "EnableStatic" );
        ManagementBaseObject newGate = 
          mo.GetMethodParameters( "SetGateways" );
        ManagementBaseObject newDNS = 
          mo.GetMethodParameters( "SetDNSServerSearchOrder" );
            
        newGate[ "DefaultIPGateway" ] = new string[] { Gateway };
        newGate[ "GatewayCostMetric" ] = new int[] { 1 };

        newIP[ "IPAddress" ] = IpAddresses.Split( ',' );
        newIP[ "SubnetMask" ] = new string[] { SubnetMask };

        newDNS[ "DNSServerSearchOrder" ] = DnsSearchOrder.Split(',');

        ManagementBaseObject setIP = mo.InvokeMethod( 
          "EnableStatic", newIP, null);
        ManagementBaseObject setGateways = mo.InvokeMethod( 
          "SetGateways", newGate, null);
        ManagementBaseObject setDNS = mo.InvokeMethod( 
          "SetDNSServerSearchOrder", newDNS, null);

        break;
      }
    }
  }
}

Internet Explorer Proxy

Changing Internet Explorer Proxy setting is a tricky job. There are 3 registry keys that you need to handle:

CURRENT_USER\ Software\Microsoft\Windows\CurrentVersion\Internet Settings

  • ProxyServer – string – Name of proxy server
  • ProxyEnable – integer – 1 for enabled, 0 for disabled
  • ProxyOverride – string – a list of hosts that you need to directly access without proxy

XML Serialization

XML Serialization makes it very easy to persist object graph in human readable form. For example, this is the XML that the program generates:

<?xml version="1.0"?>
<ConfigWrapper xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Profiles>
    <anyType xsi:type="Profile">
      <Name>Home</Name>
      <NICProfiles>
        <anyType xsi:type="NICProfile">
          <Name>[00000001] Intel(R) PRO/100 
             VE Network Connection</Name>
          <IP>192.168.2.43</IP>
          <Subnet>255.255.255.0</Subnet>
          <Gateway>192.168.2.1</Gateway>
          <DNS>202.141.190.2,202.141.190.3</DNS>
        </anyType>
      </NICProfiles>
      <IEProfile>
        <UseProxy>true</UseProxy>
        <ProxyName>192.168.2.1:3128</ProxyName>
        <BypassLocal>true</BypassLocal>
        <BypassAddresses />
      </IEProfile>
    </anyType>

It makes it very easy to modify the file manually. You can save an entire object graph just by writing 3 lines of code:

// Use XML Serializer to serialize the content of the specified array list
XmlSerializer serializer = new XmlSerializer( typeof( ConfigWrapper ) );
// open the profile file
StreamWriter writer = new StreamWriter( PROFILE_FILE_NAME, false );        
// Serialize the array list to the file
serializer.Serialize( writer.BaseStream, wrapper );

History

  • Ver 1.0 - Store multiple profiles, multiple NIC setting, IE Proxy
  • (Planning) Ver 2.0 - Execute batch file before and after profile setting

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Omar Al Zabir
Architect BT, UK (ex British Telecom)
United Kingdom United Kingdom
Member

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralVery nice!memberquicoli1 Jul '09 - 1:48 
GeneralRe: Very nice!mvpOmar Al Zabir1 Jul '09 - 6:03 
GeneralThanks!memberlegolasgreenleaf3 Apr '09 - 1:51 
GeneralWell Buillt UtilitymemberKannan.P12 Jan '09 - 23:37 
Hats off to Omar.
This tool work well even without single change.
Thanks Omar.
 
kannabiran

GeneralSuggested update - Profile file locationmemberTimothyP14 Oct '08 - 20:42 
GeneralSwitchNetConfig a super prog - THANKSmemberpisoft22 May '08 - 10:56 
GeneralAmazingmemberJonathan C Dickinson13 May '08 - 20:36 
GeneralI guess you have still have lot more things to share..memberjavedahassan6 Feb '08 - 9:05 
GeneralVista BusinessmemberEdcel Kahayon23 Jan '08 - 21:36 
GeneralRe: Vista BusinessmemberNordin Rahman4 Mar '08 - 22:42 
GeneralHello!memberadri68ro12 Dec '07 - 18:32 
GeneralRe: Hello!memberGeorge Thackray8 Oct '09 - 6:38 
QuestionNOT WORKING WITH VISTAmemberoussamaghanem21 Oct '07 - 21:29 
AnswerRe: NOT WORKING WITH VISTAmemberTimothyP14 Oct '08 - 20:38 
AnswerRe: NOT WORKING WITH VISTAmemberOmar Al Zabir14 Oct '08 - 20:59 
Generalimplementationmembereabidi775 Sep '07 - 11:06 
GeneralRe: implementationmemberOmar Al Zabir5 Sep '07 - 16:40 
GeneralHelpfulmembererwin satrya20 Aug '07 - 3:38 
QuestionDHCP IP/Static DNSmemberDavid Dreggors5 Feb '07 - 16:30 
GeneralProblem with multiple IP addressesmemberp0rkskratchin25 Jan '07 - 22:59 
AnswerRe: Problem with multiple IP addressesmemberChris Tynes6 Feb '07 - 19:56 
GeneralLittle suggestmemberThomas.Mueller66 Sep '06 - 6:32 
GeneralConvert this to VB.NETmembermrodriguezc1 Jun '06 - 8:00 
GeneralApplication Errormemberroundi21 May '06 - 1:34 
GeneralWonderfulmembertuca.ssa13 Mar '06 - 1:07 
GeneralSetIP only works for Gatewaymembermystique200028 Sep '05 - 6:36 
GeneralAlternative network setting causes problemmemberFrank Esser24 Aug '05 - 23:50 
GeneralVB 6 VersionmemberJeiel Borner22 Aug '05 - 8:31 
QuestionCould u post a vc6 demo?memberTcpip200521 Aug '05 - 22:45 
AnswerRe: Could u post a vc6 demo?memberTcpip200521 Aug '05 - 22:49 
GeneralgreatmemberthomasFo17 Aug '05 - 23:39 
Questiondoes this assume all networks have the same workgroup or domain?memberdatamodel10 Aug '05 - 19:10 
GeneralDisable network adapterssussAnonymous24 Jun '05 - 10:56 
GeneralXML questionsmemberTom Wright18 May '05 - 6:43 
GeneralRe: XML questionsmemberOmar Al Zabir18 May '05 - 21:38 
GeneralRe: XML questionsmemberTom Wright19 May '05 - 11:56 
GeneralRe: XML questionsmemberTom Wright26 May '05 - 12:10 
Generalempty gatewaymembersuorttex5 May '05 - 21:04 
QuestionOption to switch WorkGroup?sussAnonymous26 Jan '05 - 4:00 
GeneralRequires .NET. Too bad.membersssnc7 Dec '04 - 21:26 
GeneralRe: Requires .NET. Too bad.memberAlexander Youmashev28 Jul '05 - 21:48 
GeneralGreat softmemberavellano27 Oct '04 - 9:28 
GeneralRe: Great softmemberTadejMali25 Jan '05 - 21:07 
Generalsmall wish list IImemberdkarys2 Sep '04 - 4:21 
GeneralRe: small wish list IImemberOmar Al Zabir2 Sep '04 - 6:46 
Generalsmall wishlist :-)memberFatDeather26 Aug '04 - 22:43 
GeneralRe: small wishlist :-)memberkirzorin26 Mar '06 - 10:16 
GeneralRe: small wishlist :-)memberTeerachaiJ6 Feb '11 - 19:45 
GeneralSwitching NIC settings auto/auto 100/fullsussJim_Posted19 Aug '04 - 8:23 
GeneralSwitching from static IP to DHCP errormemberhlane20007 Jul '04 - 17:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 7 May 2004
Article Copyright 2004 by Omar Al Zabir
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid