要在Debian系統(tǒng)上設(shè)置靜態(tài)IP地址,您需要編輯網(wǎng)絡(luò)配置文件。以下是設(shè)置靜態(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
在這個(gè)示例中,IP地址為192.168.1.100,子網(wǎng)掩碼為255.255.255.0,網(wǎng)關(guān)為192.168.1.1,DNS服務(wù)器為8.8.8.8和8.8.4.4。您需要根據(jù)您的網(wǎng)絡(luò)設(shè)置更改這些值。
保存更改并關(guān)閉文件。
重新啟動網(wǎng)絡(luò)服務(wù):
sudo systemctl restart networking
現(xiàn)在您的Debian系統(tǒng)應(yīng)該使用靜態(tài)IP地址。您可以使用ifconfig命令來驗(yàn)證新的IP地址是否已成功設(shè)置。