Debian靜態IP地址和DNS
1、配置文件及路徑spa
/etc/network/interfaces
2、IP地址
1. DHCP的IP配置以下rest
# The primary network interface allow-hotplug eth0 iface eth0 inet dhcp
2. 靜態的IP配置示例以下code
allow-hotplug eth0 iface eth0 inet static address 192.168.11.100 netmask 255.255.255.0 gateway 192.168.11.1
3、關於DNS配置
1.DNS配置文件地址server
/etc/resolv.conf
添加實際的dns地址:blog
nameserver 8.8.8.8
有多個就添加多行。
2.若是安裝了resolvconf
接着在gateway的下面一行添加(注意是/etc/network/interfaces這個文件)dns
dns-nameservers 8.8.8.8
4、查看使用中的DNS配置
1. dig命令
1.1 安裝digget
sudo apt-get install dnsutils
1.2 執行digclass
;; Query time: 2 msec ;; SERVER: 127.0.1.1#53(127.0.1.1) ;; WHEN: Mon Oct 23 11:52:23 CST 2017 ;; MSG SIZE rcvd: 239
SERVER:這一行就是配置生效的DNS地址
5、網卡重啓配置
systemctl restart networking