debian8系统如何通过修改interfaces文件配置网卡?本教程以debian8系统为例
本配置适用于debian8,9版本
1.设置IP地址、网关
vi /etc/network/interfaces #编辑网卡配置文件
iface eth0 inet static #static表示使用固定ip,dhcp表述使用动态ip
address X.X.X.X #设置ip地址
netmask X.X.X.X #设置子网掩码
gateway X.X.X.X. #设置网关
配置完成后保存退出即可:wq
2.重启网络
service networking restart #重启网络
ip a查看即可