基于Debian的Kali Linux。对其他的Linux系统基本都是一样的~
首先:
1 |
vi
/etc/network/interfaces
|
将其中的eth0网卡设置为static模式
修改为
1 |
allow-hotplug eth0 #修改前
|
2 |
audo eth0 #修改后
|
将修改为:
1 |
iface eth0 inet dhcp #修改前
|
2 |
iface eth0 inet static #修改后
|
下面是写上自定义的IP地址及网关,子网掩码。
1 |
address 192.168.1.101 |
2 |
netmask 255.255.255.0 |
3 |
gateway 192.168.1.1 |
其中iface eth0 inet dhcp的意思是动态获取IP。
iface eth0 inet
static的意思是静态获取IP。
接下来修改DNS。
1 |
vi
/etc/resolv.conf
|
2 |
nameserver 8.8.8.8 |
3 |
nameserver 8.8.4.4 |
重启网卡或者重启计算机。
1 |
/etc/init.d/networking restart |
完成修改。