Difference between revisions of "Azure/Networking"

From Ever changing code
Jump to navigation Jump to search
(Created page with "This is being innovated by Microsoft quite often but basis should stay the same. = Service endpoints = Virtual Network (VNet) service endpoints extend your virtual network pr...")
 
Line 1: Line 1:
This is being innovated by Microsoft quite often but basis should stay the same.
This is being innovated by Microsoft quite often but basis should stay the same.
= Azure Virtual Network =
== Resources ==
*[https://docs.microsoft.com/en-gb/azure/virtual-network/virtual-networks-overview]
= Routing =
== Resources ==
*[https://docs.microsoft.com/en-gb/azure/virtual-network/virtual-networks-udr-overview] Virtual network traffic routing


= Service endpoints =
= Service endpoints =

Revision as of 20:09, 7 December 2018

This is being innovated by Microsoft quite often but basis should stay the same.

Azure Virtual Network

Resources

Routing

Resources

  • [2] Virtual network traffic routing

Service endpoints

Virtual Network (VNet) service endpoints extend your virtual network private address space and the identity of your VNet to the Azure services, over a direct connection. Allow you to secure your Azure service resources to only your virtual networks. Traffic from your VNet to the Azure service always remains on backbone network.

When enabling a service endpoint for an existing subnet, ensure that no critical tasks are running on any resource in the subnet. Service endpoints switch routes on every network interface in the subnet from using the default route with the 0.0.0.0/0 address prefix and next hop type of Internet, to using a new route with the address prefixes of the service, and a next hop type of VirtualNetworkServiceEndpoint. During the switch, any open TCP connections may be terminated. The service endpoint is not enabled until traffic flows to the service for all network interfaces are updated with the new route. To learn more about routing, see Routing overview.

Resources