网络其他

关注公众号 jb51net

关闭
网络 > 网络其他 >

hype-v 虚拟机Kali 双网卡配置方法 hype-v 虚拟机Kali 配置

zjh

1.1 新增虚拟交换机虚拟交换机管理器 -> 创建虚拟交换机(选择内部)-> 虚拟交换机修改为自己喜欢的 -> 确认创建

1.2 修改网络连接中的虚拟交换机配置

做完1.1 后网络连接中会出现-你刚才创建的虚拟交换机

配置虚拟交换机的属性(网关不用填!)

1.3 进入Kali修改网络配置文件

vi /etc/network/interfaces

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

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback


auto eth0
iface eth0 inet dhcp
# 新增网卡eth1 配置为静态ip
auto eth1
iface eth1 inet static
address 192.168.218.3
netmask 255.255.255.0

1.4 重启网络服务

service network restart

为啥不需要填网关?

内部网络情况:如果2个ip在同一个网段下,不需要经过网关进行NAT 直接就可以连通

到此这篇关于hype-v 虚拟机Kali 双网卡配置方法 hype-v 虚拟机Kali 配置的文章就介绍到这了,更多相关hype-v 虚拟机Kali 配置内容请搜索脚本之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持脚本之家!