最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Ubuntu通過Netplan配置網(wǎng)絡(luò)教程

 更新時(shí)間:2023年10月31日 09:53:47   作者:小陳運(yùn)維  
這篇文章主要為大家介紹了Ubuntu通過Netplan配置網(wǎng)絡(luò)教程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪

Ubuntu 通過 Netplan 配置網(wǎng)絡(luò)教程

Ubuntu through Netplan configuration network tutorial

一、Netplan 配置流程

1. Netplan configuration process

1、Netplan默認(rèn)配置文件在/etc/netplan目錄下。您可以使用以下命令找到:

1. The default configuration file of Netplan is in the /etc/netplan directory. You can find it with the following command:

ls /etc/netplan/

就可以看到配置文件名稱。

You can see the configuration file name.

2、查看Netplan網(wǎng)絡(luò)配置文件的內(nèi)容,執(zhí)行以下命令:

2. View the contents of the Netplan network configuration file and execute the following command:

cat /etc/netplan/*.yaml

3、現(xiàn)在你需要在任何編輯器中打開配置文件: 由于我使用 vim 編輯器來編輯配置文件,所以我將運(yùn)行:

3. Now you need to open the configuration file in any editor: Since I use the vim editor to edit the configuration file, I will run:

vim /etc/netplan/*.yaml

根據(jù)您的網(wǎng)絡(luò)需要更新配置文件。對于靜態(tài) IP 尋址,添加 IP 地址、網(wǎng)關(guān)、DNS 信息,而對于動態(tài) IP 尋址,無需添加此信息,因?yàn)樗鼘?DHCP 服務(wù)器獲取此信息。使用以下語法編輯配置文件。

Update the configuration file according to your network needs. For static IP addressing, add IP address, gateway, DNS information, and for dynamic IP addressing, there is no need to add this information because it will get this information from the DHCP server. Use the following syntax to edit the configuration file.

4、在應(yīng)用任何更改之前,我們將測試配置文件。

4. We will test the configuration file before applying any changes.

sudo netplan try

如果沒有問題,它將返回配置接受消息。如果配置文件未通過測試,它將恢復(fù)為以前的工作配置。

If there is no problem, it will return a configuration acceptance message. If the configuration file fails the test, it will revert to the previous working configuration.

5、運(yùn)行以下命令來應(yīng)用新配置:

5. Run the following command to apply the new configuration:

sudo netplan apply

6、成功應(yīng)用所有配置后,通過運(yùn)行以下命令重新啟動 Network-Manager 服務(wù):

6. After successfully applying all the configurations, restart the Network-Manager service by running the following command:

如果是桌面版:

If it is the desktop version:

sudo systemctl restart system-networkd

如果您使用的是 Ubuntu 服務(wù)器,請改用以下命令:

If you are using an Ubuntu server, use the following command instead:

sudo systemctl restart network-manager

7、驗(yàn)證 IP 地址

7. Verify the IP address

ip a

二、Netplan 配置文件詳解

 Detailed explanation of Netplan configuration file

1、使用 DHCP:

1. Use DHCP:

network:
  version: 2
  renderer: networkd
  ethernets:
    enp3s0:
      dhcp4: true

2、使用靜態(tài) IP:

2. Use static IP:

network:
  version: 2
  renderer: networkd
  ethernets:
    enp3s0:
      addresses:
        - 10.0.0.10/8
      gateway4: 10.0.0.1
      nameservers:
          search: [mydomain, otherdomain]
          addresses: [10.0.0.5, 1.1.1.1]

3、多個(gè)網(wǎng)口 DHCP:

3. Multiple network ports DHCP:

network:
  version: 2
  ethernets:
    enred:
      dhcp4: yes
      dhcp4-overrides:
        route-metric: 100
    engreen:
      dhcp4: yes
      dhcp4-overrides:
        route-metric: 200

4、連接開放的 WiFi(無密碼):

4. Connect to open WiFi (without password):

network:
  version: 2
  wifis:
    wl0:
      access-points:
        opennetwork: {}
      dhcp4: yes

5、連接 WPA 加密的 WiFi:

5. Connect to WPA encrypted WiFi:

network:
  version: 2
  renderer: networkd
  wifis:
    wlp2s0b1:
      dhcp4: no
      dhcp6: no
      addresses: [10.0.0.10/8]
      gateway4: 10.0.0.1
      nameservers:
        addresses: [10.0.0.5, 8.8.8.8]
      access-points:
        "network_ssid_name":
          password: "**********"

6、在單網(wǎng)卡上使用多個(gè) IP 地址(同一網(wǎng)段):

6. Use multiple IP addresses on a single network card (same network segment):

network:
  version: 2
  renderer: networkd
  ethernets:
    enp3s0:
     addresses:
       - 10.0.0.10/8
       - 10.0.0.10/8
     gateway4: 10.0.0.1

7、在單網(wǎng)卡使用多個(gè)不同網(wǎng)段的 IP 地址:

7. Use multiple IP addresses of different network segments on a single network card:

network:
  version: 2
  renderer: networkd
  ethernets:
    enp3s0:
     addresses:
       - 9.0.0.9/24
       - 10.0.0.10/24
       - 11.0.0.11/24
     #gateway4:    # unset, since we configure routes below
     routes:
       - to: 0.0.0.0/0
         via: 9.0.0.1
         metric: 100
       - to: 0.0.0.0/0
         via: 10.0.0.1
         metric: 100
       - to: 0.0.0.0/0
         via: 11.0.0.1
         metric: 100

以上就是Ubuntu通過Netplan配置網(wǎng)絡(luò)教程的詳細(xì)內(nèi)容,更多關(guān)于Ubuntu Netplan配置網(wǎng)絡(luò)的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

最新評論

三亚市| 勃利县| 曲麻莱县| 鄢陵县| 榆树市| 迁西县| 淳化县| 宁陕县| 贡嘎县| 辉县市| 卢湾区| 丹巴县| 石狮市| 奈曼旗| 营山县| 金华市| 淳化县| 巢湖市| 泾源县| 阜宁县| 墨玉县| 西峡县| 苗栗县| 海林市| 鄂州市| 青铜峡市| 永康市| 习水县| 阿尔山市| 淮滨县| 思南县| 庄浪县| 灌云县| 临颍县| 广水市| 措美县| 丰原市| 观塘区| 镇宁| 新晃| 新乐市|