Book Image

Hands-On Linux Administration on Azure - Second Edition

By : Kamesh Ganesan, Rithin Skaria, Frederik Vos
Book Image

Hands-On Linux Administration on Azure - Second Edition

By: Kamesh Ganesan, Rithin Skaria, Frederik Vos

Overview of this book

Thanks to its flexibility in delivering scalable cloud solutions, Microsoft Azure is a suitable platform for managing all your workloads. You can use it to implement Linux virtual machines and containers, and to create applications in open source languages with open APIs. This Linux administration book first takes you through the fundamentals of Linux and Azure to prepare you for the more advanced Linux features in later chapters. With the help of real-world examples, you’ll learn how to deploy virtual machines (VMs) in Azure, expand their capabilities, and manage them efficiently. You will manage containers and use them to run applications reliably, and in the concluding chapter, you'll explore troubleshooting techniques using a variety of open source tools. By the end of this book, you'll be proficient in administering Linux on Azure and leveraging the tools required for deployment.
Table of Contents (14 chapters)
13
Index

firewalld and systemd

In Chapter 5, Advanced Linux Administration, systemd was covered as a system and service manager. In systemd, there are several options to add an extra layer of protection to your daemons and filesystem.

To be honest, in our opinion, it really makes sense to use Azure Firewall on top of Azure network security groups. It is easy to set up, provides central administration, and requires almost no maintenance. It provides security between VMs, virtual networks, and even different Azure subscriptions.

Note

There is an additional cost if you want to use this firewall. However, a Linux firewall doesn't incur any charges as it is a security measure installed on your machine.

The choice between Azure Firewall and a Linux firewall depends on many things:

  • Cost
  • Deployment and orchestration of your VMs and applications
  • Different roles: is there one administrator for everything?

I hope that after covering one of the Linux firewall implementations...