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"

  • 相关阅读:
    jq insertBefore 的返回值
    微信公众号-定位之地址逆解析&导航
    微信JS-SDK
    Vue
    ES6-函数的扩展
    ES6-数组的扩展
    JSP
    JS
    HTML+CSS
    jdbc操作数据库
  • 原文地址:https://www.cnblogs.com/zhangpengc/p/4946762.html
Copyright © 2011-2022 走看看