Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Google Cloud Platform icon
Labs

Monitoring Network Access

Understanding networking concepts is a more advanced concept for most system administrators, but it is essential to being successful. In this activity, the we will use the netcat (`nc`) utility to generate network traffic between two servers and view that traffic's appearance in a tool called `iptraf-ng`.

Google Cloud Platform icon
Labs

Path Info

Level
Clock icon Beginner
Duration
Clock icon 30m
Published
Clock icon Nov 12, 2018

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Install Client Utilities

    We've got to install the two packages that the team will use to generate and monitor traffic. Let's use YUM to get it done:

    [root@server1]# yum install iptraf-ng nc
    

    Repeat this on the other server:

    [root@server2]# yum install iptraf-ng nc
    
  2. Challenge

    Create the Traffic Log File

    On the first server, let's run iptraf-ng and go under Configure... In the menu, don't forget this isn't a menu we control with a mouse -- it's all keyboard. Make sure Logging is toggled to On. Set the log file path to: home/cloud_user/traffic_log.txt. Then go into IP traffic monitor. In the next menu, select eth0. Once we press Enter the logging will start.

    Listen for Traffic

    Let's open a second terminal into server1 and run sudo su right off. Once we're there, we're going to start netcat listening on post 2525 with this:

    [root@server1]# nc -l 2525
    

    Send Some Traffic

    Now, let's start talking. Back in the server2 window we've got open, send netcat traffic to server1 with this (where x.x.x.x is the internal IP of server1 that we'll see on the hands-on lab overview page):

    [root@server2]# nc x.x.x.x 2525
    

    We'll just land at a blinking cursor below the prompt, but we can type a message there and press Enter. Once we do, it will show up back in the window we're listening in on server1. A bunch of messages sent from server2 would look like this:

    [root@server2]# nc x.x.x.x 2525
    test
    test
    testing
    This is a test
    

    On server1, they would look like this when they arrive:

    [root@server1]# nc -l 2525
    test
    test
    testing
    This is a test
    

    That should be enough traffic for what we're doing. On server2, press Ctrl + C to kill the nc command we've got running and flip back over to the terminal we were running iptraf-ng in. Press x to stop the monitoring and get out, then choose Exit from the main menu.

    Examine the Log

    On server1, if we run ls /home/cloud_user we should see traffic_log.txt listed in the output. Read that to see if it was capturing what we need:

    [root@server1]# less /home/cloud_user/traffic_log.txt
    

    We should see some log entries showing traffic going from server2 to server1 on port 2525.

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

What's a lab?

Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.

Provided environment for hands-on practice

We will provide the credentials and environment necessary for you to practice right within your browser.

Guided walkthrough

Follow along with the author’s guided walkthrough and build something new in your provided environment!

Did you know?

On average, you retain 75% more of your learning if you get time for practice.

Start learning by doing today

View Plans