⑴ Kali linux常用服務配置教程獲取IP地址
下面以Kali Linux為例,演示獲取IP地址的方法
(1)設置網路介面為自動獲取IP地址。在Kali Linux的收藏夾中單擊圖標,將顯示所有的程序,如圖1.8所示。
(2)單擊「設置」圖標,將打開「設置」窗口,如圖1.9所示。
(3)選擇「網路」選項,單擊有線連接中的齒輪按鈕,將顯示「有線」對話框,如圖1.10所示。
(4)勾選「自動連接」復選框。然後,單擊IPv4標簽,將顯示IPv4選項卡,如圖1.11所示。
(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 https://www.isc.org/software/dhcp/
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地址及對應租約信息。
⑵ linux 從DHCP重新獲取IP地址的命令是什麼
可用指令如下:
1、servicenetworkrestart:重啟服務
2、ifconfigeth0down;ifconfigeth0up:對網卡進行操作
3、sudo dhclient -r//release ip:釋放IP
4、sudo dhclient//:獲取IP
(2)linuxdhcp獲取ip擴展閱讀:
linux常用命令及技巧
1、date :print or set the system date and time
2、 stty -a: 可以查看或者列印控制字元(Ctrl-C, Ctrl-D, Ctrl-Z等)
3、passwd: print or set the system date and time (用passwd -h查看)
4、logout, login: 登錄shell的登錄和注銷命令
5、pwd: print working directory
6、more, less, head tail: 顯示或部分顯示文件內容.
7、lp/lpstat/cancel, lpr/lpq/lprm: 列印文件.
8、更改文件許可權: chmod u+x..
9、刪除非空目錄:rm -fr dir
10、拷貝目錄: cp -R dir
11、fg jobid :可以將一個後台進程放到前台。
⑶ 如何強制linux DHCP 客戶端重新獲取IP
Linux重新獲取IP使用dhclient命令,使用sudo使其具有管理員許可權。
命令如下:
$
sudo
dhclient
-r
//release
ip
釋放IP
$
sudo
dhclient
//獲取IP
dhclient命令說明
dhclient命令使用動態主機配置協議動態的配置網路介面的網路猛櫻參數。
語法
dhclient(選項)(參數)
選項
0:指定dhcp客戶端監聽的埠號;
-d:總是枝晌叢以前台方式運行程序;
-q:安靜模式,不列印任何錯誤的提示信息;
-r:釋放ip地謹鋒址。
參數
網路介面:操作的網路介面。
實例
dhclient
-r
#釋放IP
dhclient
#獲取IP
⑷ linux使用dhcp分配地址,怎麼查看ip地址
Linux中查看ip的命令有:
[root@linuxprobe ~]#ip addr
[root@linuxprobe ~]#ifconfig
一般知道Linux的IP後如果想長期使用這個ip的話可以把ip設置為手動靜態IP。配置文件:[root@linuxprobe ~]#cat /etc/sysconfig/network-scripts/ifcfg-eth0
更多Linux的知識建議參考《Linux就該這樣學》。加油