Hyper-V 和Ubuntu Server 16.04 配置静态IP

配置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连接了

猜你喜欢

转载自blog.csdn.net/vincent_duan/article/details/120145526