要在Linux系統(tǒng)中配置靜態(tài)IP地址,可以按照以下步驟進行:
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
dns-nameservers 8.8.8.8 8.8.4.4
保存文件并退出編輯器。
重新啟動網(wǎng)絡(luò)服務以應用新的配置:
sudo systemctl restart networking
ip addr show eth0
現(xiàn)在,您的Linux系統(tǒng)已經(jīng)成功配置了靜態(tài)IP地址。