debian11单网卡配置单ip与单网卡配置多ip
如果使用Debian11作为服务器,需要更改IP地址为静态。
nano /etc/network/interfaces
单网卡单IP配置
注释掉底部网卡原有配置
增加示例如下
auto eth0
iface eth0 inet static
address 192.168.0.188
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 8.8.8.8
上图示例为配置原有网卡eth0。
单网卡多IP配置
在文件/etc/network/interfaces底部继续增加网卡名:1,网卡名:2,网卡名:N
示例:
auto eth0:1
iface eth0:1 inet static
address x.x.x.x
netmask x.x.x.x
gateway x.x.x.x
修改完成 重启网卡
systemctl restart networking.service
或单独重启网卡
systemctl restart ifup@eth0
评论