hostname和網路設定

2021-08-03 22:44:50 字數 1528 閱讀 9827

1.修改主機名稱

[root@centos ~]# vim /etc/sysconfig/network

開啟檔案,修改以下內容並儲存(永久生效),需要重啟reboot

networking=yes   #使用網路  

hostname=centos #設定主機名稱

ntpserverargs=iburst

[root@centos ~]# hostname centos #立即生效,臨時生效

2.修改網絡卡

[root@centos ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0

開啟檔案,修改以下內容並儲存

device=eth0         #對應第一張網絡卡  

type=ethernet

onboot=yes          #是否啟動時執行

nm_controlled=yes

bootproto=static       #使用靜態ip,而不是由dhcp分配ip

defroute=yes

ipv4_failure_fatal=yes

ipv6init=no

name="system eth0"      #名稱

hwaddr=00:50:56:94:04:3c  #必須對應etho是的mac位址(/etc/udev/rules.d/70-persistent-net.rules)

peerdns=yes

peerroutes=yes

ipaddr=192.168.1.128    #指定本機ip位址

netmask=255.255.255.0    #指定子網掩碼

gateway=192.168.1.2     #指定閘道器

dns1=192.168.1.2

3.修改dns

[root@centos ~]# vim /etc/resolv.conf

開啟檔案,修改以下內容並儲存

nameserver

8.8.8.8

#google的dns伺服器

nameserver 192.168.1.2

#指定經路由器上指定的dns伺服器

4.重新啟動網路配置

[root@centos ~]#service network restart

5.重啟

[root@centos ~]#reboot

6.檢視當前ip設定

[root@centos ~]# ifconfig

7.測試是否連線外網

設定hostname並永久生效

原來我機器的網域名稱是wen.redhat,我使用如下命令設定網域名稱,hostname idp.example.com hostname idp.example.com 重啟計算機後,使用如下命令檢視,hostname wen.redhat hostname又變為開始的wen.redhat了。使用...

linux 靜態ip和hostname 修改

檢視當前機器使用的網絡卡名 ip addr如下圖 當前機器使用網絡卡是ens33 ls如下圖,修改ifcfg ens33 網絡卡名 vim ifcfg ens33新增紅框內容 bootproto static 代表靜態 ipaddr 192.168.1.55 要設定的位址 netmask 255.2...

VMWare網路拓撲解析和網路設定方法

參考資料 番外 基礎知識 交換機路由器 自行掃盲 原理 vmware workstation 一下簡稱vmware 與vmware server,支援vmnet0 vmnet9共10塊 虛擬 網絡卡,對於每一塊虛擬網絡卡來說 vmnet0 vmnet9 同一時刻只能選擇一種網路屬性 或者使用主機物理...