Introduction In this lesson we will learn how to setup FTP server in Windows operating system. What is FTP Server? File Transfer Protocol(FTP) is a protocol used to transfer files between computers in a network. FTP server is usually required when you want to share files with other users or when you need to backup
What is Mininet? Mininet is a software that emulates virtual network environment with OpenFlow support. It is great for learning, prototyping and testing SDN features and applications. How to install Mininet? There are several ways you can install Mininet. The easiest and recommended one is to go to https://github.com/mininet/mininet/wiki/Mininet-VM-Images and download the image for your
Introduction In this short Ansible tutorial we will go through the installation process of Ansible and its basic features. Ansible is an automation tool which allows us to manage remote servers without installing any agents on those remote machines. Only the control machine needs to have it installed. By “remote servers” I mean not only Linux/Windows
Introduction This guide will show you how you can perform a network speed test using two Linux machines. It will show you the actual network bandwidth between two points in your network. We will connect a Linux machine at each point in you network and generate traffic between them. We can use simple laptops, desktops
Introduction This post is about tcpdump – packet analyzer that comes preinstalled with any modern Linux distribution. tcpdump allows us to capture packets and either display them in real time or save them to a file for later analysis. We will look at several examples of using tcpdump to learn which options it has and
Introduction In this tutorial we will learn how to configure iptables which is a built-in Linux firewall. I will use Ubuntu 18.04 for demo, but you can use any other Linux distro. Before we get into actual configuration we will learn some theory behind iptables. iptables allows us to filter packets based on IP addresses,
Introduction In this guide we are going to learn how to use BASH shell scripting. Shell scripting is usually used for tasks such as file manipulation, program execution and task automation. Shell scripts contain the same commands you normally run in a terminal, it just allows you to group them together and run them in
Introduction In this guide we will create a systemd service and make it automatically start on a boot. We have already seen how we can make commands execute on a boot using cron scheduler in this post. Creating systemd service file is an alternative way of doing this, and since systemd is becoming more and
In this post we are going to look at how to run a command on startup using cron job scheduler in Ubuntu 18.04. What is cron? Cron is a Linux scheduler that allows us to run commands at a specific time. It is very flexible and allows to specify time, date, day of the week,
In this guide we are going to learn how to use Regular Expressions (regex) to match any pattern or text. This is often used in text editors, CLI commands(like grep or awk) and programming languages. What is regex? Regex are patterns used to match/find strings in a text. You might think that you can use