본문 바로가기

개발/mfc

[mfc] ARP(Address Resolution 주소 확인 Protocol ) 보기

반응형

Address Resolution Protocol

OSI 7 Layer에서 Layer 3에 위치한 프로토콜이며, MAC 주소 IP 주소를 서로 연결하는 용도로 사용한다.

 

자세한것은 

-- https://namu.wiki/w/ARP

또는

https://ko.wikipedia.org/wiki/%EC%A3%BC%EC%86%8C_%EA%B2%B0%EC%A0%95_%ED%94%84%EB%A1%9C%ED%86%A0%EC%BD%9C

 

뭐 어째든 요점은 MAC 주소 를 IP 주소로 서로 연결 하는 거다.

Win 11 CMD 창에서도 "arp -a" 하면 나온다.

 

관련 소스는

https://seolis.tistory.com/entry/Arp-Table-Edit-ADD-Modify-Remove-CC

를 참조 하고

 

다음에서 가져 온거다.

http://www.codeproject.com/KB/IP/ARPTables.aspx

 

Edit (Add/Remove/Modify) ARP Tables

A tool to display and modify IP-to-Physical address translation tables used by the Address Resolution Protocol (ARP).

www.codeproject.com

 

 

VS 2010 에서 컴파일 한 소스 첨부 한다.

ARPTable_Static.zip
2.10MB

 

 

반응형