Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C++

Setting DNS using iphelp and register, DhcpNotifyConfigChange and DnsFlushResolverCache

4.64/5 (4 votes)
8 Oct 2007CPOL 1   2.2K  
Setting DNS using iphelp and register, DhcpNotifyConfigChange and DnsFlushResolverCache

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:
    C++
    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:
    C++
    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:
    C++
    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.
    C++
    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.
    C++
    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)