How do I modify the MAC address of the NIC \ set IP and MAC binding on the Linux route?

Source: Internet
Author: User
Article Title: how to modify the MAC address of the NIC \ set IP and MAC binding on the Linux route ?. Linux is a technology channel of the IT lab in China. Includes basic categories such as desktop applications, Linux system management, kernel research, embedded systems, and open source.
Author: mynix
  
Tips: how to modify the MAC address of a Nic
  
Tip topic root directory-=> System Management-=> Hardware Management
Root Directory-=> installation configuration-=> hardware settings
  
Skillful author
Posting time 23:28:40
--------------------------------------------------------------------------------
  
  
You must first disable the Nic device. Otherwise, the system is reported to be busy and cannot be changed.
Command:
/Sbin/ifconfig eth0 down
  
Modify the MAC address. This step is simpler than that in Windows.
Command:
/Sbin/ifconfig eth0 hw ether 00: AA: BB: CC: DD: EE
  
Enable Nic again
/Sbin/ifconfig eht0 up
The MAC address of the NIC is changed.
  
  
Tip: How do I set IP and MAC binding on a Linux route?
  
Tip topic root directory-=> security-related-=> firewall
  
Skillful author
Posting time 17:00:46
  
--------------------------------------------------------------------------------
  
?? In some systems, we want several IP addresses in the intranet to connect to the Internet, and these IP addresses are not stolen by illegal users. You can achieve this through the following solutions:
First, use ipchains or iptables to set that only valid IP addresses can be connected.
Create an IP/Mac binding for a valid IP address. To discuss this problem, we need to first understand the working principle of the ARP Protocol, which is short for the Address Resolution Protocol. its functions and working principles are as follows:
In the underlying network communication, to communicate with each other, you must first know the source and target MAC addresses. To allow the system to quickly find the MAC address of a remote node, each local kernel stores an instant query table (called ARP cache ). ARP contains a list of IP addresses of remote hosts to their corresponding MAC addresses. The Address Resolution Protocol (ARP) cache is a data structure in the resident memory. the content is managed and maintained by the kernel of the local system. By default, the ARP cache retains the IP address (and MAC address) of the node to which the local system communicates in the last 10 minutes ).
If the MAC address of a remote host is stored in the ARP cache of the local host, converting the IP address of the remote node to the MAC address will not cause any problems. However, in many cases, the MAC address of the remote host does not exist in the local ARP Cache. how can this problem be solved? When you know the IP address of a remote host but the MAC address is not in the local ARP cache, use the following procedure to obtain the MAC address of the remote node: the local host sends a broadcast packet to all nodes in the network and asks if there is a corresponding IP address. One node (only one node) will answer this ARP broadcast information. The response contains the MAC address of the remote host. After receiving the returned packet, the local node records the MAC address of the remote node in the local ARP cache.
If we set the IP/MAC ing to a fixed one, that is, to establish a static MAC ING for those valid IP addresses, even if an illegal user steals an IP address, the linux router will not use the arp protocol to ask for the mac address when responding to the connection requests sent by these IP addresses, but use the static MAC address established by Linux to send response data. if the IP address is stolen, the attacker will not obtain the response data and thus cannot use the network service.
A static IP/MAC binding method is to create a/etc/ethers file, which contains the correct IP/MAC Ing. the format is as follows:
192.168.2.32 08: 00: 4E: B0: 24: 47
Then add/etc/rc. d/rc. local:
Arp-f
You can.
  
2.4 kernel iptables can be used to restrict IP addresses and Mac addresses at the same time. you can use this function to limit IP addresses and Mac addresses at the same time for the rules of valid IP addresses.
  
  
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.