共用方式為


Get-AzNetworkInterfaceIpConfig

取得網路介面的網路介面IP組態。

語法

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

Description

Get-AzNetworkInterfaceIPConfig Cmdlet 會從 Azure 網路介面取得網路介面 IP 組態。

範例

範例 1:取得網路介面的IP組態

$nic1 = Get-AzNetworkInterface -Name mynic -ResourceGroupName $myrg
Get-AzNetworkInterfaceIpConfig -Name ipconfig1 -NetworkInterface $nic1

第一個命令會取得名為 mynic 的現有網路介面,並將它儲存在變數 $nic 1 中。 第二個命令會取得此網路介面的IP組態,稱為ipconfig1。

參數

-DefaultProfile

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

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

-Name

指定此 Cmdlet 取得的網路 IP 組態名稱。

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

-NetworkInterface

指定 NetworkInterface 物件,其中包含此 Cmdlet 取得的網路 IP 組態。

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

輸入

PSNetworkInterface

輸出

PSNetworkInterfaceIPConfiguration

備註

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