Azure Application Gateway (2) 面向公网的Application Gateway
《Windows Azure Platform 系列文章目录》
本章将介绍如何创建面向公网的Application Gateway,我们需要准备以下工作:
1.创建新的Azure Resource Group,命名为LeiAppGWRG
2.在这个Resource Group下,创建新的ARM Virtual Network虚拟网络,命名为LeiAppGatewayVNet,并创建Subnet。
请注意,在这个虚拟网络下,必须要有一个空的Subnet,或者单独一个Subnet专门给Application Gateway使用。
我们在LeiAppGatewayVNet下,创建2个Subnet:
- 一个叫web-subnet,CIDR: 10.0.0.0/24
- 一个叫appgateway-subnet,专门给Application Gateway使用,CIDR:10.0.1.0/24
接下来开始正文内容:
1.我们在LeiAppGWRG下,创建一个新的Application Gateway,命名为LeiAppGateway。如下图:

上图中:
(1) Name就是Application Gateway的名称
(2)Tier,就是Application Gateway的服务类型。我这里选择Standard
(3)SKU Size,有三种类型,分别是Small, Medium和Large。我这里选择Medium。
(4)Instance Count,设置实例数量,可以选择2-10
(5)Resource Group,我们选择之前创建的Resource Group
(6)Location,我们选择China East数据中心
2.然后,我们设置Virtual Network。如下图:

上图中:
(1)Virtual Network,选择我们之前创建的LeiAppGatewayVNet
(2)子网Subnet,选择appgateway-subnet,这个是专门给Application Gateway使用
(3)IP Address Type,选择Public
(4)Public IP Address,我们创建一个新的公网IP地址
(5)Protocol,我们选择HTTP
(6)Port,我们选择80
请注意,如果我们选择Protocol是HTTPS,则需要上传PFX证书。如下图:

最后,我们点击OK进行创建。
3.我们等待Appication Gateway创建完毕后,需要增加后端服务器的内网IP地址。
这样客户端在通过公网访问Application Gateway的时候,可以通过内网IP地址,把流量导入到后端服务器的服务器上。

这样,当客户端在通过公网访问Application Gateway的时候,流量会发送到后端的Subnet: 为web-subnet,CIDR:10.0.0.0/24 ,内网IP为10.0.0.4, 10.0.0.5
参考资料:https://docs.microsoft.com/en-us/azure/application-gateway/application-gateway-create-gateway-portal
Azure Application Gateway (2) 面向公网的Application Gateway的更多相关文章
- loadrunner录制时弹出invalid application path!please check if application exists对话框
问题:oadrunner录制时弹出invalid application path!please check if application exists对话框 原因:IE浏览器地址不对,需要手动重新选 ...
- The error indicates that IIS is in 32 bit mode, while this application is a 64 b it application and thus not compatible.
I was trying to install a new WSS v3 Sharepoint on a 64 bit Windows 2003 server today but the instal ...
- 背水一战 Windows 10 (91) - 文件系统: Application Data 中的文件操作, Application Data 中的“设置”操作, 通过 uri 引用 Application Data 中的媒体
[源码下载] 背水一战 Windows 10 (91) - 文件系统: Application Data 中的文件操作, Application Data 中的“设置”操作, 通过 uri 引用 Ap ...
- 四种常见的 POST 提交数据方式(application/x-www-form-urlencoded,multipart/form-data,application/json,text/xml)
四种常见的 POST 提交数据方式(application/x-www-form-urlencoded,multipart/form-data,application/json,text/xml) 转 ...
- Android NDK调试出错Unknown Application ABI, Unable to detect application ABI's的解决方式
今天在调试Android NDK的时候,ADT的控制台报了这个错误: Unknown Application ABI, Unable to detect application ABI's 在网上查了 ...
- windows azure Vm、cloud service、web application 如何选择可用的服务
windows azure 的web应用和虚拟机都经常用.我们经常把我们的网站部署上去.一般选择web应用或者开一个虚拟机.开一个虚拟机就会按照虚拟机的使用时间进行计费. 那么我们选择web部署在哪里 ...
- 在Global Azure上用Azure CLI创建ARM的VM和面向公网的负载均衡
在Global的Azure上,新的Portal和ARM已经正式发布.将来传统的portal和ASM将逐渐淡出. China Azure将在今年下半年推出新的Portal管理界面和ARM功能(即IaaS ...
- Catch Application Exceptions in a Windows Forms Application
You need to handle the System.Windows.Forms.Application.ThreadException event for Windows Forms. Thi ...
- [置顶] Application,Session,Cookie之Application对象
概述 Application为全局作用域,且只有一个Application对象,它可以存储和访问任意页面的变量(数据存储类型都是Object,也就是任意类型),同时也被多页面使用(也为引用). App ...
随机推荐
- 工作总结_JS_1
获取点击下的相对应的div: $('> div', this).show(); 本身同级下的相对应的div: $('>div[name=vv]', $(this).siblings(& ...
- Ajax请求
<!doctype html><html lang="en"> <head> <meta charset="UTF-8" ...
- ajax优点与缺点
ajax的优点 Ajax的给我们带来的好处大家基本上都深有体会,在这里我只简单的讲几点: 1.最大的一点是页面无刷新,在页面内与服务器通信,给用户的体验非常好. 2.使用异步方式与服务器通信,不需要打 ...
- SQL Server2014 哈希索引原理
SQL Server2014 哈希索引原理 翻译自:http://www.sqlservercentral.com/blogs/sql-and-sql-only/2015/09/08/hekaton- ...
- iTextSharp 116秒处理6G的文件
前言: 有一家印刷企业专为米兰新娘,微微新娘,金夫人这样的影楼印刷婚纱相册.通过一个B2B销售终端软件,把影楼的相片上传到印刷公司的服务器,服务器对这些图片进行处理. 比如: 1)为每个图片生成订单条 ...
- Node.js学习笔记
相关介绍 1.Node.js或者Node,是一个可以让javascript运行在服务器端的平台. 2.Node.js是一个为实时Web应用开发而诞生的语言,它从诞生之初就充分考虑了再实时响应.超大规模 ...
- EF:Oracle.DataAccess.Client.OracleException: ORA-12154: TNS:could not resolve the connect identifier specified
报告错误:Oracle.DataAccess.Client.OracleException: ORA-12154: TNS:could not resolve the connect identifi ...
- css双飞翼布局
双飞翼布局是一种比较灵活的布局,始于淘宝UED,玉伯提出的,他着重介绍的是双飞翼栅格布局. 三列布局为"双飞燕"布局,可以把三栏比作一只鸟,main部分相当是于鸟的身体,而lef ...
- ASP.NET Core 1.1 静态文件、路由、自定义中间件、身份验证简介
概述 之前写过一篇关于<ASP.NET Core 1.0 静态文件.路由.自定义中间件.身份验证简介>的文章,主要介绍了ASP.NET Core中StaticFile.Middleware ...
- Partition Stats
在分区表中,SQL Server使用一个唯一的分区ID(PartitionID)来标识一个分区,对于任何一个对象(table,index 或 indexed view),都有一个分区号(Prtitio ...