How to add static ARP entry in windows 2008 or Windows 7
netsh -c interface ipv4 add neighbors “Network Card Name” “IP Address” “MAC Address” store=persistent
For Example :-
Your Network Card Name is :- Local Area Connection
IP Address is :- 192.168.10.10
MAC Address is :- 00-1d-71-83-6c-00
netsh -c interface ipv4 add neighbors “Local Area Connection” “192.168.10.10” “00-1d-71-83-6c-00” store=persistent
It will make parmanent ARP entry.