Kali Linux下设置静态IP

Posted xxrens

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kali Linux下设置静态IP相关的知识,希望对你有一定的参考价值。

 

一、 在文件系统里找到/etc/network下的interfaces文件修改成如下

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5)。
# The loopback network interface

auto eth0
iface eth0 inet static
address 192.168.18.128
netmask 255.255.255.0
gateway 192.168.18.1
auto lo
iface lo inet loopback
二,配置DNS,找到/etc/resolv.conf这个文件,然后替换内容

# Generated by NetworkManager
nameserver 114.114.114.114
nameserver 8.8.8.8

 

 

最后,/etc/init.d/networking restart重启网络

技术分享图片

 

以上是关于Kali Linux下设置静态IP的主要内容,如果未能解决你的问题,请参考以下文章