今天测试公司内网,然后用脚本扫了下存在漏洞的机器,万事俱备,只欠东风了。。
当我兴高采烈的打开Kali的时候,才发现没有网、、、(因为我要用Metasploit反弹Shell,虚拟机和靶机必须在同一网段下,所以虚拟机用的桥接模式)
然后查看原因是因为我本机用了静态IP上网。。。(公司自动分配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重启网络
相关链接