下面是详细讲解“Linux虚拟机配置静态IP地址的完整步骤”的攻略。
1. 确定网卡名称
使用ifconfig命令查看网络接口的名称,一般情况下为eth0
或enp0s3
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系统上配置网络的示例。
- 确认网络接口名称
ifconfig
可以看到,系统默认的网络接口名称为enp0s3
。
- 编辑网络配置文件
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
- 重启网络服务
sudo systemctl restart networking
示例2:CentOS 7的网络配置
下面是在CentOS 7系统上配置网络的示例。
- 确认网络接口名称
ifconfig
可以看到,系统默认的网络接口名称为eth0
。
- 编辑网络配置文件
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
- 重启网络服务
sudo systemctl restart network
到此为止,我们已经完成了Linux虚拟机配置静态IP地址的完整步骤。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:linux虚拟机配置静态IP地址的完整步骤 - Python技术站