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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
P
Proofpoint News Feed
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
美团技术团队
D
Docker
博客园 - Franky
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

博客园 - 白马黑衣

网络安全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