■ SendARP API 함수를 사용해 MAC 주소를 구하는 방법을 보여준다. ▶ SendARP API 함수 : MAC 주소 구하기 예제 (C#)
|
using System; string macAddress = GetMACAddress("192.168.15.210"); Console.WriteLine(macAddress); |
▶
더 읽기
■ SendARP API 함수를 선언하는 방법을 보여준다. ▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
using System.Runtime.InteropServices; #region ARP 보내기 - SendARP(targetIP, sourceIP, macAddressByteArray, macAddressByteArrayLength) /// <summary> /// ARP 보내기 /// </summary> /// <param name="targetIP">타겟 IP</param> /// <param name="sourceIP">소스 IP</param> /// <param name="macAddressByteArray">MAC 주소 바이트 배열</param> /// <param name="macAddressByteArrayLength">MAC 주소 바이트 배열 길이</param> /// <returns>처리 결과</returns> [DllImport("iphlpapi", ExactSpelling = true)] private static extern int SendARP(int targetIP, int sourceIP, byte[] macAddressByteArray, ref uint macAddressByteArrayLength); #endregion |
■ GetNetworkParams API 함수를 선언하는 방법을 보여준다. ▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
using System; using System.Runtime.InteropServices; #region 네트워크 매개 변수 구하기 - GetNetworkParams(fixedInformationHandle, bufferLength) /// <summary> /// 네트워크 매개 변수 구하기 /// </summary> /// <param name="fixedInformationHandle">고정 정보 핸들</param> /// <param name="bufferLength">버퍼 길이</param> /// <returns>처리 결과</returns> [DllImport("iphlpapi", CharSet = CharSet.Ansi)] private static extern int GetNetworkParams(IntPtr fixedInformationHandle, ref uint bufferLength); #endregion |
■ SendARP API 함수를 사용해 MAC 주소를 구하는 방법을 보여준다. ▶ SendARP API 함수 : MAC 주소 구하기 예제 (C#)
|
string macAddress = GetMACAddress("192.168.29.196")); |
▶
더 읽기