Binden Sie IP und Mac unter Linux
1. Ernennen
(1). Das Gateway wurde an die unten stehende Maschine gebunden
Gateway-IP:192.168.1.1 Mac:00:02:B3:38:08:62
(2). Linux-IP:192.168.1.2MAC:00:04:61:9EIN:8D.:B2
2. Bindungssätze
Ausführen “arp” oder “arp -a” um die Arp-Cache-Tabelle zu überprüfen
[root@ftpsvr ~]# arp
Adresse HW-Typ HW-Adresse Flags Maske Iface
192.168.6.234 Äther 00:04:61:AE:11:2B C eth0
192.168.4.145 Äther 00:13:20:E9:11:04 C eth0
192.168.1.1 Äther 00:02:B3:38:08:62 C eth0
Einführung:
Adresse:Host-IP-Adresse
Hwtyp:Hardwaretyp des Hosts
Hwadress:MAC-Adresse
[root@ftpsvr ~]# arp -a
(192.168.1.234) beim 00:04:61:AE:11:2B [Äther] ist eth0
(192.168.1.1) beim 00:16:76:22:23:86 [Äther] ist eth0
3. Erstellen Sie eine Datei und geben Sie Bindungsinformationen ein
[root@ftpsvr ~]# Echo '192.168.1.1 00:02:B3:38:08:62 ‘ > /etc/ip-mac-binding
[root@ftpsvr ~]# mehr /etc/ip-mac
192.168.1.1 00:02:B3:38:08:62
4. Automatische Bindung beim Start einstellen
[root@ftpsvr ~]# echo 'arp -f /etc/ip-mac-binding ‘ >> /etc/rc.d/rc.local
5. Bindung manuell ausführen
[root@ftpsvr ~]# arp -f /etc/ip-mac-binding
6. Bestätigen Sie, ob die Bindung erfolgreich war oder nicht
[root@ftpsvr ~]# arp
Adresse HW-Typ HW-Adresse Flags Maske Iface
192.168.2.205 Äther 00:02:B3:A7:85:48 C eth0
192.168.6.234 Äther 00:04:61:AE:11:2B C eth0
192.168.1.1 Äther 00:02:B3:38:08:62 CM eth0
[root@ftpsvr ~]# arp -a
(192.168.2.205) beim 00:02:B3:A7:85:48 [Äther] ist eth0
(192.168.6.234) beim 00:04:61:AE:11:2B [Äther] ist eth0
(192.168.1.1) beim 00:02:B3:38:08:62 [Äther] PERM auf eth0