Centos 6 6 網路配置

2021-07-09 07:22:44 字數 2530 閱讀 8790

ifconfig [網絡卡裝置名][引數]

1.開啟和關閉網絡卡

ifconfig eth0 up

ifconfig eth0 down

2.展示所有顯示卡裝置資訊-詳細

ifconfig -a

3.展示所有顯示卡裝置資訊-概要

ifconfig -s

例項說明

[chujie@localhost 桌面]$ ifconfig

eth0

link

encap:

ethernet

hwaddr00:

20:ed:11

:a4:e6

inet addr:

192.168.0.201

bcast

:192.168.0.255

mask

:255.255.255.0

inet6 addr:

fe80:

:220

:edff

:fe11

:a4e6/

64scope

:link

upbroadcast

running

multicast

mtu:

1500

metric:1

rxpackets:

22464

errors:

0dropped:

0overruns:

0frame:0tx

packets:

21675

errors:

0dropped:

0overruns:

0carrier:

0collisions:

0txqueuelen:

1000

rxbytes:

19738383 (18.8

mib) tx

bytes:

3310636 (3.1

mib)

lo link

encap:

local

loopback

inet addr:

127.0.0.1

mask

:255.0.0.0

inet6 addr:::

1/128

scope

:host

uploopback

running

mtu:

65536

metric:1

rxpackets:

8errors:

0dropped:

0overruns:

0frame:0tx

packets:

8errors:

0dropped:

0overruns:

0carrier:

0collisions:

0txqueuelen:0rx

bytes:

480 (480.0 b) tx

bytes:

480 (480.0 b)

eth0是第一塊顯示卡

ol是本機回還位址

說明 第一行:連線型別:ethernet(乙太網)hwaddr(硬體mac位址)

第二行:網絡卡的ip位址、子網、掩碼

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

第五、六行:接收、傳送資料報情況統計

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

配置檔案

設定ip的檔案

/etc/sysconfig/network-scripts

例項

device=eth0

hwaddr=00:20:ed:11:a4:e6

type=ethernet

uuid=b417c3cd-036b-4532-9cbe-9cb766b9e7e2

onboot=yes

nm_controlled=yes

bootproto=static

ipaddr=192.168.0.201

netmask=255.255.255.0

prefix=24

gateway=192.168.0.1

dns1=1.2.4.8

例項說明

device:裝置名稱(不修改)

hwaddr:網絡卡唯一標誌(不修改)

type:網路鏈結型別 ethernet 乙太網(不修改)

uuid:唯一標識(不修改)

onboot:開啟自啟 yes|no

bootproto:ip獲取方式 自動???|手動static

ipaddr:ip位址

netmask:子網掩碼

gateway;閘道器位址

dns1:dns位址 可以配置多個

CentOS 6 6 新安裝系統的網路IP配置

例項環境 ifconfig a 2.vi etc sysconfig network scripts ifcfg eth0 編輯網絡卡配置檔案 按i鍵開始進行配置 要修改的內容 標識 5 onboot no 修改為 onboot yes 是否隨系統啟動 標識 7 bootproto dhcp 修改為...

CentOS6 6下安裝配置nfs

目的 兩台centos虛擬機器相互之間傳輸檔案 其中一台開啟nfs服務,設定共享目錄,另一台對該目錄進行讀 寫操作 服務端 yum y install nfs utils rpcbind mkdir usr local test vi etc exports 增加一行 usr local test ...

Centos6 6搭建nginx服務及配置檔案詳解

nginx engine x 是乙個高效能 輕量級的http和反向 伺服器,也是乙個電子郵件 imap pop3 伺服器。nginx的最大優勢在於高負載情況下記憶體和cpu的低消耗 並且幾乎可以做到7 24不間斷執行,即使執行數個月也不需要重新啟動 在高連線併發的情況下,nginx是apache伺服...