linux系统下静态IP的设置

首先说明:下面用的系统为:kali 4.6.0版本的哦;不同的系统是不一样的;反正吧,在ubuntu上的好多方法在kali上就不管用,并且吧,不同的ubuntu的版本也不一样的;

第一步:设置网络的IP,网关等;

关于它的设置,需要修改 /etc/network/下的文件:interfaces , 下面是我修改完以后的内容:

1 # This file describes the network interfaces available on your system 2 # and how to activate them. For more information, see interfaces(5). 3 4 source /etc/network/interfaces.d/* 5 6 # The loopback network interface 7 auto lo 8 iface lo inet loopback 9 10 auto eth0 11 # configure the static ip by yin 2017.01.06 12 iface eth0 inet static # 把网卡eth0(对应自己的网卡名称)设为静态的网络接口; 13 address 192.168.199.3 # 设置IP地址; 14 network 192.168.199.0 # 设置网络号; 15 netmask 255.255.255.0 # 设置子网掩码; 16 gateway 192.168.199.1 # 设置网关; 17 broadcast 192.168.199.255 # 广播地址; 18 19 # it is not work when I write the DNS in here. by yin 2017.01.06 20 dns-nameservers 202.194.40.1 #我在这里设置了NDS后不管用,网上有的说在ubuntu下管用的,可能因为版本的问题;

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgzdsp.html