例如想要設定網路的資訊如下
子網掩碼:255.255.255.0
閘道器:10.10.10.2
dns:10.10.10.2,114.114.114.114
我們需要編輯2個檔案
/etc/network/inte***ces(配置ip和閘道器)
/etc/resolv.conf(配置dns伺服器)
先vi /etc/network/inte***ces
auto eth0 #開機自動連線網路
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet static #static表示使用固定ip,dhcp表述使用動態ip
address 10.10.10.155 #設定ip位址
netmask 255.255.255.0 #設定子網掩碼
gateway 10.10.10.2 #設定閘道器
broadcase 10.10.10.255#設定廣播位址(也可以不寫)
ps:配置時可去掉注釋,因為我配置的時候加了注釋導致網絡卡起不來;如果遠端一定要auto,不然配置後網絡卡不自動啟。
在配置/etc/resolv.conf
vi /etc/resolv.conf
nameserver 10.10.10.2 #設定首選dns
nameserver 114.114.114.114 #設定備用dns
service networking restart #重啟網路
689 設定debian的靜態IP
ipconfig all可檢視一下資訊 想要設定網路的資訊如下 我們需要編輯2個檔案 etc network inte ces 配置ip和閘道器 etc resolv.conf 配置dns伺服器 檢視可用網絡卡 root debian ip addr 1 lo mtu 65536 qdisc noq...
Debian 8 5設定靜態IP
為什麼要設定靜態ip?因為我在做分布式的時候發現每台啟動的ip不容易固定,每次都要去修改,所以.因為這個網段不止我乙個人用.因為木有錢再去買個路由器給自己分配ip.說明 系統 debian 8.5 子網掩碼 255.255.255.0 閘道器 10.50.200.254 dns 219.147.1....
debian配置靜態ip
系統 debian 8.5 子網掩碼 255.255.255.0 閘道器 10.50.200.254 dns 219.147.1.66 8.8.8.8 操作 1 設定ip位址 閘道器 etc network inte ces etc network inte cesbak 備份原有配置檔案 etc ...