2 minute read

In a previous post, I explained the TCP-IP Model. The TCP-IP Model consists of 5 layers. Today, I will explain the Physical Layer Model, which is the lowest layer.

Physical Layer?

image

The Physical Layer sends information called bits from multiple devices to other networks. Bits are representations of data that computers can understand. It has a value of 0,1.

The copper network cable goes through a process called modulation to create and send bits. Modulation means varying the voltage of the electric charge moving along the cable. image

In Computer Networking, this modulation is called line coding. In modern networking, the word 10 gigabit network comes up a lot, which means that each cable processes 10 billion bits (0,1) in 1 second.

Twisted Pair Cabling

image

A twisted pair means that the copper wire is twisted. It is called twisted pair cable because it consists of a twisted cable pair. Twisting the cable like this reduces electromagnetic interference, that is, crosstalk. For example, cat6 cable uses 8 wires, i.e. 4 pairs. It determines how many pairs to use according to the transmission technology.

Duplexing

In modern networking, cables use duplex communication or simplex communication. image

simplex means a communication method that transmits information in only one direction. As shown in the figure, you can see that one device receives or transmits unilaterally. Typical examples are radio or TV. A broadcasting station transmits a radio wave, and the listener only receives the radio wave. image

Duplex is a method that allows the client and server to communicate in both directions. If so, how is this possible? A cable consists of several pairs, and each pair is reserved in advance in only one direction. If two-way communication is possible at exactly the same time, it is called full duplex.

image

If there is a problem with the network, the network reports that the link is degraded and does half-duplex communication. At this time, the network can communicate in both directions, but only in one direction at a time.

Network Ports and panel

Twisted Pair network cables have a plug at the end.

image

The most popular plug is the RJ45 plug (Registered Jack 45). image image As mentioned before, Switch has multiple ports, while Server or Desktop has 1 or 2 ports. image

All network ports have two ports: link led and activity led. LinkLed turns on when the two devices are well connected. activityLed blinks when data is being actively transmitted. These days, computer networks are so fast, Activity LEDs don’t really mean anything other than whether there’s traffic or not.

image Occasionally, there is a network port attached under the desk. These ports reach the patch-panel through the network cable, over the wall. There are many ports in the patch-panel, but it is just a container of ports. The cables from this patch panel are routed to a switch, router or computer.

References

Google-IT-support

Twisted-pairwiki

Simplex

Duplex

Leave a comment