debian7系統設定固定IP

2021-07-14 05:45:21 字數 2032 閱讀 7216

linux下檢視閘道器方法:  

1、route -n  

2、ip route show  

3、traceroute www.prudentwoo.com -s 100 【第一行就是自己的閘道器】  

4、netstat -r  

5、more /etc/network/inte***ces 【debian/ubuntu linux】  

6、more /etc/sysconfig/network-scripts/ifcfg-eth0 【red hat linux】  

//查詢現有的動態ip位址以及子網掩碼

root@hjwdev:/# ifconfig eth0

eth0      link encap:ethernet  hwaddr 00:0c:29:74:33:a4  

inet addr:192.168.1.130  bcast:192.168.1.255  mask:255.255.255.0

up broadcast running multicast  mtu:1500  metric:1

rx packets:183175 errors:0 dropped:0 overruns:0 frame:0

tx packets:20868 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

rx bytes:34441417 (32.8 mib)  tx bytes:3770024 (3.5 mib)

//查詢現有的dns伺服器位址      

more /etc/resolv.conf

nameserver 202.106.0.10

nameserver 202.106.196.114

//查詢現有的閘道器位址

root@hjwdev:/# route -n

kernel ip routing table

destination     gateway         genmask         flags metric ref    use iface

0.0.0.0         192.168.1.2     0.0.0.0         ug    0      0        0 eth0

192.168.1.0     0.0.0.0         255.255.255.0   u     0      0        0 eth0

1、設定ip位址、閘道器

nano /etc/network/inte***ces  /etc/network/inte***cesbak   #備份原有配置檔案

nano /etc/network/inte***ces   #編輯網網絡卡配置檔案

auto lo

auto eth0  #開機自動連線網路

iface lo inet loopback

allow-hotplug eth0

iface eth0 inet static   #static表示使用固定ip,dhcp表述使用動態ip

address 192.168.1.177   #設定ip位址

netmask 255.255.255.0  #設定子網掩碼

gateway 192.168.1.2    #設定閘道器

ctrl+o   #儲存配置

ctrl+x   #退出

2、設定dns

cp  /etc/resolv.conf   /etc/resolv.confbak    #備份原有dns配置檔案

nano /etc/resolv.conf   #編輯配置檔案

nameserver 202.106.0.10   #設定首選dns

nameserver 202.106.196.114   #設定備用dns

ctrl+o   #儲存配置

ctrl+x   #退出

3、重啟網路

service networking restart   #重啟網路

至此,ip位址、閘道器、dns配置完成,現在系統已經可以上網了。

Debian 7 編譯核心

cd usr src wget no check certificate apt get install bzip2 gcc g make bc ncurses devel tar xvjf linux 3.12.tar.bz2 cd linux 3.12 cp boot config 3.2.0 ...

硬碟安裝 Debian 7

我勒個去!這是我此刻最想說的一句話。按照網上的一些教程操作,我使用硬碟安裝debian,但是在掃瞄iso檔案時總是提示找不到!後來把iso檔案複製到u盤裡再次掃瞄才發現。把安裝過程總結一下,對自己和他人都是乙個參考。debian 7 64bit 的 iso映象位址 600多兆 然後將iso檔案及2個...

Debian7 單網絡卡多IP配置詳解

auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.10.56 netmask 255.255.254.0 gateway 192.168.10.1 auto eth0 0 address 1...