SYMPLIFY LEARNING

Docker Networking

At a high level, Docker Networking comprises 3 major components: CNM is a network specification that defines how containers connect and communicate across different environments. libnetwork is Docker’s implementation of the CNM. (Think of CNM as the architectural drawing, and libnetwork is the builder’s implementation of that drawing). Drivers extend the CNM by implementing network … Read more

Getting started with Docker

image with docker logo

Containers Before we go into the details of Docker, we first need to talk briefly about what containers are. Containers are lightweight, portable units of software that bundle an application (often a microservice) with its dependencies, and run in isolated environments on a shared OS kernel. The key benefit the containers provide is in the … Read more

Azure RBAC

When it comes to planning your authentication and authorization strategy in Azure, it is useful to know what you can do with Azure RBAC roles. Azure RBAC is an authorization fabric built on Azure Resource Manager. It is useful for defining fine-grained access privileges for accessing resources in Azure. The key concepts of Azure RBAC … Read more

Using CloudWatch Log Insights

Cloudwatch Insights allows you to search and analyze your log data that was sent to Amazon CloudWatch. CloudWatch Log Insights automatically discovers fields in logs from AWS services such as Amazon Route 53, AWS Lambda, AWS CloudTrail and Amazon VPC When you navigate to Logs Insights in the AWS Console and select the log group … Read more

Capture filters in Wireshark

Capture filters are filters specified in Wireshark BEFORE you start the capture. It allows you limit the traffic captured to the packets that match your filter. This is different from the display filters in Wireshark. You use the display filters AFTER you have captured packets so that the packets that are displayed are limited to … Read more

Using dumpcap for extended packet captures

What is dumpcap? Dumpcap is a network traffic dump tool that is installed as part of the Wireshark installation package. Because Wireshark offers a simple-to-use GUI, we are usually able to use Wireshark without needing to interact with some of the lower level packages that really make Wireshark work. One of such packages is dumpcap. … Read more

Useful tips when using Wireshark

1. Creating separate profiles for different troubleshooting tasks By default, when you open Wireshark, you are running the default profile. You can confirm this by looking at the bottom right corner of your Wireshark interface. Now, within that default profile, you can make changes. For example, you can add a column for ‘Destination port’. If … Read more