码迷,mamicode.com
首页 > Web开发 > 详细

Kali和Metasploitable2的网络配置

时间:2019-08-02 10:53:42      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:ESS   完成后   net   开机   sele   table   conf   mask   show   

Kali和Metasploitable2的网络配置

1.Kali网络配置

1.1 配置网卡

修改/etc/network/interfaces

auto eth0 #开机自动激活
iface eth0 inte static #静态IP
address 192.168.1.68 #本机IP
netmask 255.255.255.0 #子网掩码
gateway 192.168.1.1 #网关
1.2 设置DNS,修改/etc/resolv.conf
nameserver 192.168.1.1
1.3 配置完成后,重启网卡
systemctl restart NetworkManager.service

2.Metasploitable2的网络配置

2.1 修改interfaces的权限问题
sudo chmod 777 /etc/network/interfaces

修改/etc/network/interfaces

auto eth0 #开机自动激活
iface eth0 inte static #静态IP
address 192.168.1.62 #本机IP
netmask 255.255.255.0 #子网掩码
gateway 192.168.1.1 #网关
2.2 修改resolv.conf权限
sudo chmod 777 /etc/resolv.conf

设置DNS,修改/etc/resolv.conf

nameserver 192.168.1.1
2.3 配置完成后,重启网卡
sudo systemctl restart NetworkManager.service

如果两台机器仍无法互联,查看两台机器的网络连接选项是否都是【桥接 】

Kali和Metasploitable2的网络配置

标签:ESS   完成后   net   开机   sele   table   conf   mask   show   

原文地址:https://www.cnblogs.com/yumianxiaodamo/p/11286836.html

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