centos網路配置例項

2021-08-01 23:18:17 字數 2290 閱讀 3833

nameserver 192.168.0.1 

nameserver 8.8.8.8

nameserver 8.8.4.4

這樣就把閘道器修改為192.168.1.1了,這種修改只是臨時的,當你重新啟動系統或網絡卡之後,還是會變回原來的閘道器。要想永久性修改,就要修改/etc/sysconfig/network這個檔案,這個檔案的主要內容如下(你的檔案中沒有的項,你可以手動新增):

networking=yes #表示系統是否使用網路,一般設定為yes。如果設為no,則不能使用網路。

hostname=centos #設定本機的主機名,這裡設定的主機名要和/etc/hosts中設定的主機名對應

gateway=192.168.1.1 #設定本機連線的閘道器的ip位址。

hwaddr=00:0c:29:8d:24:73

type=ethernet

bootproto=static  #啟用靜態ip位址

defroute=yes

peerdns=yes

peerroutes=yes

ipv4_failure_fatal=no

ipv6init=yes

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_peerdns=yes

ipv6_peerroutes=yes

ipv6_failure_fatal=no

name=eno16777736

uuid=ae0965e7-22b9-45aa-8ec9-3f0a20a85d11

onboot=yes  #開啟自動啟用網路連線

ipaddr0=192.168.21.128  #設定ip位址

prefixo0=24  #設定子網掩碼

gateway0=192.168.21.2  #設定閘道器

dns1=8.8.8.8  #設定主dns

dns2=8.8.4.4  #設定備dns

:wq!  #儲存退出

vim /etc/hostname #編輯配置檔案

www   #修改localhost.localdomain為www

vim /etc/hosts #編輯配置檔案

127.0.0.1   localhost  www   #修改localhost.localdomain為www

ip link set eth0 upi          # 開啟網絡卡

ip link set eth0 down         # 關閉網絡卡

service network restart

ip  [選項]  操作物件

# ip link show                  # 顯示網路介面資訊

# ip link set eth0 upi          # 開啟網絡卡

# ip link set eth0 down         # 關閉網絡卡

# ip link set eth0 promisc on   # 開啟網絡卡的混合模式

# ip link set eth0 promisc offi # 關閉網絡卡的混個模式

# ip link set eth0 txqueuelen 1200    # 設定網絡卡佇列長度

# ip link set eth0 mtu 1400     # 設定網絡卡最大傳輸單元

# ip addr show                  # 顯示網絡卡ip資訊

# ip addr add 192.168.0.1/24 dev eth0 # 設定eth0網絡卡ip位址192.168.0.1

# ip addr del 192.168.0.1/24 dev eth0 # 刪除eth0網絡卡ip位址

# ip route list                 # 檢視路由資訊

# ip route add 192.168.4.0/24  via  192.168.0.254 dev eth0 # 設定192.168.4.0網段的閘道器為192.168.0.254,資料走eth0介面

# ip route add default via  192.168.0.254  dev eth0    # 設定預設閘道器為192.168.0.254

# ip route del 192.168.4.0/24    # 刪除192.168.4.0網段的閘道器

# ip route del default    # 刪除預設路由

centos網路配置例項

在 etc sysconfig network scripts ifcfg eth0檔案中新增如下內容 device eth0 hwaddr 08 00 27 2a 82 43 type ethernet onboot yes mn controlled yes bootproto static b...

centos 網路配置

一 centos 修改ip位址 修改對應網絡卡的ip位址的配置檔案 vi etc sysconfig network scripts ifcfg eth0 device eth0 hwaddr 44 33 4c 00 18 98 type ethernet uuid 5d40d966 3bf9 4b...

CentOS配置網路

1 配置ip vim etc sysconfig network scripts ifcfg eth0 檔案不存在就建立乙個,名字為 ifcfg 具體網絡卡的命名 可以用ifconfig命令檢視,左邊顯示的就是 device eth0 物理裝置名 ipaddr 192.168.1.100 ip位址 ...