Configuring private endpoints – Implementing and Managing Virtual NetworkingConfiguring private endpoints – Implementing and Managing Virtual Networking

Configuring private endpoints Azure Private Link enables you to access Platform as a Service (PaaS) services such as Azure Storage and SQL databases, and Azure-hosted services over a private endpoint [...]

Implementing Azure Firewall and Azure Bastion – Securing Access to Virtual NetworksImplementing Azure Firewall and Azure Bastion – Securing Access to Virtual Networks

Implementing Azure Firewall and Azure Bastion Let’s have a look at Azure Firewall and the different SKUs available and what functionality they have. Azure Firewall When it comes to networking [...]

Azure Bastion 3 – Securing Access to Virtual NetworksAzure Bastion 3 – Securing Access to Virtual Networks

$NetRule1 = New-AzFirewallNetworkRule -Name “Allow-DNS” -Protocol UDP -SourceAddress 10.0.2.0/24 `-DestinationAddress 8.8.8.8 -DestinationPort 53$NetRuleCollection = New-AzFirewallNetworkRuleCollection -Name RCNet01 -Priority 200 `-Rule $NetRule1 -ActionType “Allow”$Azfw.NetworkRuleCollections.Add($NetRuleCollection)Set-AzFirewall -AzureFirewall $Azfw In this section of code, [...]