Debian11.6.0命令行配置网络

1. 查看要配置的网卡名称

ip link
或者
ip a

2.nano编辑器打开网络接口的配置文件"/etc/network/interfaces"

sudo nano /etc/network/interfaces

添加网卡的配置,比如enp5s0的配置

auto enp5s0
iface enp5s0 inet static
address 192.168.1.68
network 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1 8.8.8.8

3. 重启网络服务

systemctl restart networking
或者
/etc/init.d/networking restart

参考:

(3条消息) 如何在 Debian 11 上设置一个静态 IP 地址_木子欢儿的博客-CSDN博客

systemctl命令列出所有服务_freesharer的博客-CSDN博客_systemctl list

debian系统下重启停止网卡命令 - 简书 (jianshu.com)

你可能感兴趣的:(linux,网络,linux,debian)