Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. IP Addresses List

IP Addresses List

Scheduled Pinned Locked Moved ASP.NET
sysadminhelp
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    specialdreamsin
    wrote on last edited by
    #1

    Hi, We have an application which is almost to work with network IP addresses. A Webpage is need to build which retrieve all the Local Area Network IP addresses of the current domain. Please help me out from this. Ramesh Sambari

    R 1 Reply Last reply
    0
    • S specialdreamsin

      Hi, We have an application which is almost to work with network IP addresses. A Webpage is need to build which retrieve all the Local Area Network IP addresses of the current domain. Please help me out from this. Ramesh Sambari

      R Offline
      R Offline
      Rolando CC
      wrote on last edited by
      #2

      Easy!

      using System;
      using System.Collections.Generic;
      using System.Text;
      using System.DirectoryServices.ActiveDirectory;

      namespace ConsoleApplication1
      {
      class Program
      {
      static void Main(string[] args)
      {
      System.DirectoryServices.DirectoryEntry entry = new System.DirectoryServices.DirectoryEntry("LDAP://yourdomain");
      System.DirectoryServices.DirectorySearcher search = new System.DirectoryServices.DirectorySearcher(entry);
      search.Filter = "(objectClass=computer)";

              foreach (System.DirectoryServices.SearchResult resEntAs in search.FindAll())
              {
                  Console.WriteLine(resEntAs.GetDirectoryEntry().Name.ToString());
              }
              Console.ReadLine();
          }       
      }
      

      }

      Now just request for the IP using System.Net.Dns.GetHostByName() :^)

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups