Windows Azure Cloud Service (44) 将Cloud Service加入Virtual Network Subnet,并固定Virtual IP Address(VIP)

简介:

 《Windows Azure Platform 系列文章目录

 

  在之前的文章中,笔者已经详细介绍了如何将Virtual Machine加入Virtual Network,并且绑定固定的Private IP和Virtual IP Address (公网IP地址)

  Windows Azure Virtual Network (5) 设置Azure Virtual Machine固定Private IP

      Windows Azure Virtual Network (6) 设置Azure Virtual Machine固定公网IP (Virtual IP Address, VIP) (1)

      Windows Azure Virtual Network (7) 设置Azure Virtual Machine固定公网IP (Virtual IP Address, VIP) (2)

 

  但是以上的功能仅限于IaaS,如果我们需要在PaaS Cloud Service设置Private IP和Virtual IP Address,应该如何设置?

 

  再想象一个场景,当我们前端使用PaaS Cloud Service (Web Server)实现横向扩展,后端使用2台SQL Server Virtual Machine (Always-On)做数据库服务器。

  这种混合PaaS+IaaS的场景,如何让PaaS Cloud Service加入Virtual Network,使用内部IP地址与SQL Server VM进行通信呢?

 

  本章内容分为以下三个部分:

  一.管理Virtual IP Address(公网IP地址)

  二.管理Virtual Network

  三.配置Azure Cloud Service

 

 

  一.管理Virtual IP Address(公网IP地址)

  我们可以通过Azure PowerShell来申请Virtual IP Address,具体读者可以参考之前的Blog:

  国外使用Azure Global的用户,可以参考:

      Windows Azure Virtual Network (6) 设置Azure Virtual Machine固定公网IP (Virtual IP Address, VIP) (1)

      Windows Azure Virtual Network (7) 设置Azure Virtual Machine固定公网IP (Virtual IP Address, VIP) (2)

 

  国内使用世纪互联运维的Azure China用户,可以参考:

  Azure China (8) 使用Azure PowerShell创建虚拟机,并设置固定Virtual IP Address和Private IP

  如果读者用的是百度查询IP地址,经常会发现Azure上海的IP地址经常会显示来自北京,这是由于百度的IP库比较老,请读者注意 

 

  这里笔者不想申请新的Reserved IP Address,我们使用命令:

Get-AzureReservedIP

  可以查看到之前已经申请的Reserved IP Address,如下图:

  

  我们就继续使用上面的LeiTestVMReservedIP,这个地址是191.234.18.61

  上图中,InUse状态为False,没有被占用

 

 

  二.管理Azure Virtual Network

  我们创建一个新的Azure Virtual Network,命名为PaaSVNet

  增加2个subnet,命名为Web-Subnet和DB-Subnet,如下图:

  

  Web-Subnet IP Rang为10.0.0.0-10.0.0.127

  DB-Subnet IP Rang为10.0.0.128-10.0.0.255

 

 

  三.配置Azure Cloud Service

  我们新建一个Cloud Service,项目命名为LeiPaaSReservedIP,只添加WebRole即可,截图略。

  1.将Instance Count数量修改为2

  2.修改ServiceConfiguration.Cloud.cscfg文件配置,增加以下内容:

  

  上图中的设置中:

  (1)Instance Count为2,需要2个Instance

  (2)VirtualNetworksSite节点,设置为虚拟机网络名称,PaaSVNet

  (3)InstanceAddress节点设置为WebRole1

  (4)Subnet设置为步骤二中的子网名称,为Web-Subnet

  (5)ReservedIP设置为我们在步骤一中的Reserved IP Name (LeiTestVMReservedIP)

 

  然后我们将我们的Cloud Service部署到Azure平台上,观察Reserved IP Address,已经使用在步骤一的Public IP:191.234.18.61)

  

  

  然后我们观察虚拟网络PaaSVNet中的Private IP使用情况

  

  Web Role已经加入了Web-Subnet子网  

  因为将Instance Count设置为2,这2个PaaS Instance占用了10.0.0.410.0.0.5这2个IP地址

 

 

参考资料: https://msdn.microsoft.com/library/azure/jj156091.aspx

 


本文转自Lei Zhang博客园博客,原文链接:http://www.cnblogs.com/threestone/p/4360587.html,如需转载请自行联系原作者

目录
相关文章
|
4月前
|
Linux C++ Windows
【Azure 应用服务】Azure App Service(Windows)环境中如何让.NET应用调用SAP NetWeaver RFC函数
【Azure 应用服务】Azure App Service(Windows)环境中如何让.NET应用调用SAP NetWeaver RFC函数
【Azure 应用服务】Azure App Service(Windows)环境中如何让.NET应用调用SAP NetWeaver RFC函数
|
22天前
|
C# Windows
【Azure App Service】在App Service for Windows上验证能占用的内存最大值
根据以上测验,当使用App Service内存没有达到预期的值,且应用异常日志出现OutOfMemory时,就需要检查Platform的设置是否位64bit。
41 11
|
4月前
|
Java 应用服务中间件 开发工具
[App Service for Windows]通过 KUDU 查看 Tomcat 配置信息
[App Service for Windows]通过 KUDU 查看 Tomcat 配置信息
|
4月前
|
Java 应用服务中间件 Windows
【App Service for Windows】为 App Service 配置自定义 Tomcat 环境
【App Service for Windows】为 App Service 配置自定义 Tomcat 环境
|
4月前
|
PHP Windows
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
|
4月前
|
网络安全 API 数据安全/隐私保护
【Azure App Service】.NET代码实验App Service应用中获取TLS/SSL 证书 (App Service Windows)
【Azure App Service】.NET代码实验App Service应用中获取TLS/SSL 证书 (App Service Windows)
|
4月前
|
Shell PHP Windows
【Azure App Service】Web Job 报错 UNC paths are not supported. Defaulting to Windows directory.
【Azure App Service】Web Job 报错 UNC paths are not supported. Defaulting to Windows directory.
|
4月前
|
存储 Linux Windows
【应用服务 App Service】App Service For Windows 如何挂载Storage Account File Share 示例
【应用服务 App Service】App Service For Windows 如何挂载Storage Account File Share 示例
|
4月前
|
应用服务中间件 nginx Windows
【Azure 应用服务】在App Service for Windows中实现反向代理
【Azure 应用服务】在App Service for Windows中实现反向代理
|
13天前
|
网络安全 Windows
Windows server 2012R2系统安装远程桌面服务后无法多用户同时登录是什么原因?
【11月更文挑战第15天】本文介绍了在Windows Server 2012 R2中遇到的多用户无法同时登录远程桌面的问题及其解决方法,包括许可模式限制、组策略配置问题、远程桌面服务配置错误以及网络和防火墙问题四个方面的原因分析及对应的解决方案。