반응형

* C# Network MacAddress 구하기 예제...

 

전체 소스 코드

Form1.cs

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

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

namespace CSharp_MacAddress
{
    public partial class Form1 : Form
    {
        [DllImport("iphlpapi.dll", ExactSpelling = true)]
        private static extern int SendARP(int destinationIPValue, int sourceIPValue, byte[] physicalAddressArray, ref uint physicalAddresArrayLength);

        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string strMacAddress = Get_MACAddress("192.168.0.6");

            MessageBox.Show(strMacAddress);

        }

        public string Get_MACAddress(string strIPAddress)
        {
            IPAddress ip = IPAddress.Parse(strIPAddress);
            
            byte[] btIPArray       = new byte[6];
            
            uint uiIP = (uint)btIPArray.Length;
            
            int iIPValue = BitConverter.ToInt32(ip.GetAddressBytes(), 0);
            
            int iReturnCode = SendARP(iIPValue, 0, btIPArray, ref uiIP);

            if (iReturnCode != 0)
            {
                return null;
            }

            string[] strIP = new string[(int)uiIP];

            for (int i = 0; i < uiIP; i++)
            {
                strIP[i] = btIPArray[i].ToString("X2");
            }
            string strMacAddress = string.Join(":", strIP);
            return strMacAddress;

        }

    }
}

*예제 결과 확인 

 

 

어댑터 설정 변경 - > 해당 어댑터 더블 클릭 - > 자세히 버튼을 클릭 하여 맥주소를 확인 

 

https://kdsoft-zeros.tistory.com/144

 

[VBNET] IP MacAddress (IP 맥 주소 구하기)

* VBNET API를 이용한 IP MacAddress (IP 맥 주소 구하기) 예제... 전체 소스 코드 Form1.vb Public Class Form1 Declare Function SendARP Lib "iphlpapi.dll" (ByVal DestIP As UInt32, ByVal SrcIP As UInt32,..

kdsoft-zeros.tistory.com

 

반응형

+ Recent posts