91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux命令ifconfig的詳細解釋

發布時間:2021-09-01 16:22:20 來源:億速云 閱讀:805 作者:chen 欄目:關系型數據庫

這篇文章主要講解了“linux命令ifconfig的詳細解釋”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“linux命令ifconfig的詳細解釋”吧!

許多windows非常熟悉ipconfig命令行工具,它被用來獲取網絡接口配置信息并對此進行修改。Linux系統擁有一個類似的工具,也就是ifconfig(interfaces config)。通常需以root身份登錄或使用sudo以便Linux機器上使用ifconfig工具。依賴于ifconfig命令中使用些選項屬性,ifconfig工具不僅可以被用來簡單地獲取網絡接口配置信息,還可以修改這些配置。

1.命令格式:

ifconfig [網絡設備] [參數]

2.命令功能:

ifconfig 命令用來查看和配置網絡設備。當網絡環境發生改變時可通過此命令對網絡進行相應的配置

3.命令參數:
   


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.0
          UP 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:網卡的代號。

Link encap(encapsulation [inkpsju'lein;inkps'lein] n. 封裝,包裝,密封):Ethernet 以太網。
HWaddr:網卡的硬件地址,習慣稱為MAC。
inet addr:IPv4的IP地址,后續的Bcast、Mask分別代表的是Broadcast和Netmask。
inet6 addr:是IPv6的版本的IP,我們沒有使用,所以略過  scope:域
RX:那一行代表的是網絡由啟動到目前為止的數據包接收情況,packets代表數據包數、errors代表數據包發生錯誤的數量、dropped代表數據包由于有問題而遭丟棄的數量等。
TX:和RX相反,為網絡由啟動到目前為止的傳送情況。
collisions:代表數據包碰撞的情況,如果發生太多次,表示你的網絡狀況不太好。
txqueuelen:代表用來傳輸數據的緩沖區的儲存長度。
RX Bytes、TX Bytes:總傳送、接收的字節總量。
Interrupt、Memory:網卡硬件的數據,IRQ岔斷和內存地址。
通過觀察上述的資料,大致上能了解到你的網絡情況,尤其是RX、TX內的error數量,及是否發生嚴重的collision情況,都是需要注意的。

說明:

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網站了。但只是您能看得到,局域網的其它主機或用戶無從知道。

第一行:連接類型:Ethernet(以太網)HWaddr(硬件mac地址)

第二行:網卡的IP地址、子網、掩碼

第三行:UP(代表網卡開啟狀態)RUNNING(代表網卡的網線被接上)MULTICAST(支持組播)MTU:1500(最大傳輸單元):1500字節

第四、五行:接收、發送數據包情況統計

第七行:接收、發送數據字節數統計信息。


實例2:啟動關閉指定網卡

命令:

ifconfig eth0 up

ifconfig eth0 down

輸出:

說明:

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

 

 

實例3:為網卡配置和刪除IPv6地址

命令:

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服務器操作要小心,關閉了就不能開啟了,除非你有多網卡。

 

實例4:用ifconfig修改MAC地址

命令:

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.0
          UP 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.0
          UP 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) 

說明:

 

 

實例5:配置IP地址

命令:

 

輸出:

 

[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 

給eth0網卡配置IP地址192.168.120.56 并加上子掩碼255.255.255.0

ifconfig eth0 192.168.120.56 netmask 255.255.255.0 broadcast 192.168.120.255

/給eth0網卡配置IP地址192.168.120.56加上子掩碼255.255.255.0加上個廣播地址 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.0
          UP 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.0
          UP 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命令配置的網卡信息,在網卡重啟后機器重啟后,配置就不存在。要想將上述的配置信息永遠的存的電腦里,那就要修改網卡的配置文件了。

感謝各位的閱讀,以上就是“linux命令ifconfig的詳細解釋”的內容了,經過本文的學習后,相信大家對linux命令ifconfig的詳細解釋這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

多伦县| 和林格尔县| 烟台市| 连平县| 康平县| 闽侯县| 温州市| 桦川县| 克拉玛依市| 邢台市| 忻州市| 紫云| 英山县| 宁化县| 石景山区| 措美县| 漳平市| 延边| 福清市| 栾城县| 大埔县| 天津市| 景德镇市| 巴楚县| 敦化市| 万源市| 手机| 慈溪市| 宿松县| 铜陵市| 惠安县| 高青县| 潮州市| 博兴县| 肥东县| 农安县| 威信县| 信阳市| 南和县| 墨脱县| 太康县|