Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Azure Networking Cookbook, Second Edition

You're reading from   Azure Networking Cookbook, Second Edition Practical recipes for secure network infrastructure, global application delivery, and accessible connectivity in Azure

Arrow left icon
Product type Paperback
Published in Dec 2020
Publisher Packt
ISBN-13 9781800563759
Length 298 pages
Edition 2nd Edition
Tools
Concepts
Arrow right icon
Author (1):
Arrow left icon
Mustafa Toroman Mustafa Toroman
Author Profile Icon Mustafa Toroman
Mustafa Toroman
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Preface 1. Azure Virtual Network 2. Virtual machine networking FREE CHAPTER 3. Network Security Groups 4. Managing IP addresses 5. Local and virtual network gateways 6. DNS and routing 7. Azure Firewall 8. Creating hybrid connections 9. Connecting to resources securely 10. Load balancers 11. Traffic Manager 12. Azure Application Gateway and Azure WAF 13. Azure Front Door and Azure CDN Index

Creating a new firewall with PowerShell

Alternatively, we can deploy Azure Firewall using PowerShell. This method is especially useful when services are part of a large deployment or any deployment that needs to be automated.

How to do it...

There are several steps that need to be executed in order to create a new firewall with Azure PowerShell:

  1. First, we define the parameters:
    $RG="Packt-Networking-Script"
    $Location="West Europe"
    $VNetName = "Packt-Script"
    $AzFwIpName = "AzFW-Public-IP"
    $AzFwname = "AzFw-Script"
  2. Then, we need to create a separate subnet for Azure Firewall:
    $vnet = Get-AzVirtualNetwork -ResourceGroupName $RG '
    -Name $VnetName
    Add-AzVirtualNetworkSubnetConfig -Name AzureFirewallSubnet '
    -VirtualNetwork $vnet '
    -AddressPrefix 10.11.3.0/24
    Set-AzVirtualNetwork -VirtualNetwork $vnet 
  3. Next, we need to create a public IP address for Azure Firewall:
    $AzFwIp = New-AzPublicIpAddress -Name ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime