码迷,mamicode.com
首页 > 其他好文 > 详细

Kali之网络配置

时间:2017-07-15 23:54:44      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:kali   nbsp   add   div   describes   name   bsp   describe   子网掩码   

 

一、配置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 lo
iface lo inet loopback
auto eth0  //指定eth0网卡
iface eth0 inet static //静态地址(动态获取用dhcp)
address 192.168.77.133 //IP地址
netmask 255.255.255.0 //子网掩码
gateway 192.168.77.254 //默认网关

二、配置DNS

编辑/etc/resolv.conf

nameserver 8.8.8.8
nameserver 4.4.4.4

三、重启网络

#/etc/init.d/networking restart
或者
#service networking restart

 

Kali之网络配置

标签:kali   nbsp   add   div   describes   name   bsp   describe   子网掩码   

原文地址:http://www.cnblogs.com/captainRoB/p/7188339.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!