Files
notes_estom/Script/connect
2025-12-18 02:11:56 -05:00

11 lines
520 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 查看连接名称
nmcli connection show
# 修改连接为静态IP假设连接名为"Wired connection 1"
sudo nmcli connection modify "Wired connection 1" ipv4.addresses 192.168.1.17/24
sudo nmcli connection modify "Wired connection 1" ipv4.gateway 192.168.1.1
sudo nmcli connection modify "Wired connection 1" ipv4.dns "8.8.8.8"
sudo nmcli connection modify "Wired connection 1" ipv4.method manual
# 重启连接
sudo nmcli connection down "Wired connection 1" && sudo nmcli connection up "Wired connection 1"