Azure Networking Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 4: Line 4:
=Virtual Network=
=Virtual Network=
==Virtual Network Operations==
==Virtual Network Operations==
===Create Virtual Network===
* [[Azure_Networking_Operations#Create_Virtual_Network|Create Virtual Network]]
<syntaxhighlight lang='bash'>
=Load Balancer=
az network vnet create --resource-group <rg-name> --name <vnet-name> --address-prefixes 10.0.0.0/16
=Network Interface=
</syntaxhighlight>
=Network Security Group=
Result:
{{External|https://docs.microsoft.com/en-us/azure/virtual-network/network-security-groups-overview}}
<syntaxhighlight lang='json'>
 
{
=Private DNS Zone=
  "newVNet": {
=Private Link Service=
    "addressSpace": {
=Public IP Address=
      "addressPrefixes": [
        "10.0.0.0/16"
      ]
    },
    "bgpCommunities": null,
    "ddosProtectionPlan": null,
    "dhcpOptions": {
      "dnsServers": []
    },
    "enableDdosProtection": false,
    "enableVmProtection": false,
    "etag": "W/\"a7eb586f-1bb6-409a-aac3-6313a613dffb\"",
    "etag": "W/\"99999999-9999-9999-9999-999999999999\"",
    "id": "/subscriptions/99999999-9999-9999-9999-999999999999/resourceGroups/some-rg/providers/Microsoft.Network/virtualNetworks/some-vnet",
    "ipAllocations": null,
    "location": "eastus2",
    "name": "some-vnet",
    "provisioningState": "Succeeded",
    "resourceGroup": "some-rg",
    "resourceGuid": "99999999-9999-9999-9999-999999999999",
    "subnets": [],
    "tags": {},
    "type": "Microsoft.Network/virtualNetworks",
    "virtualNetworkPeerings": []
  }
</syntaxhighlight>

Latest revision as of 23:08, 18 August 2021