linu怎麼設定ip子網掩碼和閘道器

2022-02-16 11:03:52 字數 7609 閱讀 5691

1樓:匿名使用者

linux一般使用ifconfig命令修改linux主機的ip、閘道器或子網掩碼。

1.命令格式:

ifconfig [網路裝置] [引數]

2.命令功能:

ifconfig 命令用來檢視和配置網路裝置。當網路環境發生改變時可通過此命令對網路進行相應的配置。

3.命令引數:

up 啟動指定網路裝置/網絡卡。

down 關閉指定網路裝置/網絡卡。該引數可以有效地阻止通過指定介面的ip資訊流,如果想永久地關閉一個介面,我們還需要從核心路由表中將該介面的路由資訊全部刪除。

arp 設定指定網絡卡是否支援arp協議。

-promisc 設定是否支援網絡卡的promiscuous模式,如果選擇此引數,網絡卡將接收網路中發給它所有的資料包

-allmulti 設定是否支援多播模式,如果選擇此引數,網絡卡將接收網路中所有的多播資料包

-a 顯示全部介面資訊

-s 顯示摘要資訊(類似於 netstat -i)

add 給指定網絡卡配置ipv6地址

del 刪除指定網絡卡的ipv6地址

《硬體地址》 配置網絡卡最大的傳輸單元

mtu《位元組數》 設定網絡卡的最大傳輸單元 (bytes)

netmask《子網掩碼》 設定網絡卡的子網掩碼。掩碼可以是有字首0x的32位十六進位制數,也可以是用點分開的4個十進位制數。如果不打算將網路分成子網,可以不管這一選項;如果要使用子網,那麼請記住,網路中每一個系統必須有相同子網掩碼。

tunel 建立隧道

dstaddr 設定一個遠端地址,建立點對點通訊

-broadcast《地址》 為指定網絡卡設定廣播協議

multicast 為網絡卡設定組播標誌

address 為網絡卡設定ipv4地址

txqueuelen《長度》 為網絡卡設定傳輸列隊的長度

4.使用例項:

例項1:顯示網路裝置資訊(啟用狀態的)

命令:ifconfig

輸出:[root@localhost ~]# ifconfig

eth0 link encap:ethernet hwaddr 00:50:56:bf:26:20

inet addr:192.168.

120.204 bcast:192.

168.120.255 mask:

255.255.255.

0up broadcast running multicast mtu:1500 metric:1

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

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

collisions:0 txqueuelen:1000

rx bytes:596390239 (568.7 mib) tx bytes:2886956 (2.7 mib)

lo link encap:local loopback

inet addr:127.0.0.1 mask:255.0.0.0

up loopback running mtu:16436 metric:1

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

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

collisions:0 txqueuelen:0

rx bytes:2856 (2.7 kib) tx bytes:2856 (2.7 kib)

說明:eth0 表示第一塊網絡卡, 其中 hwaddr 表示網絡卡的實體地址,可以看到目前這個網絡卡的實體地址(mac地址)是 00:50:56:bf:26:20

inet addr 用來表示網絡卡的ip地址,此網絡卡的 ip地址是 192.168.120.

204,廣播地址, bcast:192.168.

120.255,掩碼地址mask:255.

255.255.0

lo 是表示主機的回壞地址,這個一般是用來測試一個網路程式,但又不想讓區域網或外網的使用者能夠檢視,只能在此臺主機上執行和檢視所用的網路介面。比如把 httpd伺服器的指定到回壞地址,在瀏覽器輸入 127.0.

0.1 就能看到你所架web**了。但只是您能看得到,區域網的其它主機或使用者無從知道。

第三行:up(代表網絡卡開啟狀態)running(代表網絡卡的網線被接上)multicast(支援組播)mtu:1500(最大傳輸單元):1500位元組

第四、五行:接收、傳送資料包情況統計

第七行:接收、傳送資料位元組數統計資訊。

例項2:啟動關閉指定網絡卡

命令:ifconfig eth0 up

ifconfig eth0 down

輸出:說明:

ifconfig eth0 up 為啟動網絡卡eth0 ;ifconfig eth0 down 為關閉網絡卡eth0。ssh登陸linux伺服器操作要小心,關閉了就不能開啟了,除非你有多網絡卡。

命令:ifconfig eth0 add 33ffe:3240:800:1005::2/64

ifconfig eth0 del 33ffe:3240:800:1005::2/64

輸出:說明:

ifconfig eth0 add 33ffe:3240:800:1005::2/64 為網絡卡eth0配置ipv6地址;

ifconfig eth0 add 33ffe:3240:800:1005::2/64 為網絡卡eth0刪除ipv6地址;

練習的時候,ssh登陸linux伺服器操作要小心,關閉了就不能開啟了,除非你有多網絡卡。

命令:ifconfig eth0 hw ether 00:aa:bb:cc:dd:ee

輸出:[root@localhost ~]# ifconfig eth0 down //關閉網絡卡

[root@localhost ~]# ifconfig eth0 hw ether 00:aa:bb:cc:dd:ee //修改mac地址

[root@localhost ~]# ifconfig eth0 up //啟動網絡卡

[root@localhost ~]# ifconfig

eth0 link encap:ethernet hwaddr 00:aa:bb:cc:dd:ee

inet addr:192.168.

120.204 bcast:192.

168.120.255 mask:

255.255.255.

0up broadcast running multicast mtu:1500 metric:1

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

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

collisions:0 txqueuelen:1000

rx bytes:596390239 (568.7 mib) tx bytes:2886956 (2.7 mib)

lo link encap:local loopback

inet addr:127.0.0.1 mask:255.0.0.0

up loopback running mtu:16436 metric:1

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

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

collisions:0 txqueuelen:0

rx bytes:2856 (2.7 kib) tx bytes:2856 (2.7 kib)

[root@localhost ~]# ifconfig eth0 hw ether 00:50:56:bf:26:20 //關閉網絡卡並修改mac地址

[root@localhost ~]# ifconfig eth0 up //啟動網絡卡

[root@localhost ~]# ifconfig

eth0 link encap:ethernet hwaddr 00:50:56:bf:26:20

inet addr:192.168.

120.204 bcast:192.

168.120.255 mask:

255.255.255.

0up broadcast running multicast mtu:1500 metric:1

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

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

collisions:0 txqueuelen:1000

rx bytes:596390239 (568.7 mib) tx bytes:2886956 (2.7 mib)

lo link encap:local loopback

inet addr:127.0.0.1 mask:255.0.0.0

up loopback running mtu:16436 metric:1

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

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

collisions:0 txqueuelen:0

rx bytes:2856 (2.7 kib) tx bytes:2856 (2.7 kib)

說明:命令:

輸出:[root@localhost ~]# ifconfig eth0 192.168.120.56

[root@localhost ~]# ifconfig eth0 192.168.120.56 netmask 255.255.255.0

[root@localhost ~]# ifconfig eth0 192.168.120.

56 netmask 255.255.255.

0 broadcast 192.168.120.

255說明:

ifconfig eth0 192.168.120.56

給eth0網絡卡配置ip地:192.168.120.56

ifconfig eth0 192.168.120.56 netmask 255.255.255.0

ifconfig eth0 192.168.120.

56 netmask 255.255.255.

0 broadcast 192.168.120.

255例項6:啟用和關閉arp協議

命令:ifconfig eth0 arp

ifconfig eth0 -arp

輸出:[root@localhost ~]# ifconfig eth0 arp

[root@localhost ~]# ifconfig eth0 -arp

說明:ifconfig eth0 arp 開啟網絡卡eth0 的arp協議;

ifconfig eth0 -arp 關閉網絡卡eth0 的arp協議;

例項7:設定最大傳輸單元

命令:ifconfig eth0 mtu 1500

輸出:[root@localhost ~]# ifconfig eth0 mtu 1480

[root@localhost ~]# ifconfig

eth0 link encap:ethernet hwaddr 00:50:56:bf:26:1f

inet addr:192.168.

120.203 bcast:192.

168.120.255 mask:

255.255.255.

0up broadcast running multicast mtu:1480 metric:1

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

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

collisions:0 txqueuelen:1000

rx bytes:597062089 (569.4 mib) tx bytes:2643973 (2.5 mib)

lo link encap:local loopback

inet addr:127.0.0.1 mask:255.0.0.0

up loopback running mtu:16436 metric:1

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

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

collisions:0 txqueuelen:0

rx bytes:518096 (505.9 kib) tx bytes:518096 (505.9 kib)

[root@localhost ~]# ifconfig eth0 mtu 1500

[root@localhost ~]# ifconfig

eth0 link encap:ethernet hwaddr 00:50:56:bf:26:1f

inet addr:192.168.

120.203 bcast:192.

168.120.255 mask:

255.255.255.

0up broadcast running multicast mtu:1500 metric:1

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

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

collisions:0 txqueuelen:1000

rx bytes:597072333 (569.4 mib) tx bytes:2650581 (2.5 mib)

lo link encap:local loopback

inet addr:127.0.0.1 mask:255.0.0.0

up loopback running mtu:16436 metric:1

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

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

collisions:0 txqueuelen:0

rx bytes:518096 (505.9 kib) tx bytes:518096 (505.9 kib)

[root@localhost ~]#

說明:設定能通過的最大資料包大小為 1500 bytes

備註:用ifconfig命令配置的網絡卡資訊,在網絡卡重啟後機器重啟後,配置就不存在。要想將上述的配置資訊永遠的存的電腦裡,那就要修改網絡卡的配置檔案了。

IP子網掩碼作用子網掩碼的作用???

子網掩碼不能單獨存在,它必須結合ip地址一起使用。子網掩碼只有一個作用,就是將某個ip地址劃分成網路地址和主機地址兩部分。ip地址的長度為32位,分為4段,每段8位,用十進位制數字表示,每段數字範圍為0 255,段與段之間用句點隔開。例如159.226.1.1。ip地址有兩部分組成,一部分為網路地址...

子網掩碼ip計算題,子網掩碼 IP計算題

對樓上無語。借地址部分的前三位作為子網位,則子網掩碼變為11111111 11111111 11111111 11100000 即255.255.255.224 這樣一個c類網路可以被劃分為8個子網,每個子網下可以有2 8 3 2 30個ip地址,符合要求。第一個子網的網路號是203.66.77.0...

ip地址10101010子網掩碼

沒有屬於哪一類的問題,類ip經過子 網劃分,使用的不是標準類ip的子網掩碼,那內麼就不是容標準的類ip,就沒有屬於哪一類的說法。就好比你不知道一個孩子的性別,問 是處男還是 但是這個孩子已經 了,就沒有什麼處男 的問題了,已經不是標準的處了。已經不是標準的類ip,經過了子網劃分,所以沒有判斷屬於哪一...