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

本文详细介绍了如何在Hyper-V中配置网络适配器,并在Ubuntu虚拟机上设置静态IP地址,包括修改interfaces文件,设置IP、子网掩码、网关和DNS,以实现SSH连接。

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

Ubuntu 16.04系统中配置静态IP地址有多种方法,以下为你详细介绍: #### 方法一:通过修改配置文件 - 编辑配置文件:使用命令 `sudo vim /etc/network/interfaces` 打开配置文件。 - 示例配置内容: ```plaintext # 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 # 动态IP代码注释,以下为设置静态IP auto enp0s31f6 iface enp0s31f6 inet static address 192.168.3.119 netmask 255.255.255.0 gateway 192.168.3.1 ``` 上述示例中,`enp0s31f6` 为网络接口名,`address` 为静态IP地址,`netmask` 为子网掩码,`gateway` 为网关地址。修改完成后保存退出即可 [^4]。 #### 方法二:使用图形界面(适用于有桌面环境的情况) 1. 将VMware桥接到当前电脑使用的网络上面。 2. 点击网络符号,编辑连接。 3. 双击有线连接1。 4. 选择IPv4设置,将地址、子网掩码、网关、DNS服务器设置好,保存。 5. 在终端输入 `reboot` 命令重启ubuntu,使设置生效。 6. 使用 `ifconfig` 查看 `ens33` 网卡的ip地址是否为设置的地址。 7. 在终端 `ping www.baidu.com`,若能ping通,说明联网成功 [^3]。 #### 方法三:通过命令行配置 1. 查询网络接口的名字。 2. 配置固定IP模式:编辑 `/etc/network/interfaces` 文件,示例如下: ```plaintext auto ens33 iface ens33 inet static address 192.168.254.145 netmask 255.255.255.0 gateway 192.168.254.2 dns - nameserver 8.8.8.8 ``` 其中,`ens33` 为网络接口名,`address` 为静态IP地址,`netmask` 为子网掩码,`gateway` 为网关地址,`dns - nameserver` 为DNS服务器地址。 使用 `vim` 编辑文件时,`i` 进入插入模式进行内容编辑,`esc` 键进入命令模式,`:wq` 进入末行模式保存并退出 [^1][^5]。 3. 刷新IP,可通过一些命令(文档未明确提及)。 4. 重启系统使设置生效 [^1]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值