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

Setting DNS using iphelp and register, DhcpNotifyConfigChange and DnsFlushResolverCache

By , 8 Oct 2007
 

Introduction

This is one way of changing DNS in C++ using Iphlpapi.h, register, and two undocumented Windows APIs. It's a simple program, no UI for you, sorry...

  1. Use GetAdaptersInfo to get adapters information.
  2. Then use GetPerAdapterInfo to get information for every ethernet network card. The information contains DNS list.
  3. Use register to set the DNS by open HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\
    Interfaces\\lpszAdapterName
    , the name is got from GetAdaptersInfo.
  4. Use DhcpNotifyConfigChange to notify the IP change.
  5. Use DnsFlushResolverCache to flush the DNS.

Using the Code

  1. Use GetAdaptersInfo:
    if( GetAdaptersInfo(pAdapterInfo, &ulAdapterInfoSize) == 
    			ERROR_BUFFER_OVERFLOW ) // out of buff
     {
      delete pAdapterInfo;
      pAdapterInfo = (IP_ADAPTER_INFO*)new char[ulAdapterInfoSize];
      pAdapterInfoBkp = pAdapterInfo;
     }
    
    if( GetAdaptersInfo(pAdapterInfo, &ulAdapterInfoSize) == ERROR_SUCCESS )
    {
       do{
        if(pAdapterInfo->Type == MIB_IF_TYPE_ETHERNET) // If type is etherent
           {
            //Here to use GetPerAdapterInfo 
        }
        pAdapterInfo = pAdapterInfo->Next;
          }while(pAdapterInfo);
        FlushDNS(); 
    }
  2. Use GetPerAdapterInfo:
    if( GetPerAdapterInfo(
        pAdapterInfo->Index,
        pPerAdapterInfo,
        &ulPerAdapterInfoSize) == ERROR_BUFFER_OVERFLOW ) // out of buff
    {
        delete pPerAdapterInfo;
        pPerAdapterInfo = (IP_PER_ADAPTER_INFO*)new char[ulPerAdapterInfoSize];
        pPerAdapterInfoBkp = pPerAdapterInfo;
    }
    
    DWORD dwRet;
    if((dwRet = GetPerAdapterInfo(
        pAdapterInfo->Index,
        pPerAdapterInfo,
        &ulPerAdapterInfoSize)) == ERROR_SUCCESS)
    {
        AdaptInfo tmpadpif;
        pAddrStr = pPerAdapterInfo->DnsServerList.Next;
        strncpy(tmpadpif.AdapterName, pAdapterInfo->AdapterName, 
    				sizeof(pAdapterInfo->AdapterName));
        tmpadpif.NameSever = pPerAdapterInfo->DnsServerList.IpAddress.String;
        cout<<pPerAdapterInfo->DnsServerList.IpAddress.String<<endl;
        char tmp[16];
        strcpy( tmp, "172.16.227.4");
        if ( strcmp(pPerAdapterInfo->DnsServerList.IpAddress.String, tmp) == 0 )
        { 
            return 0;
        }
        while(pAddrStr) 
        { 
            tmpadpif.NameSever += ",";
            tmpadpif.NameSever += pAddrStr->IpAddress.String;
            cout<<pAddrStr->IpAddress.String<<endl;
            pAddrStr = pAddrStr->Next; 
        }
        vecAdpif.push_back( tmpadpif );
        RegSetDNS( tmpadpif.AdapterName, tmp);
        NotifyIPChange(pAdapterInfo->AdapterName);
    }
  3. Open registry to set DNS or IP addr. For this part, please refer to the download code.
  4. We have something fresh here:
    typedef int (CALLBACK* DNSFLUSHPROC)();
    typedef int (CALLBACK* DHCPNOTIFYPROC)
    	(LPWSTR, LPWSTR, BOOL, DWORD, DWORD, DWORD, int);
  5. After setting DNS in registy, we need to inform the system about the change. Now we use Windows undocumented API: DhcpNotifyConfigChange. It is located in dhcpcsvc.dll.
    BOOL DhcpNotifyConfigChange(
    LPWSTR lpwszServerName, 	// local machine should be NULL
    LPWSTR lpwszAdapterName, 	// Adapt name
    BOOL bNewIpAddress, 	// TRUE indicates changing ip
    DWORD dwIpIndex, 		// which IP addr, if only 1, it's 0
    DWORD dwIpAddress, 	// IP addr
    DWORD dwSubNetMask, 	// mask
    int nDhcpAction ); // DHCP, 0 for not change, 1 for enable, 2 for disable DHCP

    Please refer to the code.

  6. Flush DNS, use another Windows undocumented API: DnsFlushResolverCache, located in dnsapi.dll.
    DnsFlushResolverCache();
  7. It's ok now.

Points of Interest

I have not learned how to use WMI in VC++. Sigh, it's not a good way to change Ipaddr and DNS in registy. netsh is not good too. If anyone has a better idea, please share with us.

License

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

About the Author

Nescot

China China
No Biography provided

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   
GeneralMy vote of 5memberHarly24-Sep-11 2:19 
QuestionVisual C++ 2010 ExpressmemberMember 215751130-Jul-10 11:55 
AnswerRe: Visual C++ 2010 Expressmemberarabcoder28-Jan-11 8:05 
QuestionHi all.. does the "DhcpNotifyConfigChange" function work for ipv6 also?memberG Haranadh27-Jul-10 3:08 
GeneralUm...memberSnuff Daddy6-Oct-07 21:07 
GeneralRe: Um...memberNescot8-Oct-07 15:54 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130619.1 | Last Updated 8 Oct 2007
Article Copyright 2007 by Nescot
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid