nmcli 新增 修改 刪除 關閉會話

2021-09-22 20:02:09 字數 1006 閱讀 1753

markdown.nmcli connection 查詢會話

nmcli:網路管理命令字;connection :連線,會話

2.nmcli connection delete con-mane 刪除乙個會話

delete:刪除 con_name:會話名字

例:nmcli connection delete ens33

3.nmcli connection add type ethernet con-name ens33 ifname ens33 新增乙個會話

type ethernet 網路型別是乙太網 con_ens33:會話名字 網絡卡裝置名:ifname:ens33

4.nmcli connection modify con-name ipv4.address ip/netmask 給會話新增ip位址

例: nmcli connection modify ens33 ipv4.addresses 192.168.8.3/24

5.nmcli connection modify con-name ipv4.gateway ip 給會話新增閘道器

例:nmcli connection modify ens33 ipv4.gateway 192.168.8.1

6.nmcli connection modify con-name ipv4.dns ip 給會話提阿尼啊dns伺服器位址

例:nmcli connection modify ens33 ipv4.dns 144.144.144.144

7.nmcli connection modify ens33 ipv4.method manual 儲存配置

8.nmcli connection up ens33 啟用會話

9.nmcli connection down ens33 關閉會話編輯器

你好! 這是你第一次使用markdown編輯器所展示的歡迎頁。如果你想學習如何使用markdown編輯器, 可以仔細閱讀這篇文章,了解一下markdown的基本語法知識。

sql 新增 修改 刪除 約束

1.向表中新增新的字段 alter table table name add column name varchar2 20 not null 2.刪除表中的乙個字段 alter table table name drop column column name 3.修改表中的乙個欄位名 alter ...

linux 新增 修改 刪除路由

在日常的使用中,或者在伺服器中,有兩個網絡卡配置兩個位址,訪問不同的網路段,這種情況是非常常見的現象,但是,我們需要額外的新增路由表來決定傳送的資料報經過正確的閘道器和inte ce才能正確的進行通訊 route root ubuntu route kernel ip routing table d...

oracle 新增 修改 刪除字段

新增欄位的語法 alter table tablename add column datatype default value null not null 修改欄位的語法 alter table tablename modify column datatype default value null ...