Advertisement
Fhernd

IpPrivada.cs

Mar 26th, 2016
5,008
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.89 KB | None | 0 0
  1. using System;
  2. using System.Net.NetworkInformation;
  3. using System.Net.Sockets;
  4.  
  5. namespace Articulo.Pregunta.P1320
  6. {
  7.     public class IpPrivada
  8.     {
  9.         public static void Main()
  10.         {
  11.             // Ciclo por todas las interfaces de red en este dispositivo:
  12.             foreach (var interfaces in NetworkInterface.GetAllNetworkInterfaces())
  13.             {
  14.                 // Direcciones de unicast asignadas a la interfaz de red actual:
  15.                 foreach (var direccion in interfaces.GetIPProperties().UnicastAddresses)
  16.                 {
  17.                     // Valida que se trate de una IPv4:
  18.                     if (direccion.Address.AddressFamily == AddressFamily.InterNetwork)
  19.                     {
  20.                         Console.WriteLine ("Dirección IP privada: {0}", direccion.Address.ToString());
  21.                     }
  22.                 }
  23.             }
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement