修改主機名:
1)臨時修改主機名: xieqc.cn
#hostname xieqc.cn //只針對本次登陸有效
2)永久生效
#hostnamectl set-hostname xieqc.cn
3)影象化更改主機名
#nmtui
4)修改配置檔案
#vim /etc/hostname
//重啟後生效(永久生效)
修改網路配置:
1)修改網絡卡配置檔案
#vim /etc/sysconfig/network-scripts/ifcfg-eno16777736
type=ethernet
bootproto=static
onboot=yes
ipaddr=192.168.223.111
netmask=255.255.255.0 prefix=24
gateway=192.168.223.1
dns1=8.8.8.8
dns2=114.114.114.114
2)重啟網絡卡服務
#systemctl restart network
3)關閉防火牆:
#systemctl stop firewalld
程序:
#systemctl start/restart/stop/enable 程序名
#nmcli connection down eno16777736
#nmcli connection up eno16777736
//重啟網絡卡
檢視網絡卡資訊:
1)ifconfig
2)ip a s
Linux網路屬性配置 修改配置檔案
由於伺服器建立的虛擬機器都是由dhcp進行分配ip的,可是最近一次斷電重啟以後ip就變了,於是就要修改一下配置檔案。具體說明如下 type ethernet 介面型別,常見的有ethernet 乙太網 bridge 橋接介面 bootproto dhcp 啟用此介面使用什麼協議來配置介面屬性 dhc...
Linux中配置網路環境
在linux中配置網路環境主要有三種方法 1 使用setup進入配置環境來配置網路 2 使用ifconfig來配置網路 3 直接修改底層網路配置檔案 以下是詳細的實現方法 方法1 通過setup配置網路 1 用root身份登入,然後使用setup命令進入menuconfig,如圖1所示 2 然後選擇...
Linux中的網路配置
172.25.254.0 24 c類 172.25.254.0 16 b類 172.25.254.0 8 a類 記錄網路狀態 networkmanager 網路管理更加方便 1 nm connection editor 修改後不生效 ifconfig eth0 systemctl stop netw...