Debian10的网络配置

网络配置

一、配置文件方式

1、编辑网卡配置文件interfaces

1
2
3
4
5
6
7
8
9
10
11
12
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、重启网络服务

1
2
systemctl restart networking
systemctl restart network-manager

欢迎关注我的CSDN个人博客知乎