debian 12設定靜態ip、dns

珊瑚贝博客發表於2024-04-01

1、設定靜態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

2、設定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

更多: https://www.shanhubei.com/archives/55148.html

相關文章