网络配置
一、配置文件方式
1、编辑网卡配置文件interfaces
vim /etc/network/interfaces
...
auto ens33
iface ens33 inet static address
address 172.16.100.201/25
gateway 172.16.100.254
#auto ens33 启动服务的时候激活网卡,ens33为网卡名称
#iface ens33 inet static 接口属性配置,支持static(静态)、dhcp(动态)、none(默认)模式
#address,IP地址配置,支持IP/PREFIX方式
#netmask,掩码
#gateway,网关地址
2、重启网络服务
systemctl restart networking
systemctl restart network-manager
标签:配置文件,配置,网络,网卡,static,address,Debian10,ens33
From: https://www.cnblogs.com/oldit/p/17811954.html