arp命令 引數

suv789發表於2024-03-28

arp /?

顯示並修改地址解析協議(ARP)使用的 IP 到實體地址轉換表。

ARP -s inet_addr eth_addr [if_addr]
ARP -d inet_addr [if_addr]
ARP -a [inet_addr] [-N if_addr] [-v]

-a 透過查詢當前協議資料顯示當前 ARP 條目。如果指定 inet_addr,則僅顯示指定計算機的 IP 地址和實體地址。如果多個網路介面使用 ARP,則會顯示每個 ARP 表的條目。
-g 等同於 -a。
-v 以詳細模式顯示當前 ARP 條目。將顯示所有無效條目和環回介面上的條目。
inet_addr 指定網際網路地址。
-N if_addr 顯示由 if_addr 指定的網路介面的 ARP 條目。
-d 刪除由 inet_addr 指定的主機。inet_addr 可以使用 * 作為萬用字元來刪除所有主機。
-s 新增主機並將網際網路地址 inet_addr 與實體地址 eth_addr 關聯。實體地址由 6 個以連字元分隔的十六進位制位元組給出。該條目是永久的。
eth_addr 指定實體地址。
if_addr 如果存在,則指定應修改其地址轉換表的介面的網際網路地址。如果不存在,將使用第一個適用的介面。
示例:

arp -s 157.55.85.212 00-aa-00-62-c6-09 .... 新增靜態條目。
arp -a .... 顯示 ARP 表。

arp -a /?

Displays and modifies the IP-to-Physical address translation tables used by
address resolution protocol (ARP).

ARP -s inet_addr eth_addr [if_addr]
ARP -d inet_addr [if_addr]
ARP -a [inet_addr] [-N if_addr] [-v]

-a Displays current ARP entries by interrogating the current
protocol data. If inet_addr is specified, the IP and Physical
addresses for only the specified computer are displayed. If
more than one network interface uses ARP, entries for each ARP
table are displayed.
-g Same as -a.
-v Displays current ARP entries in verbose mode. All invalid
entries and entries on the loop-back interface will be shown.
inet_addr Specifies an internet address.
-N if_addr Displays the ARP entries for the network interface specified
by if_addr.
-d Deletes the host specified by inet_addr. inet_addr may be
wildcarded with * to delete all hosts.
-s Adds the host and associates the Internet address inet_addr
with the Physical address eth_addr. The Physical address is
given as 6 hexadecimal bytes separated by hyphens. The entry
is permanent.
eth_addr Specifies a physical address.
if_addr If present, this specifies the Internet address of the
interface whose address translation table should be modified.
If not present, the first applicable interface will be used.
Example:
> arp -s 157.55.85.212 00-aa-00-62-c6-09 .... Adds a static entry.
> arp -a .... Displays the arp table.

arp -a

Interface: 192.168.1.55 --- 0x13

介面:網路介面的IP地址---識別符號
Internet Address Physical Address Type

網際網路地址 實體地址 型別

-----------------------------------------------------------------------
192.168.1.1 a0-36-79-d4-ce-84 dynamic (動態)

-------------------------------------------------------------------------------
192.168.1.255 ff-ff-ff-ff-ff-ff static (靜態)

--------------------------------------------------------------------------
224.0.0.22 01-00-5e-00-00-16 static
224.0.0.251 01-00-5e-00-00-fb static
224.0.0.252 01-00-5e-00-00-fc static

-----------------------------------------------------------------------------
239.255.255.250 01-00-5e-7f-ff-fa static

dynamic (動態)

static (靜態)

  • 單播地址:192.168.1.1
  • 有限廣播地址:192.168.1.255
  • 多播地址:224.0.0.22, 224.0.0.251, 224.0.0.252, 239.255.255.250
  1. 224.0.0.22:屬於永久性多播地址,用於OSPFv3協議。
  2. 224.0.0.251:屬於永久性多播地址,用於mDNS (多播DNS) 服務發現,通常用於區域網內的裝置發現和服務廣告。
  3. 224.0.0.252:屬於永久性多播地址,用於Link-local Multicast Name Resolution (LLMNR),用於在區域網內解析主機名。
  4. 239.255.255.250:屬於臨時性多播地址,用於SSDP (Simple Service Discovery Protocol) 發現服務,通常用於發現UPnP裝置和服務。

相關文章