1. 静态IP配置
首先打开kali网络配置文件 /etc/network/interfaces
vi /etc/network/interfaces
将下方内容添加
auto eth0
iface eth0 inet static
address 192.168.136.199
netmask 255.255.255.0
gateway 192.168.136.254
auto eth0 #网卡名
iface eth0 inet static #网络接口为静态
address 192.168.136.199 #静态IP地址
netmask 255.255.255.0 #掩码
gateway 192.168.136.254 #网关
保存退出:按键盘Esc 输入 :wq
重启网络后生效
systemctl stop NetworkManager
systemctl restart networking
2. 临时IP配置
可以使用以下来配置临时IP
ifconfig eth0:1 192.168.1.111
这种方式仅用于配置临时性的IP地址,当系统重启或者网络服务重启后,我们这样配置的IP地址即失效。