惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
GbyAI
GbyAI
博客园_首页
V
Visual Studio Blog
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 叶小钗
腾讯CDC
博客园 - Franky
IT之家
IT之家
Google DeepMind News
Google DeepMind News
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

博客园 - 白马黑衣

网络安全3 - Easy RSA重新签发客户端证书 RHEL - 笔记本合盖不休眠 RHEL - yum cache JFrog Artifactory 系列6 --- 其他配置 Node.js - 配置npm Rocky Linux 升级失败 Nginx 系列2 --- 配置 Linux --- firewalld 2 - nfttables Linux - DNS Apache HTTP Server 关闭SELinux Linux --- 查看PID 判断端口是否已经被占用 Maven 常用命令 Jenkins 系列3 --- pipeline Git自签名证书的验证 iptables Jenkins 系列2 --- Node/Agent Jenkins 系列1 --- 安装与配置
RHEL - 设置hostname和IP地址
白马黑衣 · 2023-11-26 · via 博客园 - 白马黑衣

一、概要

1. 环境

Rocky Linux 9.3

二、配置

1. hostname

sudo hostnamectl set-hostname <hostname>

2. IP

(1) 找到当前网卡

GENERAL.DEVICE为当前网卡。

(2) 查看当前网卡信息

(3) 设置自动获取IP地址

su
nmcli con mod enp1s0 ipv4.gateway '' && nmcli con mod enp1s0 ipv4.address '' && nmcli con mod enp1s0 ipv4.method auto && nmcli con down enp1s0 && nmcli con up enp1s0

(4) 设置静态IP地址

su
nmcli con mod enp1s0 ipv4.gateway '192.168.28.1' && nmcli con mod enp1s0 ipv4.dns '192.168.28.1' && nmcli con mod enp1s0 ipv4.address '192.168.28.75' && nmcli con mod enp1s0 ipv4.method manual && nmcli con down enp1s0 && nmcli con up enp1s0

或:

sudo nmcli connection modify enp1s0 ipv4.method manual ipv4.address '192.168.28.77/24' ipv4.gateway '192.168.28.1' ipv4.dns '192.168.28.1'
sudo nmcli con down enp1s0 && sudo nmcli con up enp1s0

3. 测试

三、参考

https://docs.rockylinux.org/guides/network/basic_network_configuration/

https://developer-old.gnome.org/NetworkManager/stable/settings-ipv4.html