linux配置網路

2021-06-13 05:21:47 字數 4628 閱讀 2594

1. ifconfig 

檢視網路介面的資訊。普通使用者使用

ifconfig

的全路徑:

/sbin/ifconfig

ifconfig 

網路介面名稱

:顯示指定介面的詳細資訊。

ifconfig -a 

檢視所有網路介面的資訊。

2. route 

顯示路由表

route | grep default 

顯示主機的預設閘道器。

3.ping -c 4 192.168.1.10 

傳送指定數量的資料報進行網路連線測試。

4.traceroute 192.168.1.10 

測試與其他主機的網路連線路徑。

5.hostname 

顯示當前主機名稱。

二、使用命令進行網路設定

1.dhclient 

從dhcp 

伺服器中申請新的網路設定。

2.ifconfig   

網路介面

ip 位址

netmask 

子網掩碼

:配置ip位址,

ifconfig 

命令設定的網路介面屬性只在當前系統執行中有效,系統重新啟動後將按照網路介面配置檔案的內容重新配置網路介面屬性。

3.route   del default gw 

預設閘道器位址

:刪除預設閘道器路由記錄。

route add   default   gw 

預設閘道器位址

:新增預設閘道器。

4.hostname   linserver   

:設定主機名稱是即時生效的,重啟後將恢復原有主機名。

5. 在nslookup 

命令的互動模式中使用

server 

命令可以顯示

linux 

系統中使用的

dns 

伺服器位址。

6.netconfig   

:字元介面進行網路配置。

service   network    restart    

:重啟網路服務。

ifdown 

網路介面

ifup 

網路介面

:重啟網路介面 7.

修改mac位址:

ifconfig eth0 down 

:先禁用網絡卡

ifconfig   eth0   hw   ether   1234567890ab

永遠保持這樣: 在

/etc/rc.d/rc.local

裡加上這三句

(也可以在

/etc/init.d/network

裡加下面三行)

ifconfig eth0 down

ifconfig eth0 hw ether 1234567890ab

ifconfig eht0 up

三、修改配置檔案進行網路配置 1.

網路介面配置檔案

:/etc/sysconfig/network-scripts/ifcfg-eth0     

/etc/sysconfig/network-scripts/ifcfg-lo

「ifcfg-eth0」

配置檔案中設定靜態

ip 位址內容如下:

device=eth0                 

設定網路介面名稱

onboot=yes               

設定網路介面在系統啟動時啟用。

bootproto=static    

配置為靜態位址

ipaddr=192.168.1.10

netmask=255.255.255.0

gateway=192.168.1.1        

網路介面的預設閘道器 使用

dhcp 

方式獲得網路配置內容:

device=eth0

onboot=yes

bootproto=dhcp     2.

主機名配置檔案

/etc/sysconfig/network

networking=yes

hostname=linserver              linserver 

為設定的主機名稱。 3.

本地主機名稱解析檔案

/etc/hosts 4.

網域名稱伺服器配置檔案

/etc/resolv.conf

search   lingdian.com       

設定主機的預設查詢網域名稱

nameserver 192.168.152.2 

設定dns 

伺服器的

ip 位址,檔案中最多可以有3 個

「nameserver」

配置記錄,每個記錄一行,系統會優先使用最上面的

「nameserver」

配置記錄

linux

的基本網路配置命令

1、檢視ip:

ifconfig

2、配置

ip的方法: a

、這種方法立即生效,但是重啟將不會儲存。(除了這個方法的其它方法都可以儲存下來)

ifconfig eth

01.1.1.1 netmask 255.0.0.0 up

ifconfig eth01 1.1.1.3 up 

設定乙個網絡卡多個

ip的方法(在設定虛擬主機時有用到)

啟用網絡卡:

ifconfig eth0 up

關閉網絡卡:

ifconfig eth0 down

動態獲取ip:

ifconfig etho –dynamic

dhclient 修改

mac值:先關閉網絡卡:

ifconfig eth0 down

再修改mac值:

ifconfig eth0 hw ether 112233445566

再啟用網絡卡:

ifconfig eth0 up b

、netconfig

或者setup

,但只能設定

eth0網絡卡

c、neat

:開啟圖形視窗進行設定 d

、配置檔案設定:

vi etcsysconfignetwork-scriptsifcfg-eth0

注意:配置完後重啟網絡卡

service network restart

出現失敗時,用第四種方法檢查配置檔案中的

bootup

是否為none

,如果是

dhcp

一般會出錯的。 3

、配置閘道器:

檢視閘道器:

route

新增預設路由:

route add –net 0.0.0.0 netmask 0.0.0.0 gw 192.168.0.1

刪除預設路由:

route del –net 0.0.0.0 netmask 0.0.0.0 gw 192.168.0.1 4

、配置dns:

echo nameserver 192.168.0.1etcresolv.conf

linux

路由配置:

1、首先開啟路由功能

echo 1 procsysnetipv4ip_forward (

1為開啟路由功能,0為關閉路由功能)

(在這個實驗裡只要開啟路由功能就

ok了)

2、其它路由設定: a

、新增路由資訊:

route add –net 10.0.0.1 netmask 255.0.0.0 gw 192.168.0.1 或者

route add –net 10.0.0.1 netmask 255.0.0.0 dev eth0 (

通過本機的第乙個網絡卡出去)

刪除路由條目:只要把上面的

add改為

del就可以了 b

、用zebra

配置路由(配置就跟

cisco

的是一樣的命令):

1)設定登入密碼:

vi etczebrazebra.conf

password abc #

設定連線時的密碼

enable password 123 

#設定特權密碼

2)開啟服務

service zebra start

3)建立要配置的路由協議檔案 如用

rip協議:

touch etczebraripd.conf

4)開啟

rip協議:

service ripd start

5)進入

zebra: 

方法一、

telnet 127.0.0.1 2601

##記得埠是

2601

如果沒有設定密碼,預設情況下是不允許連線的,適合於遠端登入

方法二、

vtysh

##不用密碼也可以進入,如果有密碼還會顯示出來,但只適用於本地登入。

6)配置路由:就跟在

cisco

路由器裡是一樣的就略了7)退出

quit(

退出之前記得先儲存一下

)

網路 linux網路配置

zlm ubuntu sudo ifconfig eth0 192.168.1.109 netmask 255.255.255.0 broadcast 192.168.1.255 zlm ubuntu sudo route add del default gw 192.168.1.1 新增刪除閘道器...

linux配置 網路配置

ip位址,子網掩碼,閘道器 設定ip位址,子網掩碼並啟用 ifconfig eth0 10.192.77.250 netmask 255.255.255.0 up 注 ip,掩碼,閘道器都設定到 etc sysconfig network scripts ifcfg eth0裡面了。設定多ip 可以...

linux網路管理 Linux網路配置

1.1 linux配置ip位址 1 ifconfig命令臨時配置ip位址 能不能自動獲取ip位址和dns位址,要看有沒有dhcp伺服器 win10上,輸入ipconfig all 會看到是否有dhcp伺服器 ifconfig命令 對此命令更加詳細的解說 傳送門 2 setup工具永久配置ip位址 r...