c# - arp -a 和路由打印

标签 c# windows networking network-programming

我需要编写一个显示此信息的程序:

  • 网络统计
  • TCP/UDP 连接
  • 有关 IP 的信息 ipconfig/all
  • arp-a
  • 路线打印

我已经拥有其中的大部分,但我对 route printarp -a 有问题。我不想使用 Process.Start() 执行此命令,因为它看起来不太壮观:

Process p = new Process ();

p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = "route";
p.StartInfo.Arguments = "PRINT";
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.StandardOutputEncoding = Encoding.Default;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.Start();
TextBox1.Text = p.StandardOutput.ReadToEnd();

我想使用 foreach 循环将数据获取到 ListView 或 DataGrid 列中。有人能帮助我吗?如何将此数据放入每一列:目的地、网络掩码、网关、接口(interface)、指标和永久路由?就 ARP 而言, 物理地址的互联网地址类型?

最佳答案

非常感谢您。我已经与 WMI CODER CREATOR 一起编写了以下代码,并指导了 IPv4routetable:

private void button1_Click(object sender, EventArgs e)
{
    try
    {
        ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\CIMV2", "SELECT * FROM Win32_IP4RouteTable");
        ListViewItem buf;

        foreach (ManagementObject queryObj in searcher.Get())
        {
            string destination = queryObj["Destination"].ToString();
            string mask = queryObj["Mask"].ToString();
            string metric = queryObj["Metric1"].ToString();
            string interfaceIndex = queryObj["InterfaceIndex"].ToString();
            string nexthop = queryObj["NextHop"].ToString();
            string protocol = queryObj["Protocol"].ToString();
            string type = queryObj["Type"].ToString();
            string status;
            if (queryObj["Status"] != null)
            {
                status = queryObj["Status"].ToString();
            }
            else
            {
                status = string.Empty;
            }


            buf = new ListViewItem(new string[] { destination, mask, metric, interfaceIndex, nexthop, protocol, status, type });
            list_route.Items.Add(buf);

        }
    }
    catch (ManagementException ex)
    {
        MessageBox.Show("An error occurred while querying for WMI data: " + ex.Message);
    }
}

只是不知道在哪个类我找到关于arp-a的资料,在google上找不到。如果有人知道他正在寻求答案。如果有人有其他有用的帮助,例如 WMI Coder Creator,我们将不胜感激。

我找到了一些信息。关于 GetIpNetTable 但我无法在 GUI 应用程序中使用此函数,将结果传递给 ListView 。 :(

using System;
using System.Runtime.InteropServices;
using System.ComponentModel;
using System.Net;

namespace GetIpNetTable
{
    class Program
    {
        // The max number of physical addresses.
        const int MAXLEN_PHYSADDR = 8;

        // Define the MIB_IPNETROW structure.
        [StructLayout(LayoutKind.Sequential)]
        struct MIB_IPNETROW
        {
            [MarshalAs(UnmanagedType.U4)]
            public int dwIndex;
            [MarshalAs(UnmanagedType.U4)]
            public int dwPhysAddrLen;
            [MarshalAs(UnmanagedType.U1)]
            public byte mac0;
            [MarshalAs(UnmanagedType.U1)]
            public byte mac1;
            [MarshalAs(UnmanagedType.U1)]
            public byte mac2;
            [MarshalAs(UnmanagedType.U1)]
            public byte mac3;
            [MarshalAs(UnmanagedType.U1)]
            public byte mac4;
            [MarshalAs(UnmanagedType.U1)]
            public byte mac5;
            [MarshalAs(UnmanagedType.U1)]
            public byte mac6;
            [MarshalAs(UnmanagedType.U1)]
            public byte mac7;
            [MarshalAs(UnmanagedType.U4)]
            public int dwAddr;
            [MarshalAs(UnmanagedType.U4)]
            public int dwType;
        }

        // Declare the GetIpNetTable function.
        [DllImport("Iphlpapi.dll")]
        [Return: MarshalAs(UnmanagedType.U4)]
        static extern int GetIpNetTable(
           IntPtr pIpNetTable,
           [MarshalAs (UnmanagedType.U4)]
             pdwSize ref int,
           bool border);

        // The Insufficient buffer error.
        const int ERROR_INSUFFICIENT_BUFFER = 122;

        static void Main(string[] args)
        {
            // The number of bytes needed.
            bytesNeeded int = 0;

            // The result from the API call.
            int result = GetIpNetTable(IntPtr.Zero, ref bytesNeeded, false);

            // Call the function, expecting an Insufficient buffer.
            if (result! = ERROR_INSUFFICIENT_BUFFER)
            {
                // Throw an exception.
                throw new Win32Exception(result);
            }

            // Allocate the memory, do it in a try / finally block, to ensure code
            // That it is released.
            IntPtr buffer = IntPtr.Zero;

            // Try / finally.
            try
            {
                // Allocate the memory.
                buffer = Marshal.AllocCoTaskMem(bytesNeeded);

                // Make the call again.If it did not Succeed, then
                // Raise an error.
                result = GetIpNetTable(buffer, ref bytesNeeded, false);

                // If the result is not 0(no error), then throw an exception.
                if (result! = 0)
                {
                   // Throw an exception.
                   throw new Win32Exception(result);
                }

                // Now we have the buffer, the have to marshal it. We can read
                // The first 4 bytes to get the length of the buffer.
                int entries = Marshal.ReadInt32(buffer);

                // Increment the memory pointer by the size of the int.
                IntPtr = new IntPtr currentBuffer(buffer.ToInt64() +
                   Marshal.SizeOf(typeof(int)));

                // Allocate an array of entries.
                MIB_IPNETROW[] table = new MIB_IPNETROW[entries];

                // Cycle through the entries.
                for (int index = 0; index < entries; index ++)
                {
                    // Call PtrToStructure, getting the information structure.
                    table[index] = (MIB_IPNETROW)Marshal.PtrToStructure(new
                       IntPtr(currentBuffer.ToInt64() + (index *
                       Marshal.SizeOf(typeof(MIB_IPNETROW)))), typeof(MIB_IPNETROW));
                }

                for (int index = 0; index < entries; index + +)
                {
                    IPAddress ip = new IPAddress(table[index].DwAddr);
                    Console.Write("IP:" + ip.ToString() + "\ t \ TMAC");
                    byte b;

                    b = table[index].mac0;
                    if (b < 0x10)
                    {
                        Console.Write("0");
                    }
                    else
                    {
                        Console.Write("");
                    }
                    Console.Write(b.ToString("X"));

                    b = table[index].mac1;
                    if (b < 0x10)
                    {
                        Console.Write("-0");
                    }
                    else
                    {
                        Console.Write("-");
                    }
                    Console.Write(b.ToString("X"));

                    b = table[index].mac2;
                    if (b < 0x10)
                    {
                        Console.Write("-0");
                    }
                    else
                    {
                        Console.Write("-");
                    }
                    Console.Write(b.ToString("X"));

                    b = table[index].mac3;
                    if (b < 0x10)
                    {
                        Console.Write("-0");
                    }
                    else
                    {
                        Console.Write("-");
                    }
                    Console.Write(b.ToString("X"));

                    b = table[index].mac4;
                    if (b < 0x10)
                    {
                        Console.Write("-0");
                    }
                    else
                    {
                        Console.Write("-");
                    }
                    Console.Write(b.ToString("X"));

                    b = table[index].mac5;
                    if (b < 0x10)
                    {
                        Console.Write("-0");
                    }
                    else
                    {
                        Console.Write("-");
                    }
                    Console.Write(b.ToString("X"));
                    Console.WriteLine();
                }
            }
            finally
            {
                // Release the elephant.
                Marshal.FreeCoTaskMem(buffer);
            }
        }
    }
}

关于c# - arp -a 和路由打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4946505/

相关文章:

c# - 如何获取当前/默认数据库(MongoDB、官方 C# 驱动程序)?

C++ 模板化 ofstream 字符以十进制打印

c# - WebView ContentChanged 事件

C - 如何同时使用 aio_read() 和 aio_write()

iphone - 如何从 iPhone 测试用户网络速度?

android - 蜂窝网络中的 RLC 协议(protocol)。有没有办法控制应用程序内使用的模式?

c# - 如何使用 dotnet-cli 将新的 c# 文件添加到项目中

c# - 在工厂内运行时使用 Ioc 容器来确定类初始化

ruby-on-rails - 在 Windows 上使用 sqlite3-ruby 进行未初始化的常量编码

c# - 无法进入返回 IEnumerable<T> 的方法?