Ubuntu中如何设置IP地址
在Ubuntu中设置IP地址通常涉及到修改网络配置文件或使用命令行工具。以下是两种常见的方法:
- 使用
netplan
(Ubuntu 17.10及以后版本):
首先,找到配置文件,通常在/etc/netplan/
目录下。文件名可能是01-netcfg.yaml
,50-cloud-init.yaml
或类似。
编辑这个文件,例如:
network:
version: 2
renderer: networkd
ethernets:
enp3s0:
dhcp4: no
addresses: [192.168.1.10/24]
gateway4: 192.168.1.1
nameservers:
addresses: [8.8.8.8, 8.8.4.4]
在这里,enp3s0
是网络接口名称,你需要替换为你的实际接口名称。addresses
是你想要设置的IP地址和子网掩码。
应用更改:
sudo netplan apply
- 使用
ifconfig
和/etc/network/interfaces
(Ubuntu 17.04及以前版本):
编辑/etc/network/interfaces
:
sudo nano /etc/network/interfaces
添加或修改相应的接口配置:
auto enp3s0
iface enp3s0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4
重启网络服务或者重启系统来应用更改:
sudo /etc/init.d/networking restart
或者:
sudo reboot
注意:enp3s0
是示例接口名称,你需要替换为你的实际接口名称。
评论已关闭