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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
Schneier on Security
Schneier on Security
H
Help Net Security
PCI Perspectives
PCI Perspectives
博客园 - 司徒正美
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Google Online Security Blog
Google Online Security Blog
V
Visual Studio Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
L
LINUX DO - 最新话题
GbyAI
GbyAI
IT之家
IT之家
TaoSecurity Blog
TaoSecurity Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
N
News and Events Feed by Topic
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
美团技术团队
T
Troy Hunt's Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
Cloudbric
Cloudbric
A
About on SuperTechFans
Recorded Future
Recorded Future
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志
H
Hacker News: Front Page
Forbes - Security
Forbes - Security
Webroot Blog
Webroot Blog
D
DataBreaches.Net
L
LangChain Blog
S
Schneier on Security
博客园_首页
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
N
News | PayPal Newsroom
Hacker News - Newest:
Hacker News - Newest: "LLM"
爱范儿
爱范儿
量子位
T
The Exploit Database - CXSecurity.com
博客园 - 【当耐特】
T
Threatpost
The Hacker News
The Hacker News
N
News and Events Feed by Topic
罗磊的独立博客
Spread Privacy
Spread Privacy
Hacker News: Ask HN
Hacker News: Ask HN

博客园 - 靖意风

使用QT 将可执行程序 进行打包 对使用的屏幕的整理 对mmc 设备进行分区 开发板启动时间优化 虚拟机下 安装 ubuntu 18.04 硬件基础知识__串口 字节对齐问题和 小端格式 在ubuntu下 编译23位的测试文件 31_了解 x6818开发板是 如何使用/dev/ttySAC0 进行打印log 10_linux dirver platform 框架 ubuntu24.04.02 下安装软件 记录 ubuntu 更新源 vmware 虚拟机的三种网卡 vmware 安装 ubuntu 24.04.02 07_linux 字符设备了解 04_kernel编程框架和 printk传参 05_使用linux内核的gpio库函数 03_uboot 命令整理 01_stm32 裸板程序 01_了解嵌入式开发
nmcli 设置网络配置
靖意风 · 2025-12-30 · via 博客园 - 靖意风

1> 查看设备和信息

nmcli device status
nmcli connection show
nmcli connection show --active
nmcli  -f  NAME,FILENAME connection show

2> 修改 connection-id
nmcli connection modify "Wired connection 1" connection.id net_eth0
nmcli connection modify "Wired connection 2" connection.id net_eth1

3> 通过connection-id 修改 等参数

nmcli connection modify net_eth0 ipv4.addresses "192.168.82.15/24"
nmcli connection modify net_eth0 ipv4.addresses "192.168.81.12/24" ipv4.gateway "192.168.81.1" ipv4.dns "8.8.8.8,1.1.1.1" ipv4.method manual 802-3-ethernet.speed 100 802-3-ethernet.duplex full 802-3-ethernet.auto-negotiate no

注意修改之后,需要重启才能生效
sudo nmcli connection down net_eth0
sudo nmcli connection up net_eth0

查看 脚本内容

# cat /etc/NetworkManager/system-connections/xx.nmconnection
[connection]
id=eth0-connection
uuid=d46876b6-14d7-4ef4-a7a2-d323fc66c695
type=ethernet
interface-name=eth0
permissions=
timestamp=1651364936

[ethernet]
mac-address-blacklist=

[802-3-ethernet]
speed=100
duplex=full
auto-negotiate=false


[ipv4]
address1=192.168.1.20/24
dns-search=
method=manual

[ipv6]
addr-gen-mode=stable-privacy
dns-search=
method=auto

[proxy]
#

4> 命令

ethtool -s eth0 autoneg off speed 1000 duplex full