当前位置 : 主页 > 操作系统 > centos >

linux虚拟机配置静态IP地址的完整步骤

来源:互联网 收集:自由互联 发布时间:2023-07-28
下面是详细讲解“Linux虚拟机配置静态IP地址的完整步骤”的攻略。 1. 确定网卡名称 使用ifconfig命令查看网络接口的名称,一般情况下为 eth0 或 enp0s3 ifconfig 2. 修改网卡配置文件 使用编

下面是详细讲解“Linux虚拟机配置静态IP地址的完整步骤”的攻略。

1. 确定网卡名称

使用ifconfig命令查看网络接口的名称,一般情况下为eth0enp0s3

ifconfig
2. 修改网卡配置文件

使用编辑器打开网络配置文件/etc/network/interfaces,修改其中的IP地址、网关、掩码等信息。

例如,将eth0的IP地址改为192.168.1.100,掩码为255.255.255.0,网关为192.168.1.1,配置如下:

sudo nano /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
3. 重启网络服务

修改完网络配置文件后,重启网络服务使其生效。

sudo systemctl restart networking
示例1:Ubuntu 20.04的网络配置

下面是在Ubuntu 20.04系统上配置网络的示例。

  1. 确认网络接口名称
ifconfig

可以看到,系统默认的网络接口名称为enp0s3

  1. 编辑网络配置文件
sudo nano /etc/network/interfaces

添加如下配置信息:

auto enp0s3
iface enp0s3 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
  1. 重启网络服务
sudo systemctl restart networking
示例2:CentOS 7的网络配置

下面是在CentOS 7系统上配置网络的示例。

  1. 确认网络接口名称
ifconfig

可以看到,系统默认的网络接口名称为eth0

  1. 编辑网络配置文件
sudo nano /etc/sysconfig/network-scripts/ifcfg-eth0

添加如下配置信息:

BOOTPROTO=static
IPADDR=192.168.1.100
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
  1. 重启网络服务
sudo systemctl restart network

到此为止,我们已经完成了Linux虚拟机配置静态IP地址的完整步骤。

网友评论