gpt4 book ai didi

c# - arp -a 和路由打印

转载 作者:可可西里 更新时间:2023-11-01 10:09:07 61 4
gpt4 key购买 nike

我需要编写一个程序来显示这些信息:

  • 网络统计
  • 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/

61 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com