├── .github └── funding.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING ├── LICENSE ├── README.md ├── any-to-any-bicep ├── any-to-any.bicep ├── any-to-any.json └── fw-policy.bicep ├── hub-01-bicep ├── bicepconfig.json ├── hub-01.bicep └── hub-01.json ├── hub-02-bicep ├── hub-02.bicep └── hub-02.json ├── images ├── any-to-any-routing-avnm.png ├── any-to-any-routing-firewall.png ├── any-to-any-routing-gateway.png ├── any-to-any-routing.drawio ├── aoai-deployment-apim-configuration.png ├── aoai-deployment-apim-view.png ├── aoai-deployment.drawio ├── aoai-deployment.png ├── apim-stv1-deployment.drawio ├── app-gateway-01.drawio ├── app-gateway-01.png ├── architecture-hub-01.png ├── architecture-hub-02.png ├── architecture-on-premises-2.png ├── architecture-on-premises.png ├── architecture.drawio ├── architecture.png ├── cross-on-premise-routing.drawio ├── cross-on-premise-routing.png ├── dns.drawio ├── dns.png ├── elastic-san.drawio ├── elastic-san.png ├── frontdoor.drawio ├── frontdoor.png ├── hl-architecture.png ├── hub-and-spoke-arc-drawing(s).vsdx ├── ipsec-aa.png ├── ipsec-bgp.png ├── ipsec-dr.png ├── ipsec.drawio ├── ipsec.png ├── name-resolution-with-dns-resolver.drawio ├── name-resolution-with-dns-resolver.png ├── north-south-inspection-01.png ├── north-south-inspection-02.png ├── north-south-inspection.drawio ├── outbound-traffic-internet-firewall.drawio ├── outbound-traffic-internet-firewall.png ├── routing-with-bgp.drawio ├── routing-with-bgp.png ├── routing-without-bgp-fw.drawio ├── routing-without-bgp-fw.png ├── sftp.drawio ├── sftp.png ├── waf-fw.drawio └── waf-fw.png ├── oldies-and-goldies ├── any-to-any.json ├── cloud-deploy.json ├── on-prem-deploy-2.json └── on-prem-deploy.json ├── on-prem-2-bicep ├── on-prem-2.bicep └── on-prem-2.json ├── on-prem-bicep ├── on-prem.bicep └── on-prem.json ├── s2s-vpn-bicep ├── connect-gateways-bgp-to-be-verified.bicep ├── connect-on-prem.bicep └── connect-on-prem.json └── scenarios ├── aoai.md ├── apim-stv1.md ├── app-gateway-01.md ├── cross-on-premise-routing.md ├── dnat-01-02.md ├── dns.md ├── elastic-san.md ├── frontdoor.md ├── ipsec-active-active.md ├── ipsec-bgp.md ├── ipsec-dual-redundancy.md ├── ipsec-multiple-vpn-device.md ├── ipsec.md ├── logs.md ├── name-resolution-with-azure-firewall.md ├── name-resolution-with-dns-private-resolver.md ├── network-watcher.md ├── outbound-traffic-to-internet-firewall.md ├── p2s-vpn-certificate-always-on.md ├── p2s-vpn-certificate.md ├── ping-any-to-any-avnm.md ├── ping-any-to-any-firewall.md ├── ping-any-to-any-gateway.md ├── publish-waf-fw.md ├── routing-with-bgp.md ├── routing-without-bgp-fw.md ├── sftp.md ├── solution-north-south-inspection.md ├── spoke-01-inet.md ├── vnet-to-vnet-2.md ├── vnet-to-vnet.md └── web.md /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/README.md -------------------------------------------------------------------------------- /any-to-any-bicep/any-to-any.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/any-to-any-bicep/any-to-any.bicep -------------------------------------------------------------------------------- /any-to-any-bicep/any-to-any.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/any-to-any-bicep/any-to-any.json -------------------------------------------------------------------------------- /any-to-any-bicep/fw-policy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/any-to-any-bicep/fw-policy.bicep -------------------------------------------------------------------------------- /hub-01-bicep/bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/hub-01-bicep/bicepconfig.json -------------------------------------------------------------------------------- /hub-01-bicep/hub-01.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/hub-01-bicep/hub-01.bicep -------------------------------------------------------------------------------- /hub-01-bicep/hub-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/hub-01-bicep/hub-01.json -------------------------------------------------------------------------------- /hub-02-bicep/hub-02.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/hub-02-bicep/hub-02.bicep -------------------------------------------------------------------------------- /hub-02-bicep/hub-02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/hub-02-bicep/hub-02.json -------------------------------------------------------------------------------- /images/any-to-any-routing-avnm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/any-to-any-routing-avnm.png -------------------------------------------------------------------------------- /images/any-to-any-routing-firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/any-to-any-routing-firewall.png -------------------------------------------------------------------------------- /images/any-to-any-routing-gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/any-to-any-routing-gateway.png -------------------------------------------------------------------------------- /images/any-to-any-routing.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/any-to-any-routing.drawio -------------------------------------------------------------------------------- /images/aoai-deployment-apim-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/aoai-deployment-apim-configuration.png -------------------------------------------------------------------------------- /images/aoai-deployment-apim-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/aoai-deployment-apim-view.png -------------------------------------------------------------------------------- /images/aoai-deployment.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/aoai-deployment.drawio -------------------------------------------------------------------------------- /images/aoai-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/aoai-deployment.png -------------------------------------------------------------------------------- /images/apim-stv1-deployment.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/apim-stv1-deployment.drawio -------------------------------------------------------------------------------- /images/app-gateway-01.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/app-gateway-01.drawio -------------------------------------------------------------------------------- /images/app-gateway-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/app-gateway-01.png -------------------------------------------------------------------------------- /images/architecture-hub-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/architecture-hub-01.png -------------------------------------------------------------------------------- /images/architecture-hub-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/architecture-hub-02.png -------------------------------------------------------------------------------- /images/architecture-on-premises-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/architecture-on-premises-2.png -------------------------------------------------------------------------------- /images/architecture-on-premises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/architecture-on-premises.png -------------------------------------------------------------------------------- /images/architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/architecture.drawio -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/cross-on-premise-routing.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/cross-on-premise-routing.drawio -------------------------------------------------------------------------------- /images/cross-on-premise-routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/cross-on-premise-routing.png -------------------------------------------------------------------------------- /images/dns.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/dns.drawio -------------------------------------------------------------------------------- /images/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/dns.png -------------------------------------------------------------------------------- /images/elastic-san.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/elastic-san.drawio -------------------------------------------------------------------------------- /images/elastic-san.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/elastic-san.png -------------------------------------------------------------------------------- /images/frontdoor.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/frontdoor.drawio -------------------------------------------------------------------------------- /images/frontdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/frontdoor.png -------------------------------------------------------------------------------- /images/hl-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/hl-architecture.png -------------------------------------------------------------------------------- /images/hub-and-spoke-arc-drawing(s).vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/hub-and-spoke-arc-drawing(s).vsdx -------------------------------------------------------------------------------- /images/ipsec-aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/ipsec-aa.png -------------------------------------------------------------------------------- /images/ipsec-bgp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/ipsec-bgp.png -------------------------------------------------------------------------------- /images/ipsec-dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/ipsec-dr.png -------------------------------------------------------------------------------- /images/ipsec.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/ipsec.drawio -------------------------------------------------------------------------------- /images/ipsec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/ipsec.png -------------------------------------------------------------------------------- /images/name-resolution-with-dns-resolver.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/name-resolution-with-dns-resolver.drawio -------------------------------------------------------------------------------- /images/name-resolution-with-dns-resolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/name-resolution-with-dns-resolver.png -------------------------------------------------------------------------------- /images/north-south-inspection-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/north-south-inspection-01.png -------------------------------------------------------------------------------- /images/north-south-inspection-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/north-south-inspection-02.png -------------------------------------------------------------------------------- /images/north-south-inspection.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/north-south-inspection.drawio -------------------------------------------------------------------------------- /images/outbound-traffic-internet-firewall.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/outbound-traffic-internet-firewall.drawio -------------------------------------------------------------------------------- /images/outbound-traffic-internet-firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/outbound-traffic-internet-firewall.png -------------------------------------------------------------------------------- /images/routing-with-bgp.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/routing-with-bgp.drawio -------------------------------------------------------------------------------- /images/routing-with-bgp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/routing-with-bgp.png -------------------------------------------------------------------------------- /images/routing-without-bgp-fw.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/routing-without-bgp-fw.drawio -------------------------------------------------------------------------------- /images/routing-without-bgp-fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/routing-without-bgp-fw.png -------------------------------------------------------------------------------- /images/sftp.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/sftp.drawio -------------------------------------------------------------------------------- /images/sftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/sftp.png -------------------------------------------------------------------------------- /images/waf-fw.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/waf-fw.drawio -------------------------------------------------------------------------------- /images/waf-fw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/images/waf-fw.png -------------------------------------------------------------------------------- /oldies-and-goldies/any-to-any.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/oldies-and-goldies/any-to-any.json -------------------------------------------------------------------------------- /oldies-and-goldies/cloud-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/oldies-and-goldies/cloud-deploy.json -------------------------------------------------------------------------------- /oldies-and-goldies/on-prem-deploy-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/oldies-and-goldies/on-prem-deploy-2.json -------------------------------------------------------------------------------- /oldies-and-goldies/on-prem-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/oldies-and-goldies/on-prem-deploy.json -------------------------------------------------------------------------------- /on-prem-2-bicep/on-prem-2.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/on-prem-2-bicep/on-prem-2.bicep -------------------------------------------------------------------------------- /on-prem-2-bicep/on-prem-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/on-prem-2-bicep/on-prem-2.json -------------------------------------------------------------------------------- /on-prem-bicep/on-prem.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/on-prem-bicep/on-prem.bicep -------------------------------------------------------------------------------- /on-prem-bicep/on-prem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/on-prem-bicep/on-prem.json -------------------------------------------------------------------------------- /s2s-vpn-bicep/connect-gateways-bgp-to-be-verified.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/s2s-vpn-bicep/connect-gateways-bgp-to-be-verified.bicep -------------------------------------------------------------------------------- /s2s-vpn-bicep/connect-on-prem.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/s2s-vpn-bicep/connect-on-prem.bicep -------------------------------------------------------------------------------- /s2s-vpn-bicep/connect-on-prem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/s2s-vpn-bicep/connect-on-prem.json -------------------------------------------------------------------------------- /scenarios/aoai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/aoai.md -------------------------------------------------------------------------------- /scenarios/apim-stv1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/apim-stv1.md -------------------------------------------------------------------------------- /scenarios/app-gateway-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/app-gateway-01.md -------------------------------------------------------------------------------- /scenarios/cross-on-premise-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/cross-on-premise-routing.md -------------------------------------------------------------------------------- /scenarios/dnat-01-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/dnat-01-02.md -------------------------------------------------------------------------------- /scenarios/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/dns.md -------------------------------------------------------------------------------- /scenarios/elastic-san.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/elastic-san.md -------------------------------------------------------------------------------- /scenarios/frontdoor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/frontdoor.md -------------------------------------------------------------------------------- /scenarios/ipsec-active-active.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/ipsec-active-active.md -------------------------------------------------------------------------------- /scenarios/ipsec-bgp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/ipsec-bgp.md -------------------------------------------------------------------------------- /scenarios/ipsec-dual-redundancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/ipsec-dual-redundancy.md -------------------------------------------------------------------------------- /scenarios/ipsec-multiple-vpn-device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/ipsec-multiple-vpn-device.md -------------------------------------------------------------------------------- /scenarios/ipsec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/ipsec.md -------------------------------------------------------------------------------- /scenarios/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/logs.md -------------------------------------------------------------------------------- /scenarios/name-resolution-with-azure-firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/name-resolution-with-azure-firewall.md -------------------------------------------------------------------------------- /scenarios/name-resolution-with-dns-private-resolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/name-resolution-with-dns-private-resolver.md -------------------------------------------------------------------------------- /scenarios/network-watcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/network-watcher.md -------------------------------------------------------------------------------- /scenarios/outbound-traffic-to-internet-firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/outbound-traffic-to-internet-firewall.md -------------------------------------------------------------------------------- /scenarios/p2s-vpn-certificate-always-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/p2s-vpn-certificate-always-on.md -------------------------------------------------------------------------------- /scenarios/p2s-vpn-certificate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/p2s-vpn-certificate.md -------------------------------------------------------------------------------- /scenarios/ping-any-to-any-avnm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/ping-any-to-any-avnm.md -------------------------------------------------------------------------------- /scenarios/ping-any-to-any-firewall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/ping-any-to-any-firewall.md -------------------------------------------------------------------------------- /scenarios/ping-any-to-any-gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/ping-any-to-any-gateway.md -------------------------------------------------------------------------------- /scenarios/publish-waf-fw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/publish-waf-fw.md -------------------------------------------------------------------------------- /scenarios/routing-with-bgp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/routing-with-bgp.md -------------------------------------------------------------------------------- /scenarios/routing-without-bgp-fw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/routing-without-bgp-fw.md -------------------------------------------------------------------------------- /scenarios/sftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/sftp.md -------------------------------------------------------------------------------- /scenarios/solution-north-south-inspection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/solution-north-south-inspection.md -------------------------------------------------------------------------------- /scenarios/spoke-01-inet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/spoke-01-inet.md -------------------------------------------------------------------------------- /scenarios/vnet-to-vnet-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/vnet-to-vnet-2.md -------------------------------------------------------------------------------- /scenarios/vnet-to-vnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/vnet-to-vnet.md -------------------------------------------------------------------------------- /scenarios/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicolgit/hub-and-spoke-playground/HEAD/scenarios/web.md --------------------------------------------------------------------------------