將多個 IP 位址指派給 VM

资讯 2024-07-13 阅读:48 评论:0
文章03/28/2024...
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

Azure 虛擬機器 (VM) 可連接一或多個網路介面 (NIC)。 任何 NIC 都可以獲派一或多個靜態或動態公用及私人 IP 位址。

The Azure Virtual Machine (VM) can connect one or more Internet interfaces (NICs). Any NIC can be assigned one or more static or dynamic public and private IP addresses.

將多個 IP 位址指派給 VM 可啟用下列功能:

Assign multiple IP addresses to VM to enable the following functions:

  • 在單一伺服器上,以不同的 IP 位址和 TLS/SSL 憑證裝載多個網站或服務。

    On a single server, multiple websites or services are loaded with different IP addresses and TLS/SSL certificates.

  • 做為網路虛擬設備,例如防火牆或負載平衡器。

    As virtual devices for the network, such as firewalls or load balances.

  • 能夠將任何 NIC 的任何私人 IP 位址新增到 Azure Load Balancer 後端集區。 在過去,只能將主要 NIC 的主要 IP 位址新增到後端集區。 如需針對多個 IP 組態進行負載平衡的詳細資訊,請參閱針對多個 IP 組態進行負載平衡

    Any private IP address for NIC can be added to the Azure Road Balancer backend. In the past, only the main IP address for NIC can be added to the back end. For detailed information on the load balance for multiple IP configurations, see

連接到 VM 的每個 NIC 皆有一或多個 IP 組態與其相關聯。 每個組態會獲派一個靜態或動態私人 IP 位址。 每個組態可能也會有一個關聯的公用 IP 位址資源。 若要深入了解 Azure 中的 IP 位址,請參閱 Azure 中的 IP 位址

Each NIC that receives VM has one or more IP combinations associated with it. Each configuration will be assigned a static or dynamic private IP address. Each configuration may also have a related IP address resource. For more information about IP addresses in Azure, please refer to the IP address in Azure .

注意

Attention.

單一 NIC 上的所有 IP 設定都必須關聯至相同的子網路。 如果需要不同子網路上的多個 IP,則可在 VM 上使用多個 NIC。 若要深入了解 Azure 中 VM 上的多個 NIC,請參閱建立具有多個 NIC 的 VM

All IP settings on a single NIC must be linked to the same sub-network. If multiple IPs on different sub-networks are needed, several NICs can be used on VM. For more information on VM, see .

可以指派給一個 NIC 的私人 IP 位址數目有所限制。 Azure 訂用帳戶中可以使用的公用 IP 位址數目也有限制。 如需詳細資訊,請參閱 Azure 限制

There are limits to the number of private IP addresses that can be assigned to an NIC. There are also limits to the number of IP addresses available in the Azure subscription account. For more detailed information, please refer to Azure restrictions .

本文說明如何使用 Azure CLI 對虛擬機器指派多個 IP 位址。

This post describes how Azure CLI can be used to assign multiple IP addresses to virtual machines.

  • 本教學課程需要 2.0.28 版或更新版本的 Azure CLI。 如果您是使用 Azure Cloud Shell,就已安裝最新版本。

注意

Attention.

雖然本文中的步驟會將所有 IP 組態指派給單一 NIC,您也可以指派多個 IP 組態給多個 NIC VM 中的任何 NIC。 若要了解如何建立具有多個 NIC 的 VM,請參閱建立具有多個 NIC 的 VM

Although the steps in this paper assign all IP configurations to a single NIC, you can also assign multiple IP configurations to any NIC VM. For information on how to build a VM with multiple NICs, see .

Diagram of network configuration resources created in How-to article.

圖:此操作說明一文中建立的網路設定資源圖表。

: This operation describes a list of network settings created in the text.

Azure 資源群組是在其中部署與管理 Azure 資源的邏輯容器。

The Azure resource group is the logical container for deploying and managing the Azure resource.

使用 az group createeastus2 位置中建立名為 myResourceGroup 的資源群組。

Use to create a resource group named myResourceGroup.



在本節中,您會為虛擬機器建立虛擬網路。

In this section you will create virtual networks for virtual machines.

使用 az network vnet create 建立虛擬網路。

Create virtual networks using .



使用 az network public-ip create 來建立兩個公用 IP 位址。

Use az network public-ip place to create two common IP addresses.



在本節中,您會為虛擬機器和虛擬網路建立網路安全性群組。

In this section, you will create network security groups for virtual machines and virtual networks.

使用 az network nsg create 來建立網路安全性群組。

Use .



您會建立規則允許以 SSH 連線到虛擬機器連接埠 22。

You will set the rules to allow SSH to connect to the 22nd port of the virtual machine.

使用 az network nsg rule create 來建立網路安全性群組規則。

Use .



您將使用 az network nic create 來建立虛擬機器的網路介面。 先前建立的公用 IP 位址和 NSG 會與 NIC 相關聯。 網路介面會附加至您先前建立的虛擬網路。

You will use az network nic Create to create virtual machine interfaces. The previously created IP address and NSG will be associated with NC. The Internet interface will be attached to the virtual network you have previously created.



使用 az network nic ip-config create 來建立 NIC 的次要私人和公用 IP 設定。 將 10.1.0.5 取代為您的次要私人 IP 位址。

Use to create a secondary private and public IP setup for NIC. Replace 10.0.5 with your secondary private IP address.



使用 az network nic ip-config create 來建立 NIC 的第三個私人 IP 設定。 將 10.1.0.6 取代為您的次要私人 IP 位址。

Use to create the third private IP setup for NIC. Replace 10.1.0.6 with your secondary private IP address.


注意

Attention.

新增靜態 IP 位址時,您必須在 NIC 所連接的子網路上指定未使用的有效位址。

When adding a static IP address, you must specify an unused valid address on the NIC-connected subnetwork.

使用 az vm create 建立虛擬機器。

Creates a virtual machine using .



警告

This function is EXPERIMENTAL.

本文參考 CentOS,這是即將結束生命週期 (EOL) 狀態的 Linux 發行版本。 請據以考慮您的使用方式和規劃。

This document refers to CentOS, the Linux release version of which is about to end the life cycle (EOL). Please consider how and how you use it.

連線並登入您使用多個私人 IP 位址建立的 VM。 您必須手動新增您新增至 VM 的所有私人 IP 位址,包括主要位址。 對您的 VM 作業系統完成下列步驟。

Connect and log into the VM that you have created using several private IP addresses. You must manually add all private IP addresses that you have newly added to VM, including the main address. The following steps have been completed for your VM production system.

展開
  1. 請開啟命令提示字元或 PowerShell。

    Opens the command hint character or PowerShell.

  2. 在命令列上輸入 。 您會看到透過 DHCP 指派的主要私人 IP 位址。

    Enter on the command line. You will see the primary

  3. 在命令列上輸入 以開啟 [網路連線] 組態。

    Enter on the command line to open the [network connection] configuration.

  4. 開啟指派新 IP 位址之網路介面卡的 [屬性]

    Opens the [property] of the network interface card that assigns a new IP address.

  5. 按兩下 [網際網路通訊協定第 4 版 (TCP/IPv4)]

    Press 2 (TCP/IPv4) .

  6. 選取 [使用下列的 IP 位址:]。 輸入下列值。

    Select [use the following IP address: . Enter the following value.

    設定
    IP 位址 輸入主要 私人 IP 位址。
    子網路遮罩: 根據您的 IP 位址輸入子網路遮罩。
    例如,如果子網路為 /24 子網路,則子網路遮罩為 255.255.255.0
    預設閘道: 子網路中的第一個 IP 位址。
    如果您的子網路為 10.0.0.0/24,則閘道 IP 位址為 10.0.0.1
  7. 選取 [使用下列的 DNS 伺服器位址]。 輸入下列值。

    Select [Use the address of the following DNS server] . Enter the following values.

    設定
    慣用 DNS 伺服器: 輸入您的主要 DNS 伺服器。
    輸入 IP 位址 168.63.129.16 以使用 Azure 提供的預設 DNS。
  8. 選取 [進階] 按鈕。

    Select [Progress] button.

  9. 選取 [新增]。

    Select [add].

  10. 輸入您新增至 Azure 網路介面的私人 IP 位址。 輸入對應的子網路遮罩。 選取 [新增]。

    Enter the private IP address that you have added to the Azure network interface. Enter the corresponding sub-network mask. Select [add]

  11. 重複上述步驟,以新增您新增至 Azure 網路介面的任何其他私人 IP 位址。

    Repeats the above step to add any other private IP address that you have added to the Azure network interface.

重要

Important

請勿手動指派在虛擬機器作業系統內已指派給 Azure 虛擬機器的公用 IP 位址。 當您手動設定作業系統內的 IP 位址時,請確保其位址與指派給 Azure 網路介面的私人 IP 位址相同。 無法正確指派位址可能會導致虛擬機器的連線中斷。 如需詳細資訊,請參閱變更 IP 位址設定

Do not manually assign IP addresses that have been assigned to Azure virtual machines in the virtual machine system. When you customize IP addresses in the operating system, make sure that their addresses are the same as the private IP addresses assigned to the Azure network interface. Unable to assign addresses may cause virtual machine connections to be interrupted. For details, refer to .

如需私人 IP 位址的詳細資訊,請參閱私人 IP 位址

For more information about a private IP address, please refer to .

  1. 選取 [確定] 以關閉次要 IP 位址設定。

    Select [sure] to close the secondary IP address settings.

  2. 選取 [確定] 以關閉介面卡設定。 您的 RDP 連線將會重建。

    Select [solutely] to close the interface card settings. Your RDP connection will be re-established.

  3. 請開啟命令提示字元或 PowerShell。

    Opens the command hint character or PowerShell.

  4. 在命令列上輸入

    Enter on the command bar .

  5. 確認主要和次要私人 IP 位址已新增至組態。

    Confirm that the primary and secondary private IP address has been added to the configuration.

    
    
  6. 確定 Windows 中使用的主要私人 IP 位址與 Azure VM 網路介面的主要 IP 位址相同。 如需詳細資訊,請參閱從具有多個 IP 位址的 Azure Windows VM 無權存取網際網路

    Determines that the main private IP address used by Windows is the same as the main IP address of the Azure VM network interface. For more detailed information, please refer to .

驗證 (Windows Server)

若要驗證透過公用 IP 從次要 IP 組態連線到網際網路的連線能力,請使用下列命令。 將 10.1.0.5 取代為您新增至 Azure VM 網路介面的次要私人 IP 位址。

Use the following command to verify the ability to connect using IP from secondary IP configuration to the Internet. Replace the secondary private IP address with the Azure VM network interface by 10.1.0.5.


注意

Attention.

對於次要 IP 組態,如果組態有與其相關聯的公用 IP 位址,您可以 Ping 網際網路。 對於主要 IP 組態,公用 IP 位址不需要 Ping 網際網路。

For secondary IP configurations, if the configuration has a public IP address associated with it, you can use the Ping network. For the main IP configuration, the public IP address does not need the Ping network.

展開 以 SUSE 為基礎的散發套件會使用來自 套件的 外掛程式來管理其他 IP 位址。 系統管理員不需要手動設定。 平台上設定之介面的第一個 IP 位址是透過 DHCP 指派。 cloud-netconfig 外掛程式接著會持續 (每分鐘一次) 探查 Azure Instance Metadata Service API,以取得指派給介面的其他 IP 位址,並自動將它們新增/移除為次要 IP 位址。

根據預設,應該在新影像上安裝並啟用此外掛程式。 您可以在這裡找到舊工作負載的設定步驟:https://www.suse.com/c/multi-nic-cloud-netconfig-ec2-azure/

By default, the plugin should be installed and enabled on the new image. Here you can find the settings for the old work load: .

展開

我們建議您查看 Linux 散發套件的最新文件。

We suggest that you view the latest file of the Linux Distribute Package.

  1. 開啟終端機視窗。

    Opens the terminal window.

  2. 請確定您是根使用者。 如果不是,請輸入下列命令:

    Make sure you are root user. If not, enter the following command:

    
    
  3. 更新網路介面 (假設為 ‘eth0’) 的組態檔。

    Updates the configuration of the network interface (supposing `eth0').

    • 保留針對 dhcp 的現有行。 主要 IP 位址的設定仍然與先前一樣。

      Keeps the current line for dhcp. The main IP address remains the same as before.

    • 使用下列命令,新增其他靜態 IP 位址的組態︰

      Add another static IP address configuration using the following command:

      
      

      您應該會看到一個 .cfg 檔案。

      You should see a.cfg file.

  4. 開啟 檔案。 您應該會在檔案結尾看到下列這幾行:

    Open the file. You should see the following lines at the end of the file:

    
    
  5. 在檔案已有的幾行後面加入下列這幾行。 將 取代為您的私人 IP 位址和子網路遮罩。

    Add the following lines to the existing lines of the file. Replace with your private IP address and subnetwork mask.

    
    

    若要新增其他私人 IP 位址,請編輯檔案,並在後續幾行新增新的私人 IP 位址:

    To add another private IP address, edit the file and add a new private IP address in subsequent rows:

    
    
  6. 使用下列命令儲存檔案︰

    Save files using the following command:..

    
    
  7. 使用下列命令重設網路介面︰

    Reset the network interface with the following command:

    
    

    重要

    Important

    如果使用遠端連線,請在同一行中同時執行 ifdown 和 ifup。

    If you use remote connections, execute ifdown and ifup simultaneously in the same line.

  8. 使用下列命令確認 IP 位址已加入網路介面︰

    Could not close temporary folder: %s

    
    

    您應該會在清單中看到您加入的 IP 位址。 範例:

    You should see the IP address you joined in the list. Example:

    
    

驗證 (Ubuntu 14/16)

若要確保您能夠透過相關聯的公用 IP,從第二個 IP 組態連線到網際網路,請使用下列命令:

To ensure that you can access the associated public IP from the second IP configuration to the Internet, use the following command:


注意

Attention.

對於次要 IP 組態,如果組態有與其相關聯的公用 IP 位址,您只可以 Ping 網際網路。 對於主要 IP 組態,公用 IP 位址不需要 Ping 網際網路。

For secondary IP configurations, if the configuration has a public IP address associated with it, you can only use the Ping network. For the main IP configuration, the public IP address does not need the Ping network.

對於 Linux VM,在嘗試驗證來自次要 NIC 的輸出連線能力時,您可能需要新增適當的路由。 請參閱您的 Linux 發佈的相關文件。 以下是完成這項作業的其中一種方法︰

For Linux VM, you may need to add an appropriate route when trying to verify the output connection capabilities of the secondary NIC. Please refer to the document that your Linux releases. Here is one of the ways to do this.


  • 請務必取代:

    Please replace the following:

    • 10.1.0.5 取代為有相關聯公用 IP 位址的私人 IP 位址

      Replace 10.1.0.5 with a private IP address with associated IP addresses

    • 10.1.0.1 取代為您的預設閘道

      Replace 10.1.0.1 with your default path

    • eth2 替換為您的次要 NIC 名稱

      Replace eth2 with your secondary NIC name

展開

Ubuntu 18.04 和更新版本已變更為 OS 網路管理的 。 我們建議您查看 Linux 散發套件的最新文件。

Ubuntu 18.04 has been changed to OS network administration . We suggest that you look at the latest file of the Linux distribution package.

  1. 開啟終端機視窗。

    Opens the terminal window.

  2. 請確定您是根使用者。 如果不是,請輸入下列命令:

    Make sure you are root user. If not, enter the following command:

    
    
  3. 建立第二個介面的檔案,並在文字編輯器中開啟:

    Creates a second interface file and opens it in a text editor:

    
    
  4. 將下列幾行新增至檔案,並將 取代為您的 IP 和子網路遮罩:

    Add the following rows to the file and replace with your IP and subnetwork mask:

    
    

    若要新增其他私人 IP 位址,請編輯檔案,並在後續幾行新增新的私人 IP 位址:

    To add another private IP address, edit the file and add a new private IP address in subsequent rows:

    
    
  5. 使用下列命令儲存檔案︰

    Save files using the following command:..

    
    
  6. 使用 netplan try (英文) 來測試變更,以確認語法:

    (in English) to test changes to confirm grammar:

    
    

    注意

    Attention.

    會暫時套用變更,並於 120 秒後復原變更。 如果連線中斷,請等候 120 秒,然後重新連線。 在這段時間,變更將會復原。

    The change will be applied temporarily and restored 120 seconds later. If the connection breaks, wait for 120 seconds and then reconnect. During this time, the change will be restored.

  7. 假設 沒有問題,請套用設定變更:

    Assuming no problem, apply the settings changes:

    
    
  8. 使用下列命令確認 IP 位址已加入網路介面︰

    Could not close temporary folder: %s

    
    

    您應該會在清單中看到您加入的 IP 位址。 範例:

    You should see the IP address you joined in the list. Example:

    
    

驗證 (Ubuntu 18.04+)

若要確保您能夠透過相關聯的公用 IP,從第二個 IP 組態連線到網際網路,請使用下列命令:

To ensure that you can access the associated public IP from the second IP configuration to the Internet, use the following command:


注意

Attention.

對於次要 IP 組態,如果組態有與其相關聯的公用 IP 位址,您只可以 Ping 網際網路。 對於主要 IP 組態,公用 IP 位址不需要 Ping 至網際網路。

For secondary IP configurations, if the configuration has a public IP address associated with it, you can only use the Ping network. For the main IP configuration, the public IP address does not need Ping to the Internet.

對於 Linux VM,在嘗試驗證來自次要 NIC 的輸出連線能力時,您可能需要新增適當的路由。 有許多方法可以這麼做。 請參閱您的 Linux 散發套件相關文件。 以下是完成這項作業的其中一種方法︰

For Linux VM, you may need to add an appropriate route when trying to verify the output connection from the secondary NIC. There are many ways to do this. Please refer to your Linux Distribute package document. Here is one of the ways to complete this work.


  • 請確定您已取代:

    Make sure you replace:

    • 10.1.0.5 取代為有相關聯公用 IP 位址的私人 IP 位址

      Replace 10.1.0.5 with a private IP address with associated IP addresses

    • 10.1.0.1 取代為您的預設閘道

      Replace 10.1.0.1 with your default path

    • eth2 替換為您的次要 NIC 名稱

      Replace eth2 with your secondary NIC name

展開
  1. 開啟終端機視窗。

    Opens the terminal window.

  2. 請確定您是根使用者。 如果不是,請輸入下列命令:

    Make sure you are root user. If not, enter the following command:

    
    
  3. 輸入您的密碼,並且依照提示的指示。 成為根使用者之後,使用下列命令移至網路指令碼資料夾:

    Enter your password and follow instructions. After becoming a root user, use the following command to move to the network command folder:

    
    
  4. 使用下列命令列出相關的 ifcfg 檔案︰

    List relevant ifcfg files using the following command:.

    
    

    您應該會看到其中一個檔案是 ifcfg-eth0

    You should see one of these files at iffg-eth0.

  5. 若要新增 IP 位址,如下所示,為其建立組態檔。 請注意,必須針對每個 IP 組態建立一個檔案。

    To add an IP address, create a configuration file for it, as shown below. Note that a file must be created for each IP configuration.

    
    
  6. 使用下列命令開啟 ifcfg-eth0:0 檔案︰

    Open file iffg-eth0:0 with the following command.

    
    
  7. 使用下列命令,新增檔案內容,在此案例中為 eth0:0。 將 取代為您的其他私人 IP 位址和子網路遮罩。

    Use the following command to add file contents, in this case eth0:0. Replace with your other private IP address and subnet mask.

    
    
  8. 使用下列命令儲存檔案︰

    Save files using the following command:..

    
    
  9. 若要將其他私人 IP 位址新增至網路組態,請建立其他組態檔,然後將 IP 資訊新增至檔案。

    To add another private IP address to a network configuration, create another configuration file and then add another IP information to a file.

    
    
    
    
    
    
    
    
  10. 執行下列命令重新啟動網路服務,並確定所做的變更都成功︰

    Execute the following command to restart the network service and make sure that all changes have been made successfully...

    
    

    您應該會在傳回的清單中看到您新增的 IP 位址或位址。

    You should see your new IP address or address in the returned list.

    
    

驗證 (Red Hat、CentOS 以及其他)

若要確保您能夠透過相關聯的公用 IP,從第二個 IP 組態連線到網際網路,請使用下列命令:

To ensure that you can access the associated public IP from the second IP configuration to the Internet, use the following command:


注意

Attention.

對於次要 IP 組態,如果組態有與其相關聯的公用 IP 位址,您只可以 Ping 網際網路。 對於主要 IP 組態,公用 IP 位址不需要 Ping 網際網路。

For secondary IP configurations, if the configuration has a public IP address associated with it, you can only use the Ping network. For the main IP configuration, the public IP address does not need the Ping network.

對於 Linux VM,在嘗試驗證來自次要 NIC 的輸出連線能力時,您可能需要新增適當的路由。 請參閱您的 Linux 散發套件相關文件。 以下是完成這項作業的其中一種方法︰

For Linux VM, you may need to add an appropriate route when trying to verify the output connection capabilities of the secondary NIC. Please refer to your Linux Distribute Package file. Here is one of the ways to do this.


  • 請務必取代:

    Please replace the following:

    • 10.0.0.5 替換成有相關聯公用 IP 位址的私人 IP 位址

      Replace 10.0.0.5 with a private IP address with associated IP addresses

    • 10.0.0.1 替換為您的預設閘道

      Replace 10.0.0.1 with your default path

    • eth2 替換為您的次要 NIC 名稱

      Replace eth2 with your secondary NIC name

展開

我們建議您查看 Linux 散發套件的最新文件。

We suggest that you view the latest file of the Linux Distribute Package.

  1. 開啟終端機視窗。

    Opens the terminal window.

  2. 請確定您是根使用者。 如果不是,請輸入下列命令:

    Make sure you are root user. If not, enter the following command:

    
    
  3. 更新網路介面 (假設為 ‘eth0’) 的組態檔。

    Updates the configuration of the network interface (supposing `eth0').

    • 保留針對 dhcp 的現有行。 主要 IP 位址的設定仍然與先前一樣。

      Keeps the current line for dhcp. The main IP address remains the same as before.

    • 使用下列命令,新增其他靜態 IP 位址的組態︰

      Add another static IP address configuration using the following command:

      
      

      您應該會看到一個 .cfg 檔案。

      You should see a.cfg file.

  4. 開啟 檔案。 您應該會在檔案結尾看到下列這幾行:

    Open the file. You should see the following lines at the end of the file:

    
    
  5. 在檔案已有的幾行後面加入下列這幾行。 將 取代為您的私人 IP 位址和子網路遮罩。

    Add the following lines to the existing lines of the file. Replace with your private IP address and subnetwork mask.

    
    

    若要新增其他私人 IP 位址,請編輯檔案,並在後續幾行新增新的私人 IP 位址:

    To add another private IP address, edit the file and add a new private IP address in subsequent rows:

    
    
  6. 使用下列命令儲存檔案︰

    Save files using the following command:..

    
    
  7. 重新啟動網路服務,變更才會生效。 針對 Debian 8 和更新版本,可以使用下列命令來完成此動作:

    Restart network services for changes to take effect. For Debian 8 update, the following commands can be used to complete this action:

    
    

    針對舊版 Debian,您可以使用下列命令:

    For the old Debian, you can use the following command:

    
    
  8. 使用下列命令確認 IP 位址已加入網路介面︰

    Could not close temporary folder: %s

    
    

    您應該會在清單中看到您加入的 IP 位址。 範例:

    You should see the IP address you joined in the list. Example:

    
    

驗證 (Debian GNU/Linux)

若要確保您能夠透過相關聯的公用 IP,從第二個 IP 組態連線到網際網路,請使用下列命令:

To ensure that you can access the associated public IP from the second IP configuration to the Internet, use the following command:


注意

Attention.

對於次要 IP 組態,如果組態有與其相關聯的公用 IP 位址,您只可以 Ping 網際網路。 對於主要 IP 組態,公用 IP 位址不需要 Ping 網際網路。

For secondary IP configurations, if the configuration has a public IP address associated with it, you can only use the Ping network. For the main IP configuration, the public IP address does not need the Ping network.

對於 Linux VM,在嘗試驗證來自次要 NIC 的輸出連線能力時,您可能需要新增適當的路由。 請參閱您的 Linux 發佈的相關文件。 以下是完成這項作業的其中一種方法︰

For Linux VM, you may need to add an appropriate route when trying to verify the output connection capabilities of the secondary NIC. Please refer to the document that your Linux releases. Here is one of the ways to do this.


  • 請務必取代:

    Please replace the following:

    • 10.1.0.5 取代為有相關聯公用 IP 位址的私人 IP 位址

      Replace 10.1.0.5 with a private IP address with associated IP addresses

    • 10.1.0.1 取代為您的預設閘道

      Replace 10.1.0.1 with your default path

    • eth2 替換為您的次要 NIC 名稱

      Replace eth2 with your secondary NIC name

美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 区块链社区有哪些?区块链社区是什么?

    区块链社区有哪些?区块链社区是什么?
    展开全文...
  • 0.00006694个比特币等于多少人民币/美金

    0.00006694个比特币等于多少人民币/美金
    0.00006694比特币等于多少人民币?根据比特币对人民币的最新汇率,0.00006694比特币等于4.53424784美元/32.5436 16人民币。比特币(BTC)美元(USDT)人民币(CNY)0.000066944.53424784【比特币密码】32.82795436 16比特币对人民币的最新汇率为:490408.64 CNY(1比特币=490408.64人民币)(1美元=7.24人民币)(0.00006694USDT=0.0004846456 CNY)汇率更新时...
  • 0.00003374个比特币等于多少人民币/美金

    0.00003374个比特币等于多少人民币/美金
    0.00003374比特币等于多少人民币?根据比特币对人民币的最新汇率,0.00003374比特币等于2.2826 1222美元/16.5261124728人民币。比特币(BTC)美元(USDT)人民币(CNY)0.00003374克洛克-0/22216.5261124728比特币对人民币的最新汇率为:489807.72 CNY(1比特币=489807.72人民币)(1美元=7.24人民币)(0.00003374USDT=0.0002442776 CNY)。汇率更新于2024...
  • 0.00015693个比特币等于多少人民币/美金

    0.00015693个比特币等于多少人民币/美金
    0.000 15693比特币等于多少人民币?根据比特币对人民币的最新汇率,0.000 15693比特币等于10.6 1678529美元/76.86554996人民币。比特币(BTC)【比特币价格翻倍】美元(USDT)人民币(CNY)0.000/克洛克-0/5693【数字货币矿机】10.6 167852976.8655254996比特币对人民币的最新汇率为:489,807.72 CNY(1比特币= 489,807.72人民币)(1美元=7.24人民币)(0.00015693 U...
  • 2018-5-31币圈简报

    2018-5-31币圈简报
    一、要闻资讯类I. KEY INFORMATION CATEGORY1、央视:数字货币在京揭牌成立!中国或为此突变!1. View: Digital currency is established in Kyoto! China or mutated for it!中国数字货币来了˂a href="https://mp.weixin.qq.com/s/69fxKCf8GKSCscS4lT8WCA" Target="_blank"rel="noformlow"" Chinese...
标签列表