zoukankan      html  css  js  c++  java
  • Azure Reserved IP

    Azure PowerShell

    > Add-AzureAccount
    > Select-AzureSubscription "SubscriptionName"
    > New-AzureReservedIP -ReservedIPName "projectname-development-ip" -Label "projectname-development-ip-label" -Location "West Europe"
    > Get-AzureReservedIP

    Add the below NetworkConfiguration section into ServiceConfiguration.Development.cscfg

    <NetworkConfiguration>    
        <AddressAssignments>      
            <ReservedIPs>        
                <ReservedIP name="projectname-development-ip" />      
            </ReservedIPs>    
        </AddressAssignments>  
    </NetworkConfiguration>

    Azure VM: Adding a Reserved IP address to an existing VM

    At Build 2015 they announced this is now possible and VERY easy. Simply open Azure powershell and run this:

    New-AzureReservedIP -ReservedIPName "ipname" -Location "West US" -ServiceName "somevm"
    

    If you run this it will reserve an IP named "ipname" and associate it with the already deployed instance "somevm.cloudapp.net"

  • 相关阅读:
    ebs R12 支持IE11
    reloc: Permission denied
    3.23考试小记
    3.21考试小记
    3.20考试小记
    3.17考试小记
    3.15考试小记
    3.13考试小记
    3.12考试小记
    3.10考试小记
  • 原文地址:https://www.cnblogs.com/zhangpengc/p/4946762.html
Copyright © 2011-2022 走看看