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"

  • 相关阅读:
    css优化篇
    select超全超详细总结篇
    meta总结
    富文本编辑
    textarea 换行处理
    07 DRF响应类:Response
    06 内部类
    05 序列化组件
    04 APIView的请求生命周期
    python中if __name__ == '__main__'是什么?
  • 原文地址:https://www.cnblogs.com/zhangpengc/p/4946762.html
Copyright © 2011-2022 走看看