共用方式為


Remove-AzNetworkInterfaceIpConfig

從網路介面移除網路介面IP組態。

語法

Remove-AzNetworkInterfaceIpConfig
      -Name <String>
      -NetworkInterface <PSNetworkInterface>
      [-DefaultProfile <IAzureContextContainer>]
      [<CommonParameters>]

Description

Remove-AzNetworkInterfaceIpConfig Cmdlet 會從 Azure 網路介面移除網路介面 IP 組態。

範例

範例 1:從網路介面刪除 IP 組態

$nic = Get-AzNetworkInterface -Name mynic -ResourceGroupName myrg

Remove-AzNetworkInterfaceIpConfig -Name IPConfig-1 -NetworkInterface $nic

Set-AzNetworkInterface -NetworkInterface $nic

第一個命令會取得名為 mynic 的網路介面,並將它儲存在變數$nic中。 第二個命令會移除與此網路介面相關聯的IPConfig-1 IP組態。 第三個命令會設定對網路介面所做的變更。

參數

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶。

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Name

指定要移除的網路介面IP組態名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-NetworkInterface

指定 NetworkInterface 物件。 此物件包含要移除的網路介面IP組態。

類型:PSNetworkInterface
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

輸入

PSNetworkInterface

輸出

PSNetworkInterface

備註

  • 關鍵詞:azure、azurerm、arm、resource、management、manager、network、networking