Kali Linux常用服務配置教程獲取IP地址

大學霸發表於2018-12-21

Kali Linux常用服務配置教程獲取IP地址

下面以 Kali Linux 為例,演示獲取 IP 地址的方法

1 )設定網路介面為自動獲取 IP 地址。在 Kali Linux 的收藏夾中單擊 圖示 ,將顯示所有的程式,如圖 1.8 所示。


2 )單擊“設定”圖示,將開啟“設定”視窗,如圖 1.9 所示。

Kali Linux常用服務配置教程獲取IP地址

3 )選擇“網路”選項,單擊有線連線中的 齒輪按鈕,將顯示“有線”對話方塊,如圖 1.10 所示。

Kali Linux常用服務配置教程獲取IP地址

4 )勾選“自動連線”核取方塊。然後,單擊 IPv4 標籤,將顯示 IPv4 選項卡,如圖 1.11 所示。

Kali Linux常用服務配置教程獲取IP地址

5 )在該介面選擇“自動 (DHCP) ”選項。然後,單擊“應用”按鈕。接下來,就可以請求獲取 IP 地址了。執行命令如下所示:

root@daxueba:~# dhclient eth0 –d

Internet Systems Consortium DHCP Client 4.3.5

Copyright 2004-2016 Internet Systems Consortium.

All rights reserved.

For info, please visit

Listening on LPF/eth0/00:0c:29:25:89:95

Sending on     LPF/eth0/00:0c:29:25:89:95

Sending on     Socket/fallback

DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4

DHCPREQUEST of 192.168.0.12 on eth0 to 255.255.255.255 port 67

DHCPOFFER of 192.168.0.12 from 192.168.0.10

DHCPACK of 192.168.0.12 from 192.168.0.100

bound to 192.168.0.12 -- renewal in 277 seconds.

從輸出的資訊中,可以看到成功獲取到 IP 地址 192.168.0.12 。由此可以說明,搭建的 DHCP 服務測試成功。此時,使用者檢視地址租約檔案 dhcpd.leases ,也可以看到分配的 IP 地址。如下所示:

root@daxueba:~# cat /var/lib/dhcp/dhcpd.leases

# The format of this file is documented in the dhcpd.leases(5) manual page.

# This lease file was written by isc-dhcp-4.3.5

# authoring-byte-order entry is generated, DO NOT DELETE

authoring-byte-order little-endian;

lease 192.168.0.10 {

   starts 1 2018/07/02 10:15:00;

   ends 1 2018/07/02 10:25:00;

   cltt 1 2018/07/02 10:15:00;

   binding state active;

   next binding state free;

   rewind binding state free;

   hardware ethernet 00:0c:29:5c:ae:aa;

   client-hostname "daxueba";

}

lease 192.168.0.11 {

   starts 1 2018/07/02 10:18:17;

   ends 1 2018/07/02 10:28:17;

   cltt 1 2018/07/02 10:18:17;

   binding state active;

   next binding state free;

   rewind binding state free;

   hardware ethernet 00:0c:29:99:92:4f;

   uid "\001\000\014)\231\222O";

   set vendor-class-identifier = "MSFT 5.0";

   client-hostname "Test";

}

lease 192.168.0.12 {

   starts 1 2018/07/02 10:34:56;

   ends 1 2018/07/02 10:44:56;

   cltt 1 2018/07/02 10:34:56;

   binding state active;

   next binding state free;

   rewind binding state free;

   hardware ethernet 00:0c:29:25:89:95;

   client-hostname "daxueba";

}

從輸出的資訊中,可以看到 DHCP 服務分配出去的 IP 地址及對應租約資訊。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29597077/viewspace-2285980/,如需轉載,請註明出處,否則將追究法律責任。

相關文章