Windows 8 manually binds ARP to prevent being attacked.

  
When it comes to ARP attacks, the author first came into contact with it after entering the university gate. At that time, due to the limited campus network resources of the school, the school allocated bandwidth according to the rooms in the dormitory area. The bandwidth of 512 is sometimes used by more than 10 people, and the speed of the network can be imagined. It is also because of this bandwidth that some students who are familiar with the computer use the "high-tech" means - send ARP broadcast attacks to seize the limited IP address to access the Internet. At the time, the author was once a victim. However, in the campus life that has long followed the ARP attack, it can be said that it is quite worthwhile.


What should I do if the Win8 network is attacked? Manually binding ARP skills In a blink of an eye, Windows 8 has officially come to people. Win8 is good, but in dealing with ARP network attacks, so far there is no ARP firewall software that is perfectly compatible with Win8. So here, the author recalls that in the past, in the university period, by binding the computer MAC address, the Mac address of the fixed system itself is consistent with the address assigned by the router to avoid possible ARP attacks. Let's share it with you.


Broadband network port reconnection In fact, in daily life, many netizens have reflected that some shared Internet access if the router does not allocate bandwidth, then people will make you crazy Especially in rented houses where people are sharing. When playing online games, the speed of the network is slow, and the network reflects that your game has already been soaked. Look at the old movie buffer, it’s boring! Some people can't help but use the P2P Terminator, limit other people's network speed, and break other people's network. This is unscientific and not kind. I don't recommend it to everyone here.


As mentioned earlier, the current ARP firewall that supports Win8 is not yet available. ** Digital and ** Butler's own ARP firewall does not support Win8 64-bit version, 32-bit is not clear, so You can only bind ARP manually.

■CMD manual setup tutorial


Command prompt (CMD) is "MS" under OS/2, Windows CE and Windows NT platform-based operating system -DOS mode". The main function of CMD is to help computer advanced users to use the command line operation to make advanced adjustments to the computer. The solution provided by CMD is very simple ("simple and rude").

First, run the command prompt (CMD) with administrator privileges.

Run CMD with administrator privileges


Second, run "netsh ii show in" at the command prompt to view the network card to be ARP-bound. Idx number.

Enter the specified code


3. Run "netsh -c "ii" add neighbors idx IP MAC" in the command prompt to perform ARP binding. Here idx is the idx number of the network card found in the previous step. IP and MAC are the IP address and Mac address you want to bind.

The red box is marked with the IP and Mac address that the user needs to fill in.


For example: netsh -c "ii" add neighbors 12 192.168. 1.1 D0-27-88-C9-7C-A4

Finally, at the command prompt, use the "arp -a" command to check whether the ARP entry you added is in the list and is static. It is.

The "arp -a" command is detected as static


Unbind: netsh -c "ii" delete neighbors IDX (IDX is changed to the corresponding number ) You can delete the Mac address binding and restart the system.

■ ".bat" file creation tutorial


The ".bat" format file is a batch, also known as a batch script. The second technique for manually binding ARP is to use a file in the ".bat" format. Compared to the first method, creating a file in batch format is a faster and more straightforward way. As the name implies, batch processing is the processing of an object in batches. The batch file has the extension bat. Currently more common batch processing consists of two categories: DOS batch and PS batch. The PS batch is based on the powerful photo editing software Photoshop, which is used to batch process images. The DOS batch is based on DOS commands and is used to automatically execute DOS commands in batches to implement specific operations.

Fill in the specified content in the notebook


Save the file as the arp binding file name in .bat format


1arp -a View Mac Address Table

arp -s Router Address Mac Address

For example: arp -s 192.168.1.1 D0-27-88-C9-7C- A4

2 Unbind: arp -d Router Address Mac Address

Contact arp Binding Notepad Edit Mode


:arp -d 192.168.1.1 D0-27-88-C9-7C-A4

Well-made arp binding and unbinding two quick-start files


Then create a new notepad, put the command inside, save it as bat format, arp binds .bat. When running, right-click to run as an administrator, or drop it into the boot project. As you know, the batch file in .bat format can be executed quickly after double-clicking, so we have two batch files that we have created, as shown in the above figure. After double-clicking, you can open it quickly and the program will execute in an instant. Arp binding and decommissioning functions. Very convenient and easy to use.

Copyright © Windows knowledge All Rights Reserved