ICS 31: COMPUTER NETWORKS and DATA COMMUNICATION - PowerPoint PPT Presentation

1 / 23
About This Presentation
Title:

ICS 31: COMPUTER NETWORKS and DATA COMMUNICATION

Description:

It links individual stars together by linking the hubs/switches. ... switches make decisions based on MAC addresses and hubs don't make decisions at all. ... – PowerPoint PPT presentation

Number of Views:60
Avg rating:3.0/5.0
Slides: 24
Provided by: xavi61
Category:

less

Transcript and Presenter's Notes

Title: ICS 31: COMPUTER NETWORKS and DATA COMMUNICATION


1
ICS 31 COMPUTER NETWORKS and DATA COMMUNICATION
  • The Teaching Topology

2
TOPOLOGY
  • The structure of the network
  • 2 PARTS
  • PHYSICAL TOPOLOGY
  • The actual layout of the wire (media)
  • LOGICAL TOPOLOGY
  • defines how the media is accessed by the hosts
  • how the hosts communicate across the medium

3
PHYSICAL TOPOLOGIES
  • A bus topology uses a single backbone segment
    (length of cable) that all the hosts connect to
    directly.
  • A ring topology connects one host to the next and
    the last host to the first. This creates a
    physical ring of cable.
  • A star topology connects all cables to a central
    point of concentration. This point is usually a
    hub or switch.

4
PHYSICAL TOPOLOGIES
  • An extended star topology uses the star topology
    to be created. It links individual stars together
    by linking the hubs/switches. This, as you will
    learn later in the chapter, will extend the
    length and size of the network.
  • A hierarchical topology is created similar to an
    extended star but instead of linking the
    hubs/switches together, the system is linked to a
    computer that controls the traffic on the
    topology.

5
PHYSICAL TOPOLOGIES
  • A mesh topology is used when there can be
    absolutely no break in communications, for
    example the control systems of a nuclear power
    plant. This also reflects the design of the
    Internet, which has multiple paths to any one
    location. 

6
(No Transcript)
7
LOGICAL TOPOLOGY
  • Broadcast topology simply means that each host
    sends its data to all other hosts on the network
    medium. There is no order the stations follow to
    use the network, it is first come, first serve.
    This is the way that Ethernet works.

8
LOGICAL TOPOLOGY
  • Token-passing controls network access by passing
    an electronic token sequentially to each host.
    When a host receives the token, that means that
    that host can send data on the network. If the
    host has no data to send, it passes the token to
    the next host and the process repeats itself.

9
LAN DEVICES
  • Layer 1 Device
  • MEDIA
  • The basic functions of media are to carry a flow
    of information, in the form of bits and bytes
    through a LAN
  • Other than wireless LANs (that use the
    atmosphere, or space, as the medium) networking
    media confine network signals to a wire, cable,
    or fiber
  • You can build computer networks with many
    different media types. Some of the advantages and
    disadvantages are
  • Cable length
  • Cost
  • Ease of installation

10
Layer 1 Device
  • Repeaters
  • One of the disadvantages of the type of cable
    that we primarily use ( CAT 5 UTP) is cable
    length.
  • The maximum length for UTP cable in a network is
    100 meters (approx. 333 feet). If we need to
    extend our network beyond that limit, we must add
    device to our network. This device is called a
    REPEATER.
  • It also comes from telegraph, telephone,
    microwave and optical communications, all of
    which use repeaters to strengthen their signals
    over long distances, or else the signals will
    eventually fade or die out.

11
REPEATERS
  • The purpose of a repeater is to regenerate and
    retime network signals at the bit level to allow
    them to travel a longer distance on the media.
  • The term repeater traditionally meant a single
    port in and a single port out device.
  • Repeaters are classified as Layer 1 devices in
    the OSI model because they act to only on the bit
    level and look at no other information.

12
Layer 1 Device
  • HUB
  • The purpose of a hub is to regenerate and retime
    network signals. This is done at the bit level to
    a large number of hosts (4,8,24) using a process
    known as concentration.
  • You will notice that this definition is very
    similar to the repeater, which is why a hub is
    also known as a multi-port repeater. The
    difference is the number of cables that connect
    to the device.

13
HUB
  • Two reasons for using HUBS
  • To create a central connection point for the
    wiring media
  • Increase the reliability of the network
  • The reliability of the network is increased by
    allowing any single cable to fail without
    disrupting the entire network.
  • Hubs are considered Layer 1 devices because they
    only regenerate the signal and broadcast it out
    to all of their ports.

14
HUBS
  • Classifications
  • ACTIVE
  • Most modern hubs are active they take energy
    from a power supply to regenerate network signals
  • PASSIVE
  • It merely split the signal for multiple users,
    like using a Y cord on a CD player to use more
    than one set of headphones.
  • Passive hubs do not regenerate bits, so they do
    not extend cables length, they only allow two or
    more hosts to connect to the same cable segment.
  • INTELLIGENT
  • Have console ports which means they can be
    programmed to manage network traffic

15
HUBS
  • Classifications
  • DUMB HUBS
  • Simply take an incoming networking signal and
    repeat it to every port without the ability to do
    any management.

16
Layer 2 Device
  • Bridge
  • A bridge is a Layer 2 device designed to connect
    two LAN segments. The purpose of a bridge is to
    filter traffic on a LAN, to keep local traffic
    local, yet allow connectivity to other parts
    (segments) of the LAN for traffic that has been
    directed there.
  • You may wonder, then, how the bridge knows which
    traffic is local and which is not. The answer is
    the same one that the postal service uses when
    asked how it knows which mail is local. It looks
    at the local address. Every networking media has
    a unique MAC address on the NIC, the bridge keep
    track of which MAC addresses are on each side of
    the bridge and makes its decisions based on this
    MAC address list.

17
BRIDGE
  • The term bridge refers to a device which has just
    two ports. However, you will see references to
    bridges with 3 or more ports.

18
Layer 2 Device
  • SWITCHES
  • A layer 2 device just as a bridge is. In fact, a
    switch is called a multi-port bridge, just like a
    hub is called a multi-port repeater. The
    difference between the hub and switch is that
    switches make decisions based on MAC addresses
    and hubs dont make decisions at all.
  • Because of the decisions that switches make, they
    make a LAN much more efficient. They do this by
    switching data only out the port to which the
    proper host is connected. In contrast, a hub will
    send the data out all of its ports so that all of
    the hosts have to see and process (accept or
    reject) all of the data.

19
SWITCHES
  • Switches at first glance often look like hubs.
    Both hubs and switches have many connection
    ports, since part of their function is
    connectivity concentration (allowing many devices
    to be connected to one point in the network). The
    difference between a hub and a switch is what
    happens inside the device.
  • The purpose of a switch is to concentrate
    connectivity, making data transmission more
    efficient. For now, think of the switch as
    something that is able to combine the
    connectivity of a hub with the traffic regulation
    of a bridge on each port.

20
Layer 3 Device
  • Router
  • The router is the first device that you will work
    with in the OSI network layer. Working at Layer 3
    allows the router to make decisions based on
    groups of network addresses (classes) as opposed
    to individual layer 2 MAC addresses. Routers can
    also connect different layer 2 technologies, such
    as Ethernet, Token-Ring and FDDI. However,
    because of their ability to route packets based
    on Layer 3 information, routers have become the
    backbone of the Internet, running IP protocol.

21
Router
  • The purpose of a router is to examine incoming
    packets, choose the best path for them through
    the network and switch them to the proper
    outgoing port. Router are the most important
    traffic regulating devices on large networks.
    They enable virtually any types of computer to
    communicate with any other computer anywhere in
    the world.

22
Layer 1-7 device
  • CLOUDS
  • The cloud symbol suggest another network, perhaps
    the entire Internet. It reminds us that there is
    a way to connect to that other network (the
    Internet), but does not supply all the details of
    either the connection or the network.
  • The purpose of the cloud is to represent a large
    group of details that are not pertinent to a
    situation, or description, at a given time.
  • Cloud is not really a single device, but a
    collection of devices that operate at all levels
    of the OSI model.

23
(No Transcript)
Write a Comment
User Comments (0)
About PowerShow.com