Computer Network Tutorial: Guided Media

beginner
16 min

Computer Network Tutorial: Guided Media

Welcome to our comprehensive guide on Guided Media! In this lesson, we'll delve into the three primary types of guided media used for data transmission in computer networks: Twisted Pair, Coaxial, and Fiber Optic cables. Let's embark on this exciting journey! 🎯

Twisted Pair Cables

Twisted Pair cables are the most common type of cable used in local area networks (LANs). They consist of two insulated copper wires twisted together to reduce electromagnetic interference.

Types of Twisted Pair Cables

  1. Unshielded Twisted Pair (UTP): These are the most common type of twisted pair cables. They don't have any shielding around the wire pairs, making them less expensive but more susceptible to interference.

  2. Shielded Twisted Pair (STP): These cables have an additional layer of shielding around the wire pairs to reduce electromagnetic interference.

Advantages and Disadvantages

  • Advantages: Low cost, easy to install, and flexible.
  • Disadvantages: Prone to interference and have a limited transmission distance compared to other types of cables.

Practical Example

Let's create a simple network using a UTP cable.

bash
$ ifconfig eth0

This command will show the network configuration of your Ethernet interface. If you're connected via UTP cable, you should see the details related to it.

📝 Note: In larger networks, UTP cables are often used in combination with switches and routers to extend the network's reach.


Coaxial Cables

Coaxial cables, also known as coax cables, consist of a copper wire surrounded by insulating material, a braided shield, and an outer insulating layer. They are commonly used for cable television and Ethernet networks.

Types of Coaxial Cables

  1. RG-58: A small, flexible coaxial cable used for short-distance applications.
  2. RG-59: A larger, more rigid coaxial cable commonly used for cable television.
  3. RG-6: A larger coaxial cable with a thicker inner conductor, used for cable television and some Ethernet applications.

Advantages and Disadvantages

  • Advantages: Good signal quality, can carry a strong electrical signal over long distances, and are resistant to electromagnetic interference.
  • Disadvantages: Bulkier and less flexible than twisted pair cables, and the connections are more complex.

Practical Example

In this example, let's use a coaxial cable to connect to a cable modem for internet access.

bash
$ ping www.google.com

This command will test the connectivity between your device and Google's servers. If you're connected via coaxial cable, the response should be similar to this:

bash
PING www.google.com (216.58.216.160) 56(84) bytes of data. 64 bytes from lga29s21-in-f14.1e100.net (216.58.216.160): icmp_seq=1 ttl=56 time=14.5 ms 64 bytes from lga29s21-in-f14.1e100.net (216.58.216.160): icmp_seq=2 ttl=56 time=14.6 ms 64 bytes from lga29s21-in-f14.1e100.net (216.58.216.160): icmp_seq=3 ttl=56 time=14.5 ms ^C --- www.google.com ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2004ms rtt min/avg/max/mdev = 14.509/14.573/14.630/0.054 ms

📝 Note: Coaxial cables are not commonly used for Ethernet networks in modern times, but they're still widely used for cable television.


Fiber Optic Cables

Fiber optic cables use light to transmit data over long distances. They are made up of a core, cladding, and an outer jacket. The core is filled with glass or plastic and contains the light signal, while the cladding has a lower refractive index to contain the light within the core.

Types of Fiber Optic Cables

  1. Single-mode Fiber (SMF): These cables use a small core and a laser as a light source. They are designed for long-distance transmission.

  2. Multimode Fiber (MMF): These cables use a larger core and LEDs as light sources. They are commonly used for short-distance applications.

Advantages and Disadvantages

  • Advantages: High bandwidth, immunity to electromagnetic interference, and capable of transmitting data over long distances.
  • Disadvantages: More expensive than twisted pair and coaxial cables, and the connections require precise alignment.

Practical Example

Let's consider a fiber optic connection between two buildings for a high-speed internet service.

bash
$ speedtest

This command will show your internet speed. If you're connected via fiber optic cable, you should see a high download and upload speed.

💡 Pro Tip: Fiber optic cables are the backbone of modern telecommunications networks and are essential for high-speed data transmission.


Quiz

Quick Quiz
Question 1 of 1

Which type of cable is the most commonly used in local area networks?


That concludes our deep dive into Guided Media! With this knowledge, you're well on your way to understanding the fundamental building blocks of computer networks. 🌐 Keep exploring, and happy learning! 📝 💡 ✅