Red Hat Ansible Automation Platform 2 features an awesome new way to scale out your automation workloads: automation mesh.  If you are unfamiliar with automation mesh, I highly recommend reading Craig Brandt’s blog post What's new: an introduction to automation mesh which outlines how automation mesh can simplify your operations and scale your automation globally.  For this blog post, I want to focus on the technical implementation of automation mesh, what network ports it is using and how you can secure it. 

To quickly summarize both Craig’s blog post and our documentation, we separated the control plane (which includes the webUI and API) from the execution plane (where an Ansible Playbook is executed) in Ansible Automation Platform 2.  This allows you to choose where jobs run across execution nodes, so you can deliver and run automation closer to the devices that need it. In our implementation, there is four different types of nodes:

  • Control plane nodes: These are  accessed either via the WebUI and API. Execution capabilities are disabled on these nodes. 
  • Execution nodes: This is where Ansible Playbooks are actually executed.  This node will run an automation execution environment which in turn, runs the Ansible Playbook.
  • Hop nodes: These optional nodes can be used to interconnect control nodes and Execution nodes.
  • Hybrid nodes: This performs automation controller runtime functions as well as executing automation (not covered in this blog).

Before we get started, here are two great pieces of documentation that cover networking ports for automation mesh:

Ansible Automation Platform makes use of another upstream project called receptor.  This technology implements an overlay network connecting your controller, hop and execution nodes and is fully implemented with the Ansible Automation Platform installer. On each node in your automation overlay, there will be a receptor application that runs as a daemon. 

While every port that Ansible Automation Platform uses are configurable, the default network ports used to deploy and connect automation mesh are:

PortProtocolServiceAnsible var: Required for
22TCPSSHansible_portInstallation
27199TCPReceptorreceptor_listener_portListening port for receptor connection.
443*TCPPodmanN/AAccess to a container registry for execution environments (e.g. registry.redhat.io or private automation hub).  Configurable server side on your registry.
  • The port may vary based on your container registry configuration

For the purposes of this blog post, I am going to use a single site from the reference architecture linked above.  Here is picture of just Ansible Site 1:

In the above diagram you can see that there is an automation controller cluster containing three cluster nodes and two execution nodes.  In this particular example there is no hop node.  The way to set up automation mesh is via your inventory file of the Ansible Automation Platform installer.  The installer uses Ansible (we drink our own champagne!) to install and configure the overlay network between the control nodes and the execution nodes.

Here is the relevant portion of the inventory for the Ansible Automation Platform installer that will deploy automation mesh for us.

[automationcontroller]
controlplane-1.site1.example.com
controlplane-2.site1.example.com
controlplane-3.site1.example.com

[automationcontroller:vars]
node_type=control 
peers=execution_nodes 

[execution_nodes]
executionnode-1.site1.example.com 
executionnode-2.site1.example.com

In the above example the default values will be used since the receptor_listener_port and ansible_port are not set.  This means that Ansible Automation Platform will use port 22 to connect to the remote nodes, install the necessary files and configure the receptor daemon to listen for a connection on port 27199.

NOTE: There are multiple ways to view how your mesh network looks. You can do that before the platform install through the installer setup.sh and the following command:

./setup.sh -e generate_dot_file=”filename” 

This will generate a dot file which can be directly opened in a browser or fed to an online dot file viewer such as this one to see the topology.

 

Mesh topology view for the above inventory file

In addition, Ansible Automation Platform 2.2 introduced a new feature called automation topology viewer, which can show the mesh network in the automation controller once the platform installation is done. Read more about it here.

In this specific example, since the peers=execution_nodes is under the automation controller group, the connection will be initiated from the control nodes.  In this case, the outbound port is choosing a port from the Linux ephemeral port range as outlined in this knowledge base article on the Red Hat customer portal.  This is exactly how SSH behaves, where the outbound port is not set, but the listening port is using port 22 (by default).

On the execution nodes side, we will be listening on the predefined port, in this case TCP 27199.  We can see the daemon running using the systemctl command:

[rhel@executionnode-1 ~]$ sudo systemctl status receptor.service
● receptor.service - Receptor
   Loaded: loaded (/usr/lib/systemd/system/receptor.service; enabled; vendor preset: disabled)
  Drop-In: /etc/systemd/system/receptor.service.d
           └─override.conf
   Active: active (running) since Thu 2022-07-21 18:26:32 UTC; 7min ago
 Main PID: 737 (receptor)
    Tasks: 7 (limit: 46230)
   Memory: 59.9M
   CGroup: /system.slice/receptor.service
           └─737 /usr/bin/receptor -c /etc/receptor/receptor.conf

Jul 21 18:26:32 mesh-exec1 systemd[1]: Started Receptor.

Using a simple Linux utility like netstat we can easily see what ports automation mesh is using on one of the controller nodes:

root@controlplane-1:~# netstat -tuplna | grep receptor
tcp        0      0 10.132.2.52:36106       10.132.2.56:27199       ESTABLISHED 800/receptor      
tcp        0      0 10.132.2.52:35105       10.132.2.57:27199       ESTABLISHED 800/receptor 

Here is what it looks like on one of my execution nodes:

root@executionnode-1:~# netstat -tuplna | grep receptor
tcp6       0      0 :::27199                :::*                    LISTEN      757/receptor        
tcp6       0      0 10.132.2.56:27199       10.132.2.52:36106       ESTABLISHED 757/receptor

As you can see in the above output, the controller side has only outbound connection from random ephemeral ports, while the destination is port 27199.  While on the execution node, we are listening on port 27199 and connecting back to the controller node.

What if I want to establish connections from the execution nodes inbound to the controller nodes?  

We would remove peers=execution_nodes from under the automationcontroller group and create a peers=automationcontroller underneath the execution_nodes group.

[automationcontroller]
controlplane-1.site1.example.com
controlplane-2.site1.example.com
controlplane-3.site1.example.com

[automationcontroller:vars]
node_type=control 
[execution_nodes]
executionnode-1.site1.example.com peers=executionnode-2.site1.example.com
executionnode-2.site1.example.com
[execution_nodes:vars]
peers=automationcontroller 

Now the connection is initiated from the execution node and the listening port 27199 is on the controller nodes.  Now what if I want to customize the port for automation mesh?

[automationcontroller]
controlplane-1.site1.example.com
controlplane-2.site1.example.com
controlplane-3.site1.example.com

[automationcontroller:vars]
node_type=control 
receptor_listener_port=29182

[execution_nodes]
executionnode-1.site1.example.com peers=executionnode-2.site1.example.com
executionnode-2.site1.example.com


[execution_nodes:vars]
peers=automationcontroller

By setting the receptor_listener_port as a group_var all control nodes will now listen on 29182 instead of the default port 27199. However, in this scenario above, we are also coupling the execution nodes to each other.  The Ansible Automation Platform installer will make sure that execution node 2 is listening for that connection to be created.  Since we did not set the receptor_listener_port var, it will default to listening on port 27199.

How do I protect my automation mesh network?

There are two big parts to securing your automation mesh topology.  The first is authenticating your automation mesh network with a certificate authority (CA) and the second is consideration of your network and firewall policies.

Using a Certificate Authority

By default, automation mesh will set up a CA that verifies and signs individual node certificates in an automation mesh environment. Automation mesh supports X.509 compliant certificates.  Each node (control, hop and execution nodes) will have a .crt certfile that contains their public key and issues CA, and their private key in a .key keyfile.  These are stored in the /etc/receptor/tls directory while their CA cert is stored in the /etc/receptor/ca/ directory.

When a message is initiated for automation mesh, the control node will send its .cert (which contains its public key / signed by our CA).  When another automation mesh node receives this message, it will check if we support their CA and respond with its own cert.  The control node (our initiating node in this exchange) will extract the public key and generate and respond with a pre-master key. Both nodes will generate a “shared secret” from the pre-master key and then fully encrypted communication will take place for the remainder of the connection.

If you want to use your own CA, you can follow the documentation for additional details.

The diagram above illustrates how the TLS encrypted session is created.  This follows the standard SSL/TLS handshake method.  If you want to learn more about SSL/TLS encryption, consider the following walkthrough and overview which contains a nice handshake diagram: https://www.ssl.com/article/ssl-tls-handshake-overview

Network Security Considerations

The Ansible Automation Platform installer takes care of configuring all your automation infrastructure firewall ports.  This means the firewall policies and rules on Red Hat Enterprise Linux 8 or 9 are automatically configured when you deploy automation mesh.  I want to take a look at your network infrastructure and what considerations you can make for network security to automation mesh.

While major features for automation mesh include adding additional automation capacity and resilience, it can also act as a proxy for your automation overlay network to reach the infrastructure you are trying to automate.  Instead of having to open up ports to all your infrastructure, you can simply open up rules to allow control nodes to initiate a connection to execution nodes.  For example, look at the following diagram:

In this diagram, there are three Red Hat Enterprise Linux (RHEL) servers that we are trying to automate using port 22 (SSH) to establish a connection.  If my execution node was not in the same network as my RHEL servers, I would need to ensure that port 22 was open to each server in my DMZ (top part of the diagram). However, I can place my execution node in the same network as my RHEL servers.  Doing so enables me to only need one ACL/FW rule through my firewall per connection to that execution node (bottom part of the diagram).  If I have multiple control nodes and want to limit the connections to the execution node to one connection, I could use a hop node as shown below.

For example, in the firewall above,I can have a simple FW rule to only allow connections to my execution node to protect my DMZ network.  Note that the syntax is going to depend on the firewall or network vendor you are using (e.g. is it an AWS firewall, a Cisco IOS network switch, or a Linux firewall?)

permit [source] [destination] [port]
permit [IPv4 address of control node] [IPv4 address of execution node] [receptor listening port - 27199]

What about outgoing ports?  This works similar to any connection where most modern firewalls and gateways support stateful behavior or something similar to a zone-based firewall.  The “inside” network is trusted so the ephemeral outgoing port is allowed to remain for the duration of that connection.  This is identical to the behavior within your network to SSH connections where the outgoing port is left open in the firewall for that specific TCP connection.  Of course, this can be customized by limiting the ephemeral port range that Linux uses and forcing deterministic outgoing port range.

As you can see, automation mesh is incredibly powerful.  It can add a lot of flexibility to different enterprise environments allowing IT automators to extend their automation anywhere without compromising their security.

What can I do next?

Whether you are beginning your automation journey or are a seasoned veteran, there are a variety of resources to enhance your automation knowledge:


About the author

Sean is a Principal Technical Marketing Manager, Ansible, where he brings over 10 years of experience building and automating computer networks. Sean previously worked for both Cumulus Networks (acquired by Nvidia) and Cisco Systems where he helped customers deploy, manage and automate their network infrastructure. He resides in Chapel Hill, NC with his wife and children and tweets from @IPvSean.

Read full bio