本篇內(nèi)容介紹了“Linux系統(tǒng)下怎么綁定IP地址和MAC地址”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
本篇內(nèi)容介紹了“Linux系統(tǒng)下怎么綁定IP地址和MAC地址”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
一、約定
1、網(wǎng)關(guān)上已經(jīng)對(duì)下面所帶的機(jī)器作了綁定。網(wǎng)關(guān)IP:192.168.1.1 MAC:00:02:B3:38:08:62
網(wǎng)站的建設(shè)成都創(chuàng)新互聯(lián)專注網(wǎng)站定制,經(jīng)驗(yàn)豐富,不做模板,主營(yíng)網(wǎng)站定制開(kāi)發(fā).小程序定制開(kāi)發(fā),H5頁(yè)面制作!給你煥然一新的設(shè)計(jì)體驗(yàn)!已為成都效果圖設(shè)計(jì)等企業(yè)提供專業(yè)服務(wù)。
2、要進(jìn)行綁定的Linux主機(jī)IP:192.168.1.2 MAC:00:04:61:9A:8D:B2
二、綁定步驟
1、先使用arp和arp -a查看一下當(dāng)前ARP緩存列表
[root@ftpsvr ~]# arp
Address HWtype HWaddress Flags Mask Iface
192.168.1.234 ether 00:04:61:AE:11:2B C eth0
192.168.1.145 ether 00:13:20:E9:11:04 C eth0
192.168.1.1 ether 00:02:B3:38:08:62 C eth0說(shuō)明:
Address:主機(jī)的IP地址
Hwtype:主機(jī)的硬件類型
Hwaddress:主機(jī)的硬件地址
Flags Mask:記錄標(biāo)志,“C“表示arp高速緩存中的條目,“M“表示靜態(tài)的arp條目。[root@ftpsvr ~]# arp -a
? (192.168.1.234) at 00:04:61:AE:11:2B [ether] on eth0
? (192.168.1.1) at 00:16:76:22:23:86 [ether] on eth02、新建一個(gè)靜態(tài)的mac--〉ip對(duì)應(yīng)表文件:ip-mac,將要綁定的IP和MAC地下寫入此文件,格式為 ip mac。
[root@ftpsvr ~]# echo ’192.168.1.1 00:02:B3:38:08:62 ’ 〉 /etc/ip-mac
[root@ftpsvr ~]# more /etc/ip-mac
192.168.1.1 00:02:B3:38:08:623、設(shè)置開(kāi)機(jī)自動(dòng)綁定
[root@ftpsvr ~]# echo ’arp -f /etc/ip-mac ’ 〉〉 /etc/rc.d/rc.local4、手動(dòng)執(zhí)行一下綁定
[root@ftpsvr ~]# arp -f /etc/ip-mac5、確認(rèn)綁定是否成功
[root@ftpsvr ~]# arp
Address HWtype HWaddress Flags Mask Iface
192.168.0.205 ether 00:02:B3:A7:85:48 C eth0
192.168.1.234 ether 00:04:61:AE:11:2B C eth0
192.168.1.1 ether 00:02:B3:38:08:62 CM eth0[root@ftpsvr ~]# arp -a
? (192.168.0.205) at 00:02:B3:A7:85:48 [ether] on eth0
? (192.168.1.234) at 00:04:61:AE:11:2B [ether] on eth0
? (192.168.1.1) at 00:02:B3:38:08:62 [ether] PERM on eth0從綁定前后的ARP緩存列表中,可以看到網(wǎng)關(guān)(192.168.1.1)的記錄標(biāo)志已經(jīng)改變,說(shuō)明綁定成功。
三、添加信任的Windows主機(jī)(192.168.1.10)
1、Linux主機(jī)(192.168.1.2)上操作
[root@ftpsvr ~]# echo ’192.168.1.10 00:04:61:AE:09:14’ 〉〉 /etc/ip-mac[root@ftpsvr ~]# arp -f /etc/ip-mac2、Windows主機(jī)(192.168.1.10)上操作
1)清除ARP緩存
C:\Documents and Settings\Administrator〉arp -d2)綁定Linux主機(jī)的IP和MAC地址
C:\Documents and Settings\Administrator〉arp -s 192.168.1.2 00-04-61-9A-8D-B2你可以將上面2個(gè)步驟寫在一個(gè)BAT(批處理)文件中,這樣做的好處是,今后如果要增加其它機(jī)器的綁定,只需維護(hù)這個(gè)文件就可以了。例:
@echo off
arp -d
arp -s 192.168.1.2 00-04-61-9A-8D-B2
exit 注意:Linux和Widows上的MAC地址格式不同。Linux表示為:AA:AA:AA:AA:AA:AA,Windows表示為:AA-AA-AA-AA-AA-AA。