配置Hyper-V
在网络适配器中找到:

找到配置ip的地方:

可以看到他的网关和子网掩码,下面就可以设置ubuntu了。
配置ubuntu
首先执行命令sudo vi /etc/network/interfaces,然后出现很多代码如下图:

打开interfaces,iface eth0 inet dhcp意味着自动分配IP,将dhcp改成static后,就可以修改静态IP,掩码,网关,DNS服务器了。
修改之后的如下所示:
# 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
# The primary network interface
auto eth0
# iface eth0 inet dhcp
iface eth0 inet static
address 172.25.48.100
netmask 255.255.240.0
gateway 172.25.48.1
ONBOOT yes
dns-nameservers 8.8.8.8
这样就可以通过ssh连接了
本文详细介绍了如何在Hyper-V中配置网络适配器,并在Ubuntu虚拟机上设置静态IP地址,包括修改interfaces文件,设置IP、子网掩码、网关和DNS,以实现SSH连接。

3860

被折叠的 条评论
为什么被折叠?



