hype-v 虚拟机Kali 双网卡配置
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 直接就可以连通