在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地址进行网络连接。