前言配置網路和主機名是rhcsa考試的第一題,2023年8月rhce,rhca考試都是用的8的系統。
破解root密碼是必會的,因為這個第一題也得需要你破解密碼後才能繼續做題。在rhce的考試中,網路必須要對,如果網路不對,基本上是0分。
問題配置網路
方法一: 修改現有的配置檔案
[root@rhce ~]
# nmcli connection modify "ens160" ipv4.addresses 192.168.1.66/24 ipv4.gateway 192.168.1.1 ipv4.dns 192.168.1.1
[root@rhce ~]
# nmcli c up "ens160"
連線已成功啟用(d-bus 活動路徑:/org/freedesktop/networkmanager/activeconnection/7)
[root@rhce ~]
# [root@rhce ~]
# ping 192.168.1.66
ping 192.168.1.66 (192.168.1.66) 56(84) bytes of data.
64 bytes from 192.168.1.66: icmp_seq=1 ttl=64 time=0.042 ms
方法二: 新增乙個新的配置檔案
[root@rhce ~]
# nmcli connection add con-name ens160 ifname ens160 type ethernet ipv4.addresses 192.168.1.68/24 ipv4.gateway 192.168.1.1 ipv4.dns 192.168.1.1
修改hostname[root@rhce ~]
# hostname
rhce
[root@rhce ~]
# hostnamectl set-hostname zmgash-rhce
[root@rhce ~]
# hostnamectl
static hostname: zmgash-rhce
icon name: computer-vm
chassis: vm
machine id: 03d1aac5d7bf41d3af83d652ea3d0aae
boot id: c2aee93d4af54a0b9e54285a4373907b
virtualization: vmware
operating system: red hat enterprise linux 8.0 (ootpa)
cpe os name: cpe:/o:redhat:enterprise_linux:8.0:ga
kernel: linux 4.18.0-80.el8.x86_64
architecture: x86-64
[root@rhce ~]
# hostname
zmgash-rhce
[root@rhce ~]
#
nmcli的用法[root@rhce ~]
# nmcli connection show ## 檢視當前網路裝置
name uuid type device
ens160 4fd526cf-b069-46e9-9e08-5b5b277c2abb ethernet ens160
virbr0 08dc5365-ba51-4f28-8346-0b29d779af64 bridge virbr0
ens160 292886e3-4c81-44f4-b7f5-151896aede85 ethernet --
static 54fe25cf-8033-4f0f-8c85-b08d69f82f10 ethernet --
static 0d5a86c6-1e11-4fb0-a94f-5728c91eba6d ethernet --
static 8e073a3f-47c2-422c-a144-594cec513ca1 ethernet --
static c25bbd5b-3456-44ca-b348-ba90c743c04b ethernet --
[root@rhce ~]
# nmcli c up ens160 ### 啟動ens160
連線已成功啟用(d-bus 活動路徑:/org/freedesktop/networkmanager/activeconnection/8)
[root@rhce ~]
# nmcli connection delete static ## 刪除static
成功刪除連線 "static"
(54fe25cf-8033-4f0f-8c85-b08d69f82f10)。
成功刪除連線 "static"
(0d5a86c6-1e11-4fb0-a94f-5728c91eba6d)。
成功刪除連線 "static"
(8e073a3f-47c2-422c-a144-594cec513ca1)。
成功刪除連線 "static"
(c25bbd5b-3456-44ca-b348-ba90c743c04b)。
[root@rhce ~]
#
redhat修改主機名和網路配置
1.通過命令修改主機名 只是起到臨時作用,要想起到永久作用需要步驟1,2,3。步驟4,5為網路配置,不涉及主機名的修改 hostname 檢視當前主機的主機名 hostname newhostname 臨時修改當前主機名 2.通過配置檔案修改主機名 vi etc sysconfig network ...
Linux網路環境配置 配置IP 主機名
ipconfig windows ifconfig linux 登入後,自動獲取ip,缺點明顯 每次自動獲取的ip可能不一樣 伺服器肯定要固定ip,例如自己設定為192.168.200.1 vi etc sysconfig network scripts ifcfg ens33 以文字開啟檔案,找到...
Linux網路 修改主機名
修改主機名只需要記住兩個配置檔案即可 etc sysconfig network etc hosts root localhost vim etc sysconfig network networking yes 表示啟用網路服務 hostname myhost 主機名,將其修改為myhost ro...