Networking
如何忽略 dhcpd.conf 中的一組 Mac 地址?
dhcpd.conf 中是否可以忽略來自一組 MAC 地址的請求?
像這樣的東西:
host vminstances { hardware ethernet d0:0d:*; ignore booting; }
你可以使用類似的東西:
class "ignored" { match if substring(hardware,1,4) = 00:02; } pool { deny members of "ignored"; range 192.168.172.100 192.168.172.149; }
從郵件列表上的這個執行緒中,阻止特定主機的另一個選項是:
class "black-hole" { match substring (hardware, 1, 6); # deny booting; ignore booting; } subclass "black-hole" <MAC-ADDRESS-TO_IGNORE>;
ignore
該執行緒還表示和之間的區別在於deny
後者記錄請求而前者不記錄。