Protocols and Ports for DevOps

Aditya MallAditya Mall
5 min read

In the world of DevOps, communication between different systems, applications, and services is essential. This communication happens using protocols and portsβ€”think of them as the language and doors used to exchange information. Let's break this down in simple terms.


What Are Protocols?

A protocol is like a set of rules that two devices must follow to talk to each other. Just like humans use different languages (English, Hindi, etc.), computers use different protocols for communication.

Common Protocols in DevOps

ProtocolPurposeDevOps Use Case
HTTP (HyperText Transfer Protocol)Used for web communicationDeploying web applications
HTTPS (Secure HTTP)Secure web communication with encryptionSecure web apps & APIs
SSH (Secure Shell Protocol)Secure remote access to serversManaging remote servers
FTP (File Transfer Protocol)Transfer files between systemsUploading/downloading server files
SFTP (Secure FTP)Secure file transferSafe file exchange
DNS (Domain Name System)Converts website names into IP addressesResolving domain names
SMTP (Simple Mail Transfer Protocol)Sends emailsAutomated email notifications
IMAP/POP3Receives emailsFetching logs or reports via email
NTP (Network Time Protocol)Syncs system timeKeeping servers' time in sync
LDAP (Lightweight Directory Access Protocol)Manages user authentication and permissionsManaging user access control
SNMP (Simple Network Management Protocol)Monitors network devicesTracking server health

What Are Ports?

A port is like a specific door number in a building that allows a particular type of traffic to pass through. Every communication type (protocol) uses a specific port number to send and receive data.

Common Ports in DevOps

Port NumberProtocolPurpose
22SSHSecure remote server login
80HTTPWeb traffic (unsecured)
443HTTPSSecure web traffic
21FTPFile transfer
25SMTPSending emails
53DNSDomain name resolution
123NTPTime synchronization
3306MySQLDatabase access
5432PostgreSQLDatabase access
6379RedisCaching data
27017MongoDBNoSQL database access
8080Alternative HTTPHosting test servers

Why Do Protocols & Ports Matter in DevOps?

In DevOps, ensuring smooth, secure, and automated communication between systems is crucial. Here’s why understanding protocols and ports is important:

βœ… Security & Access Control

  • Blocking unused ports prevents hackers from accessing your system.

  • Using SSH (Port 22) securely connects DevOps engineers to cloud servers.

  • Running web apps on HTTPS (Port 443) ensures data encryption.

πŸ”„ Automation & CI/CD Pipelines

  • Automating deployments over HTTP/HTTPS is essential for modern web apps.

  • DevOps tools like Ansible, Jenkins, and Kubernetes communicate using different ports.

πŸ“‘ Server Monitoring & Troubleshooting

  • Monitoring tools use SNMP (Port 161) to track server performance.

  • NTP (Port 123) keeps system clocks synchronized to avoid issues.

πŸ—„ Database Management

  • Web apps and services connect to databases like MySQL (Port 3306) and PostgreSQL (Port 5432) for data storage.

Conclusion

For a DevOps Engineer, understanding protocols and ports helps in:
βœ… Setting up secure and efficient communication between applications
βœ… Ensuring automation and CI/CD pipelines work smoothly
βœ… Managing network security by restricting unnecessary access
βœ… Monitoring server health and troubleshooting issues

Tools to Test and Monitor Ports in DevOps

Here are some essential tools that can help you test, monitor, and secure ports in a DevOps workflow:


1️⃣ Network Scanning & Port Checking

πŸ”Ή Nmap (Network Mapper)

πŸ“Œ Use case: Scan servers for open ports and check for vulnerabilities.
πŸ’» Command Example:

nmap -p 22,80,443 192.168.1.1

πŸ›  Installation: Available on Linux, macOS, and Windows.

πŸ”Ή Netstat (Built-in for Windows/Linux)

πŸ“Œ Use case: Check active ports and network connections on your machine.
πŸ’» Command Example:

netstat -tulnp

πŸ”Ή Telnet

πŸ“Œ Use case: Test if a specific port is open on a remote server.
πŸ’» Command Example:

telnet example.com 443

πŸ”Ή NC (Netcat)

πŸ“Œ Use case: Open a port listener for debugging network issues.
πŸ’» Command Example:

nc -zv example.com 80

2️⃣ Port Monitoring & Alerting

πŸ”Ή Prometheus + Grafana

πŸ“Œ Use case: Monitor servers, open ports, and network traffic in real time.
πŸ”— Why? Used in Kubernetes, Docker, and cloud environments.
πŸ’» Setup:

  • Install Prometheus to collect metrics

  • Use Grafana to visualize and set alerts


3️⃣ Security & Firewall Management

πŸ”Ή UFW (Uncomplicated Firewall) – Linux

πŸ“Œ Use case: Allow/block specific ports on Linux servers.
πŸ’» Examples:

  • Allow SSH (port 22):

      sudo ufw allow 22/tcp
    
  • Deny HTTP (port 80):

      sudo ufw deny 80/tcp
    

πŸ”Ή IPTables

πŸ“Œ Use case: Advanced firewall management for Linux.
πŸ’» Example (Block access to port 3306 from outside):

sudo iptables -A INPUT -p tcp --dport 3306 -j DROP

πŸ”Ή AWS Security Groups (For Cloud)

πŸ“Œ Use case: Restrict open ports in cloud environments (AWS, Azure, GCP).

  • Example:

    • Allow only SSH (Port 22) from your IP

    • Block all other external access


Final Thoughts

πŸ”Ή For scanning & testing: Use Nmap, Netstat, Telnet, Netcat
πŸ”Ή For monitoring & alerts: Use Prometheus, Grafana, Nagios, Zabbix
πŸ”Ή For security: Use UFW, IPTables, AWS Security Groups

0
Subscribe to my newsletter

Read articles from Aditya Mall directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Aditya Mall
Aditya Mall