如何在Azure资源管理器门户中使用json模板设置私有IP?

时间:2016-02-11 11:24:37

标签: json azure

我正在使用Azure资源管理器门户。我用json模板创建了vm。但是vm的本地ip地址的顺序被改变了。 `我的要求是 10.0.0.4,10.0.0.5,10.0.0.6。 但输出是 10.0.0.5,10.0.0.6,10.0.0.4

我尝试使用json设置私有IP地址

void btnSelectAccountFamily_Click(object sender, ImageClickEventArgs e)
{
    if (ScriptManager.GetCurrent(this.Page) != null)
        ScriptManager.RegisterClientScriptBlock(this.Page, typeof(ImageButton), "onclick", "CallAFPopup();", true);
}

但它抛出了json解析异常。有谁知道如何在json模板中设置私有IP地址?

1 个答案:

答案 0 :(得分:2)

我认为问题在于:

"PrivateIpAddress": [concat("10.0.0."), copyindex())],

copyindex()为您0提供第一个VM

您无法在Azure中使用10.0.0.0-3

Use copyindex(4)