Thursday, October 30, 2008

The Physical Layer

The Physical layer in the OSI model is responsible for binary transmission. This involves electronic circuits, wires, connector, voltages and data rates or speed of transmission. One of the most commonly used device that belongs to this layer is the NIC (Network Interface Card). There are different NICs for different types of networking protocol. There are also different NICs for different types of networking media or wires. For laptops that do not have a built-in network interface card, a special device called PCMCIA (Personal Computer Memory Card International Association) is used.

There are three things that you need to consider in selecting a NIC. Two of which is already mentioned, the type of Protocol your want to use in your network, the type of Media, and lastly the type of System Bus your computer have. It is called Bus because it is a collection of wires on the motherboard which carries data and timing signals from one part of a computer to another.

Types of Protocols you need to consider:

  • Ethernet
  • Token Ring
  • FDDI

 

Types of Media:
  • Twisted-pair
  • Coaxial
  • Wireless
  • Fiber-optic

Type of System Bus:
  • PCI - Peripheral Component Interconnect
  • ISA - Industry Standard Architecture


CCNA Exam tip:


This would possibly come out in the CCNA Exam. Situations that require NIC installation:

  • Installation of a NIC on a PC that does not already have one
  • Replacement of a malfunction or damaged NIC
  • Upgrade from a 10Mbps NIC to a 10/100/1000Mbps NIC
  • Change to a different type of NIC, such as wireless
  • Installation of secondary, or backup, NIC for network security reasons


Another very common Physical Layer device is the Modem (Modulator - Demodulator). This device provides the computer with connectivity to a telephone line. It converts the data in digital format to analog format and vice versa.

CCNA Exam tip:

This would possibly come out in the CCNA Exam. The ping command is the command used to test network connectivity. It is a basic program that can verity whether the specified IP address exist in the network and is reachable. In checking IPv6 address, you may use the ping6 command. Going deeper inside the ping command, this command will send an ICMP/ICMPv6 ECHO_REQUEST packets to elicit an ICMP/ICMPv6 ECHO_REPLY from a network host/computer.

The basic ping command synopsys:
ping <ip address> - where <ip address> is the address of the host/computer that you want to test connectivity with.

ping 127.0.0.1 - this is an internal loopback test. If your TCP/IP network configuration configuration is working well, then you will get a reply from 127.0.0.1. If you want to try IPv6, its loopback address is ::1 which is a shortcut for 0000:0000:0000:0000:0000:0000:0000:0001.

Wednesday, October 29, 2008

The OSI Model

In the beginning, when man discovered computer networks and its importance... there was chaos. Different brilliant people created their own brilliant ways of sending data electronically from one computer to another computer. As an end result, computers made from one vendor could not directly communicate with computers made from a different vendor for they do not follow the same communication protocols. A protocol is a set of rules or an agreement that determines the format and transmission of data.

With this the ISO (International Organization for Standardization) passed a standard to different vendors a set of standards that ensure greater compatibility and interoperability of various computer network devices.

This new standard is called the Open System Interconnection Model (or OSI Model or commonly known as the 7 OSI Layers).

The 7 OSI Layers:

  1. Physical

  2. Data Link

  3. Network

  4. Transport

  5. Session

  6. Presentation

  7. Application


The benefits of the OSI Model are:

  • It reduces complexity of the entire computer network design by slicing it into 7 different areas. You can then set your focus to one area instead of the whole computer network system.

  • It standardizes interfaces. You can now clearly determine which type of interface you are going to adopt for your network so that all computers can commuication with each other without problems.

  • It facilitates modular engineering for you can now focus your design to one particular layer at a time.

  • While one particular vendor focuses only its development or enhancements to a particular layer, others can also enhance other layers. Thus accelerates the evolution of computer networks.

  • Lastly, since it reduces the complexity of the design, it also simplifies the teaching and learning of computer networking.