在Debian系統中配置靜態IP地址的步驟如下:
sudo nano /etc/network/interfaces
iface eth0 inet static
address [靜態IP地址]
netmask [子網掩碼]
gateway [網關地址]
例如:
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers [DNS服務器IP地址]
例如:
dns-nameservers 8.8.8.8
保存配置文件并退出編輯器。
重新啟動網絡服務以使更改生效:
sudo /etc/init.d/networking restart
完成以上步驟后,您的Debian系統將使用靜態IP地址進行網絡連接。