用於操作本機的arp快取區,它可以顯示arp快取區中的所有條目、刪除指定的條目或者新增靜態的ip位址與mac位址的對應關係。
什麼是arp?即位址解析協議(arp,address resolution protocol),其主要功能是根據ip位址獲取實體地址(mac位址)。
-n 顯示數字ip位址
-s《主機》-d《主機》 從arp快取區中刪除指定主機的ap條目
-i《接》 指定網路接
-v 顯示詳細的arp快取區條目,包括緩衝區務目的統計資訊
[root@cs6 ~]# arp -n
address hwtype hwaddress flags mask iface
10.0.0.1 ether 00:50:56:c0:00:08 c eth0
10.0.0.2 ether 00:50:56:f4:fb:52 c eth0
命令說明具體如下。
hwtype:硬體型別。
flags mask:記錄標誌,「c」表示arp快取記憶體中的條目,「m」表示靜態的arp條目。
lface:網路介面。
[root@cs6 ~]# arp -n 10.0.0.1
address hwtype hwaddress flags mask iface
10.0.0.1 ether 00:50:56:c0:00:08 c eth0
[root@cs6 ~]# arp -s 10.0.0.99 00:0c:29:c0:5a:ef #繫結ip地是和mac位址
[root@cs6 ~]# arp -n
address hwtype hwaddress flags mask iface
10.0.0.1 ether 00:50:56:c0:00:08 c eth0
10.0.0.2 ether 00:50:56:f4:fb:52 c eth0
10.0.0.99 ether 00:0c:29:c0:5a:ef cm eth0
[root@cs6 ~]# arp -d 10.0.0.99
[root@cs6 ~]# arp -n
address hwtype hwaddress flags mask iface
10.0.0.1 ether 00:50:56:c0:00:08 c eth0
10.0.0.2 ether 00:50:56:f4:fb:52 c eth0
10.0.0.99 (incomplete) eth0
停車的管理系統
include include include int max 容量 typedef struct queue 佇列結構 typedef struct stack 棧結構 void init queue queue q 初始化佇列 int queuelength queue q 佇列長度 int q...
系統日誌的管理
1,rsyslog 此服務用來採集系統的日誌,不產生日誌,只是起到採集的作用 1,var log messages 服務資訊日誌 2,var log secure 系統登陸日誌 3,var log cron 定時任務日誌 4,var log mailllog 郵件日誌 5,var log boot....
班級的管理系統
需求 班級管理系統 功能 對學生的資訊進行管理 1 登入系統 2 退出系統 賬號 密碼 驗證碼 歡迎來到班級管理系統 1 新增學生資訊 2 刪除學生資訊 3 查詢指定學生資訊 4 查詢所有學生資訊 5 統計班級資訊 6 退出 請選擇您要查詢的序號 建立乙個student類 public class ...