Skip to content

Latest commit

 

History

History
118 lines (72 loc) · 4.15 KB

File metadata and controls

118 lines (72 loc) · 4.15 KB

What is Networking?

Room information

Type: Walkthrough
Difficulty: Info
Tags: -
Meta Tags: Walkthrough, Walk-through, Write-up, Writeup
Subscription type: Free
Description: 
Begin learning the fundamentals of computer networking in this bite-sized and interactive module.

Room link: https://tryhackme.com/room/whatisnetworking

Solution

Task 1 - What is Networking?

Networks are simply things connected. Networks can be found in all walks of life:

  • A city's public transportation system
  • Infrastructure such as the national power grid for electricity
  • Meeting and greeting your neighbours
  • Postal systems for sending letters and parcels

What is the key term for devices that are connected together?

Answer: Network

Task 2 - What is the Internet?

The first iteration of the Internet was within the ARPANET project in the late 1960s. This project was funded
by the United States Defence Department and was the first documented network in action. However, it wasn't
until 1989 when the Internet as we know it was invented by Tim Berners-Lee by the creation of the World Wide
Web (WWW). It wasn't until this point that the Internet started to be used as a repository for storing and
sharing information, just like it is today.

Who invented the World Wide Web?

Answer: Tim Berners-Lee

Task 3 - Identifying Devices on a Network

IP Addresses

An IP address (or Internet Protocol) address can be used as a way of identifying a host on a network for a
period of time.

An IP address is a set of numbers that are divided into four octets, such as 192.168.101.42.

MAC Addresses

Devices on a network will all have a physical network interface, which is a microchip board found on the
device's motherboard. This network interface is assigned a unique address at the factory it was built at,
called a MAC (Media Access Control) address. The MAC address is a twelve-character hexadecimal number split
into two's and separated by a colon.

What does the term "IP" stand for?

Answer: Internet Protocol

What is each section of an IP address called?

Answer: Octet

How many sections (in digits) does an IPv4 address have?

Answer: 4

What does the term "MAC" stand for?

Answer: Media Access Control

Deploy the interactive lab using the "View Site" button and spoof your MAC address to access the site.

What is the flag?

Answer: THM{<REDACTED>}

Task 4 - Ping (ICMP)

Ping is one of the most fundamental network tools available to us. Ping uses ICMP (Internet Control Message Protocol) packets to determine the performance of a connection between devices, for example, if the connection exists or is reliable.

The time taken for ICMP packets travelling between devices is measured by ping, such as in the screenshot below. This measuring is done using ICMP's echo packet and then ICMP's echo reply from the target device.

Pings can be performed against devices on a network, such as your home network or resources like websites. This tool can be easily used and comes installed on Operating Systems (OSs) such as Linux and Windows. The syntax to do a simple ping is ping IP address or website.

What protocol does ping use?

Answer: ICMP

What is the syntax to ping 10.10.10.10?

Answer: ping 10.10.10.10

What flag do you get when you ping 8.8.8.8?

Answer: THM{<REDACTED>}

Task 5 - Continue Your Learning: Intro to LAN

Continue your learning by joining the "Intro to LAN" room.

For additional information, please see the references below.

References