设置静态ip

查看网卡名称是ens33

ip address

编辑网卡配置文件

vi /etc/network/interfaces

 

在最后面添加下面内容 其中

  1. ens33是上步中查询到的网卡名称
  2. address 192.168.2.157 是ip地址
  3. netmask 255.255.255.0 是ip地址的子网掩码
  4. gateway 192.168.2.2 是ip地址的网关
auto ens33
iface ens33 inet static
address 192.168.2.157
netmask 255.255.255.0
gateway 192.168.2.2

最后重启网络服务

systemctl restart networking.service

 

设置dns

debian 12安装后默认没有/etc/resolv.conf 文件

vi /etc/resolv.conf

添加以下内容

nameserver 114.114.114.114
nameserver 8.8.8.8
nameserver 8.8.8.4
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。