SlideShare a Scribd company logo
1 of 54
Download to read offline
Network Administration
( Structured Cabling
Ipv4, Basic LAN)
Cyrene T. Palparan, ECE, CCNA
Structured cabling
Structured cabling terms
MDF(main distribution frame)- A telecommunications room or
wiring closet, in a small, single-floor network
   It is where all of the network cable concentrates to a single
point
IDF(Intermediate Distribution Facilities)-additional wiring
closets required
Some common materials
 Modular jack   face plate




                Cable manager

  Patch panel
Some common materials
 Modular jack




   Cable manager
Some terms to considered in
designing
Backbone cable: The part of a network that handles the
major traffic
Cable labeling system: Proper labeling system or scheme to
identify cables
Electrical considerations: Premises should have adequate
outlets to support electrical requirements of network
equipment
Cable management system: Series of trays and straps used
to guide and protect cable runs
STRUCTURED CABLING BEST
PRACTICES
1.Type of cable should depends on the data that will flow on it.

2. Cable standards specify maximum lengths for different types
of cables. Always adhere to the length restrictions for the type of
cable being installed.

3. UTP, like all copper cable, is susceptible to EMI. It is
important to install cable away from sources of interference such
as high-voltage cables and fluorescent lighting. Televisions,
computer monitors and microwaves are other possible sources
of interference. In some environments it may be necessary to
install data cables in conduit to protect them from EMI and RFI.
4. Improper termination and the use of low quality cables and
connectors can degrade the signal carrying capacity of the
cable. Always follow the rules for cable termination and test
to verify that the termination has been done properly.

5. Test all cable installations to ensure proper connectivity
and operation.

6. Label all cables as they are installed, and record the
location of cables in network documentation.
Ip v4 address
The IP address is a logical network address that identifies a
particular host(alias)
Operates on the Network Layer
Ipv4 structure
 An IP address is simply a series of 32 binary bits (ones and
 zeros). It is very difficult for humans to read a binary IP
 address. For this reason, the 32 bits are grouped into four 8-
 bit bytes called octets.

 11000000.10101000.0000000100000101
Subnet mask (basic)
     -allows the flow of network
 traffic between hosts to be
 segregated based on a network
 configuration


255.255.255.0—11111111.11111111.11111111.00000000
 means the first 3 octet are for network
And the last octet is for the host
Cidr=24
Now try….
255.255.0.0
binary=
What octet Is for network?
What octet is for host?
Cidr=
Now try….
255.255.0.0
binary=11111111.11111111.00000000.0000000
What octet Is for network?1st and 2nd
What octet is for host?3rd and 4th
Cidr=/16
Now try….
255.0.0.0
Binary=
What octet Is for network?
What octet is for host?
Cidr=
Now try….
255.0.0.0
binary=11111111.00000000.00000000.00000000
What octet Is for network?1st
What octet is for host?2nd, 3rd and 4th
Cidr= /8
How subnet mask and ip address
interact




 H1 will check the subnet mask coming from H2. H1 will check the
subnet mask to know what octet is for the network and what is for the host. If the
H1 finds that they have same subnet mask as to H2, H1 will check the
IP address of H2 if they are the same network address. On the figure
Above, H1 and H2 will communicate since they are on the same network
Address based on the subnet mask.
exercise
Determine what network the host resides


192.168.22.5                192.168.22.0/
192.168.23.4
192.168.22.2
                            24 network
10.10.10.1                  10.0.0.0
11.11.11.12                 /8network
172.15.213.22               172.16.0.0
172.16.222.23
                            /16network
Determine what network the host resides


 exercise

  192.168.22.5              192.168.22.0
  192.168.23.4              network
  192.168.25.2
                            10.0.0.0
  10.10.10.1
  11.11.11.12               network
  172.15.213.22             172.16.0.0
  172.16.222.23             network
Sample problem




 192.168.11.12              192.168.11.13
 255.255.255.0              255.255.255.0



     Will it communicate?
Sample problem




192.168.1        192.168.11.
1.12 /24         13 /24
Sample problem




172.168.11.1               192.168.11.13
2 /24                      /24
    Will it communicate?
Sample problem




192.168.         192.168.1
12.12            1.13 /24
/24
Determining the number of host
available on a particular mask

importance;
        in order to determine the number of host in a give mask
# of host:2^(number of zero on the host octet)
So for …
255.255.255.0
11111111.11111111.11111111.00000000
The number zero on the host octet should be used
2^8=256 HOSTS
AND
 254 USABLE HOST(CAN BE ASSIGNED ON THE
  INTERFACE INCLUDING THE DEFAULT GATEWAY)
Why?
Because two ip is reserved for broadcast and the network
address
     broadcast ip address- is the last ip on the network
      network address- is the first ip on the network
Exercise
 For example
192.168.100.0 subnet mask 255.255.255.0
 192.168.100.0 is the subnet address
 192.168.100.1 is the first usable address
 192.168.100.254 is the last usable address
 192.168.100.255 is the broadcast address
For example
What is the broadcast address for 192.168.1.0 mask
255.255.255.0?
What are the usable address?
192.168.1.1 to 192.168.1.254
For example
What is the broadcast address for 192.168.1.0 mask
255.255.255.0?
What are the usable address?
now try!!!
255.255.0.0
Cidr=
Binary equivalent=
Number of hosts=
Number of usable hosts=
And also
172.16.0.0 mask 255.255.0.0
Broadcast address=
Subnet address
Last usable ip=
now try!!!
255.255.0.0
Cidr=/ 16
Binary equivalent=11111111.11111111.00000000.00000000
Number of hosts=65536
Number of usable hosts=65534
And also
172.16.0.0 mask 255.255.0.0
Broadcast address=172.16.255.255
Subnet address-172.16.0.0
Last usable ip=172.16.255.254
Classes of IP
But..
 127 is not a usable ip since it is used for loopback or for
 testing
RESERVED PRIVATE IP
ASSIGNED
 10.0.0.0 UP TO 10.255.255.254
 172.16.0.0 UP TO 172.32.255.254
 192.168.0.0 UP T0 192.168.255.254
AND THE REST ARE PUBLIC IP (INTERNET)
AND CANNOT BE USED ON THE NETWORK
How IPV4 is configured
Dynamic-automatic configuration
using dhcp server
  DHCp- assigns an IP address to your laptop.
LAN- Local Area Network
Before that lets define..
Before that lets define..
Collision domain -A collision domain is a logical
network segment where data packets can
“collide” with one another for being sent on a
shared medium, in particular in the Ethernet
networking protocol (analogy)
Collision domain -A collision domain is a logical
network segment where data packets can
“collide” with one another for being sent on a
shared medium, in particular in the Ethernet
networking protocol (analogy)
    Imagine a road using one lane only to be used for
    both direction. It means one car can only pass unto
    road while some car will wait until the car had pass
    unto the road.
CSMA-CD( Carrier Sense Multi
Access- Collision Detection
                I f the two will sent a data
                simultaneously on the same
                collision domain, There will be
                a collision and will be detected
                using CSMA- CD. The
                computer will said the network
                will be jam and wait for a
                particular time in order to send
                again( used by Hub)

                CSMA- Collision Avoidance-
                   used on wireless
                communication on routers and
                Access points.
Broadcast Domain- A broadcast domain is a
logical division of a computer network, in which
all nodes can reach each other by broadcast at
the data link layer.
NETWORK DEVICES

                        hub                                           SWITCH
                                                                      H


 One collision domain                            Collision domain depends
                                                 on number of port

Divides the bandwidth
by the number of user                           Dedicated bandwidth


  Half duplex                                   Full duplex

  Layer 1
                                                 Layer 2

                         One broadcast domain
NETWORK DEVICES

                        router                         SWITCH



  Collision domain depends
                                  Collision domain depends
  on number of port
                                  on number of port

Dedicated bandwidth
                                  Dedicated bandwidth
  Used to connect two
                                 Used to connect pc on the
  different network
                                 same network
  Full duplex                    Full duplex

  Layer 3
                                  Layer 2
 One broadcast in
                                   One broadcast for
 every port
                                   every port
Exercise(100 MBPS hub)
                 How many collision?
                 How many broadcast?
                 Bandwidth on each pc?
Exercise( 100 MBPS hub)
                  How many collision? 1
                  How many broadcast?1
                  Bandwidth on each pc?33.33
                  MBps
100 MBPs switch
                  How many collision domain?
                  How many broadcast domain?
                  Bandwidth on each pc?
100 MBPs switch
                  How many collision domain?2
                  How many broadcast domain?1
                  Bandwidth on each pc?100
                  MBPS
100 MBps hub and 100 MBps
switch




   How many collision domain?
   How many broadcast domain?
   Bandwidth on each pc?
100 MBps hub and 100 MBps
switch




   How many collision domain? 3
   How many broadcast domain?1
   Bandwidth on each pc?
   PC0-33MBPS PC1=33MBPS PC2= 33MBPS PC3-
   100MBPS PC4= MBPS
How many collision domain?
How many broadcast domain?
How many collision domain?7
How many broadcast domain?2
Thank you!

More Related Content

What's hot

Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Alan Mark
 
Networking Fundamentals
Networking FundamentalsNetworking Fundamentals
Networking FundamentalsMD SAQUIB KHAN
 
important network terminologies
important network terminologiesimportant network terminologies
important network terminologiesevelyn
 
Welcome to Computer Networks
Welcome to Computer NetworksWelcome to Computer Networks
Welcome to Computer Networksfarhan516
 
Concept of networking
Concept of networkingConcept of networking
Concept of networkingsumit dimri
 
Networking fundamentals
Networking fundamentalsNetworking fundamentals
Networking fundamentalsjpprakash
 
Networking Basics - Ferdon
Networking Basics - FerdonNetworking Basics - Ferdon
Networking Basics - FerdonSusan Ferdon
 
Basic Networking Network
Basic Networking NetworkBasic Networking Network
Basic Networking NetworkJGrace Johnny
 
Networking Fundamentals
Networking FundamentalsNetworking Fundamentals
Networking FundamentalsRajet Veshin
 
network fundamentals
network fundamentalsnetwork fundamentals
network fundamentalsSithu PM
 
Networking Fundamentals
Networking FundamentalsNetworking Fundamentals
Networking Fundamentalswebhostingguy
 
Computer Networks- Introduction and Data Link Layer
Computer Networks- Introduction and Data Link LayerComputer Networks- Introduction and Data Link Layer
Computer Networks- Introduction and Data Link LayerDeepak John
 
Networking basic fundamental
Networking basic fundamentalNetworking basic fundamental
Networking basic fundamentalSatish Sehrawat
 
Computer Networks Module I
Computer Networks Module IComputer Networks Module I
Computer Networks Module IAjit Nayak
 

What's hot (20)

Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)Cisco Networking (Routing and Switching)
Cisco Networking (Routing and Switching)
 
Computer network introduction
Computer network introductionComputer network introduction
Computer network introduction
 
Networking Fundamentals
Networking FundamentalsNetworking Fundamentals
Networking Fundamentals
 
important network terminologies
important network terminologiesimportant network terminologies
important network terminologies
 
Welcome to Computer Networks
Welcome to Computer NetworksWelcome to Computer Networks
Welcome to Computer Networks
 
Concept of networking
Concept of networkingConcept of networking
Concept of networking
 
Computer network basics
Computer network basicsComputer network basics
Computer network basics
 
Networking fundamentals
Networking fundamentalsNetworking fundamentals
Networking fundamentals
 
Networking Basics - Ferdon
Networking Basics - FerdonNetworking Basics - Ferdon
Networking Basics - Ferdon
 
Basic Networking Network
Basic Networking NetworkBasic Networking Network
Basic Networking Network
 
Networking Brief Overview
Networking Brief OverviewNetworking Brief Overview
Networking Brief Overview
 
Networking Fundamentals
Networking FundamentalsNetworking Fundamentals
Networking Fundamentals
 
network fundamentals
network fundamentalsnetwork fundamentals
network fundamentals
 
Computer Network
Computer NetworkComputer Network
Computer Network
 
Networking Fundamentals
Networking FundamentalsNetworking Fundamentals
Networking Fundamentals
 
Computer network
Computer networkComputer network
Computer network
 
Computer Networks- Introduction and Data Link Layer
Computer Networks- Introduction and Data Link LayerComputer Networks- Introduction and Data Link Layer
Computer Networks- Introduction and Data Link Layer
 
Networking basics PPT
Networking basics PPTNetworking basics PPT
Networking basics PPT
 
Networking basic fundamental
Networking basic fundamentalNetworking basic fundamental
Networking basic fundamental
 
Computer Networks Module I
Computer Networks Module IComputer Networks Module I
Computer Networks Module I
 

Viewers also liked

5 Installing Premises Cabling System
5 Installing Premises Cabling System5 Installing Premises Cabling System
5 Installing Premises Cabling SystemMrirfan
 
3 Basic Principal Of Fo Installation
3 Basic Principal Of Fo Installation3 Basic Principal Of Fo Installation
3 Basic Principal Of Fo InstallationMrirfan
 
Structured Cabling Technologies for Networking
Structured Cabling Technologies for NetworkingStructured Cabling Technologies for Networking
Structured Cabling Technologies for NetworkingTharindu Kumara
 
Basic Campus Network Design - Network Cabling System
Basic Campus Network Design - Network Cabling SystemBasic Campus Network Design - Network Cabling System
Basic Campus Network Design - Network Cabling SystemMd. Abdul Awal
 
4 Structure Cabling System Design
4 Structure Cabling System Design4 Structure Cabling System Design
4 Structure Cabling System DesignMrirfan
 
Field Study 2 Episode 6
Field Study 2 Episode 6Field Study 2 Episode 6
Field Study 2 Episode 6Jundel Deliman
 
Detailed Lesson Plan (ENGLISH, MATH, SCIENCE, FILIPINO)
Detailed Lesson Plan (ENGLISH, MATH, SCIENCE, FILIPINO)Detailed Lesson Plan (ENGLISH, MATH, SCIENCE, FILIPINO)
Detailed Lesson Plan (ENGLISH, MATH, SCIENCE, FILIPINO)Junnie Salud
 

Viewers also liked (9)

5 Installing Premises Cabling System
5 Installing Premises Cabling System5 Installing Premises Cabling System
5 Installing Premises Cabling System
 
3 Basic Principal Of Fo Installation
3 Basic Principal Of Fo Installation3 Basic Principal Of Fo Installation
3 Basic Principal Of Fo Installation
 
Pabx
PabxPabx
Pabx
 
Structured cabling
Structured cablingStructured cabling
Structured cabling
 
Structured Cabling Technologies for Networking
Structured Cabling Technologies for NetworkingStructured Cabling Technologies for Networking
Structured Cabling Technologies for Networking
 
Basic Campus Network Design - Network Cabling System
Basic Campus Network Design - Network Cabling SystemBasic Campus Network Design - Network Cabling System
Basic Campus Network Design - Network Cabling System
 
4 Structure Cabling System Design
4 Structure Cabling System Design4 Structure Cabling System Design
4 Structure Cabling System Design
 
Field Study 2 Episode 6
Field Study 2 Episode 6Field Study 2 Episode 6
Field Study 2 Episode 6
 
Detailed Lesson Plan (ENGLISH, MATH, SCIENCE, FILIPINO)
Detailed Lesson Plan (ENGLISH, MATH, SCIENCE, FILIPINO)Detailed Lesson Plan (ENGLISH, MATH, SCIENCE, FILIPINO)
Detailed Lesson Plan (ENGLISH, MATH, SCIENCE, FILIPINO)
 

Similar to Network administration

Zdalna komunikacja sieciowa - zagadnienia sieciowe
Zdalna komunikacja sieciowa - zagadnienia sieciowe Zdalna komunikacja sieciowa - zagadnienia sieciowe
Zdalna komunikacja sieciowa - zagadnienia sieciowe Agnieszka Kuba
 
Aspects Stratégiques des Réseaux
Aspects Stratégiques des RéseauxAspects Stratégiques des Réseaux
Aspects Stratégiques des RéseauxEric Vyncke
 
3G overview final
3G overview final 3G overview final
3G overview final Ahmed Emara
 
IP addressing by Mamun Sir
IP addressing by Mamun SirIP addressing by Mamun Sir
IP addressing by Mamun Sirsharifbdp
 
Networking devices
Networking devicesNetworking devices
Networking devicesfrestoadi
 
7-Lect_7 .pptxNetwork LayerNetwork Layer
7-Lect_7 .pptxNetwork LayerNetwork Layer7-Lect_7 .pptxNetwork LayerNetwork Layer
7-Lect_7 .pptxNetwork LayerNetwork LayerZahouAmel1
 
7-Lect_7 .pptxNetwork Layer. Addressing Subnetting Mask (default and subnet) ...
7-Lect_7 .pptxNetwork Layer. Addressing Subnetting Mask (default and subnet) ...7-Lect_7 .pptxNetwork Layer. Addressing Subnetting Mask (default and subnet) ...
7-Lect_7 .pptxNetwork Layer. Addressing Subnetting Mask (default and subnet) ...ZahouAmel1
 
networking devices -161021181705452555
networking   devices -161021181705452555networking   devices -161021181705452555
networking devices -161021181705452555mercyzyada1999
 
lecture note 2023 up10 stud2.ppt for ans
lecture note 2023 up10 stud2.ppt for anslecture note 2023 up10 stud2.ppt for ans
lecture note 2023 up10 stud2.ppt for anspeterhaile1
 
Net consultantsch2
Net consultantsch2Net consultantsch2
Net consultantsch2citdel
 
Training Day Slides
Training Day SlidesTraining Day Slides
Training Day Slidesadam_merritt
 
Free CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdfFree CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdfNetworkershome
 
Ccna final exam
Ccna final examCcna final exam
Ccna final examccnaguide
 
Ccna exam 640 802
Ccna exam 640 802Ccna exam 640 802
Ccna exam 640 802ccnaguide
 

Similar to Network administration (20)

Mod10
Mod10Mod10
Mod10
 
Zdalna komunikacja sieciowa - zagadnienia sieciowe
Zdalna komunikacja sieciowa - zagadnienia sieciowe Zdalna komunikacja sieciowa - zagadnienia sieciowe
Zdalna komunikacja sieciowa - zagadnienia sieciowe
 
Networking basics
Networking basicsNetworking basics
Networking basics
 
Aspects Stratégiques des Réseaux
Aspects Stratégiques des RéseauxAspects Stratégiques des Réseaux
Aspects Stratégiques des Réseaux
 
Mod9
Mod9Mod9
Mod9
 
3G overview final
3G overview final 3G overview final
3G overview final
 
IP addressing by Mamun Sir
IP addressing by Mamun SirIP addressing by Mamun Sir
IP addressing by Mamun Sir
 
Networking devices
Networking devicesNetworking devices
Networking devices
 
7-Lect_7 .pptxNetwork LayerNetwork Layer
7-Lect_7 .pptxNetwork LayerNetwork Layer7-Lect_7 .pptxNetwork LayerNetwork Layer
7-Lect_7 .pptxNetwork LayerNetwork Layer
 
7-Lect_7 .pptxNetwork Layer. Addressing Subnetting Mask (default and subnet) ...
7-Lect_7 .pptxNetwork Layer. Addressing Subnetting Mask (default and subnet) ...7-Lect_7 .pptxNetwork Layer. Addressing Subnetting Mask (default and subnet) ...
7-Lect_7 .pptxNetwork Layer. Addressing Subnetting Mask (default and subnet) ...
 
networking devices -161021181705452555
networking   devices -161021181705452555networking   devices -161021181705452555
networking devices -161021181705452555
 
lecture note 2023 up10 stud2.ppt for ans
lecture note 2023 up10 stud2.ppt for anslecture note 2023 up10 stud2.ppt for ans
lecture note 2023 up10 stud2.ppt for ans
 
Net consultantsch2
Net consultantsch2Net consultantsch2
Net consultantsch2
 
ch5-network.ppt
ch5-network.pptch5-network.ppt
ch5-network.ppt
 
Training Day Slides
Training Day SlidesTraining Day Slides
Training Day Slides
 
Ccna guide
Ccna guideCcna guide
Ccna guide
 
Free CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdfFree CCNA workbook by networkers home pdf
Free CCNA workbook by networkers home pdf
 
CS6551 COMPUTER NETWORKS
CS6551 COMPUTER NETWORKSCS6551 COMPUTER NETWORKS
CS6551 COMPUTER NETWORKS
 
Ccna final exam
Ccna final examCcna final exam
Ccna final exam
 
Ccna exam 640 802
Ccna exam 640 802Ccna exam 640 802
Ccna exam 640 802
 

Network administration

  • 1. Network Administration ( Structured Cabling Ipv4, Basic LAN) Cyrene T. Palparan, ECE, CCNA
  • 3. Structured cabling terms MDF(main distribution frame)- A telecommunications room or wiring closet, in a small, single-floor network It is where all of the network cable concentrates to a single point IDF(Intermediate Distribution Facilities)-additional wiring closets required
  • 4. Some common materials Modular jack face plate Cable manager Patch panel
  • 5. Some common materials Modular jack Cable manager
  • 6. Some terms to considered in designing Backbone cable: The part of a network that handles the major traffic Cable labeling system: Proper labeling system or scheme to identify cables Electrical considerations: Premises should have adequate outlets to support electrical requirements of network equipment Cable management system: Series of trays and straps used to guide and protect cable runs
  • 7. STRUCTURED CABLING BEST PRACTICES 1.Type of cable should depends on the data that will flow on it. 2. Cable standards specify maximum lengths for different types of cables. Always adhere to the length restrictions for the type of cable being installed. 3. UTP, like all copper cable, is susceptible to EMI. It is important to install cable away from sources of interference such as high-voltage cables and fluorescent lighting. Televisions, computer monitors and microwaves are other possible sources of interference. In some environments it may be necessary to install data cables in conduit to protect them from EMI and RFI.
  • 8. 4. Improper termination and the use of low quality cables and connectors can degrade the signal carrying capacity of the cable. Always follow the rules for cable termination and test to verify that the termination has been done properly. 5. Test all cable installations to ensure proper connectivity and operation. 6. Label all cables as they are installed, and record the location of cables in network documentation.
  • 9. Ip v4 address The IP address is a logical network address that identifies a particular host(alias) Operates on the Network Layer
  • 10. Ipv4 structure An IP address is simply a series of 32 binary bits (ones and zeros). It is very difficult for humans to read a binary IP address. For this reason, the 32 bits are grouped into four 8- bit bytes called octets. 11000000.10101000.0000000100000101
  • 11. Subnet mask (basic) -allows the flow of network traffic between hosts to be segregated based on a network configuration 255.255.255.0—11111111.11111111.11111111.00000000 means the first 3 octet are for network And the last octet is for the host Cidr=24
  • 12. Now try…. 255.255.0.0 binary= What octet Is for network? What octet is for host? Cidr=
  • 13. Now try…. 255.255.0.0 binary=11111111.11111111.00000000.0000000 What octet Is for network?1st and 2nd What octet is for host?3rd and 4th Cidr=/16
  • 14. Now try…. 255.0.0.0 Binary= What octet Is for network? What octet is for host? Cidr=
  • 15. Now try…. 255.0.0.0 binary=11111111.00000000.00000000.00000000 What octet Is for network?1st What octet is for host?2nd, 3rd and 4th Cidr= /8
  • 16. How subnet mask and ip address interact H1 will check the subnet mask coming from H2. H1 will check the subnet mask to know what octet is for the network and what is for the host. If the H1 finds that they have same subnet mask as to H2, H1 will check the IP address of H2 if they are the same network address. On the figure Above, H1 and H2 will communicate since they are on the same network Address based on the subnet mask.
  • 17. exercise Determine what network the host resides 192.168.22.5 192.168.22.0/ 192.168.23.4 192.168.22.2 24 network 10.10.10.1 10.0.0.0 11.11.11.12 /8network 172.15.213.22 172.16.0.0 172.16.222.23 /16network
  • 18. Determine what network the host resides exercise 192.168.22.5 192.168.22.0 192.168.23.4 network 192.168.25.2 10.0.0.0 10.10.10.1 11.11.11.12 network 172.15.213.22 172.16.0.0 172.16.222.23 network
  • 19. Sample problem 192.168.11.12 192.168.11.13 255.255.255.0 255.255.255.0 Will it communicate?
  • 20. Sample problem 192.168.1 192.168.11. 1.12 /24 13 /24
  • 21. Sample problem 172.168.11.1 192.168.11.13 2 /24 /24 Will it communicate?
  • 22. Sample problem 192.168. 192.168.1 12.12 1.13 /24 /24
  • 23. Determining the number of host available on a particular mask importance; in order to determine the number of host in a give mask # of host:2^(number of zero on the host octet)
  • 24. So for … 255.255.255.0 11111111.11111111.11111111.00000000 The number zero on the host octet should be used 2^8=256 HOSTS AND 254 USABLE HOST(CAN BE ASSIGNED ON THE INTERFACE INCLUDING THE DEFAULT GATEWAY)
  • 25. Why? Because two ip is reserved for broadcast and the network address broadcast ip address- is the last ip on the network network address- is the first ip on the network
  • 26. Exercise For example 192.168.100.0 subnet mask 255.255.255.0 192.168.100.0 is the subnet address 192.168.100.1 is the first usable address 192.168.100.254 is the last usable address 192.168.100.255 is the broadcast address
  • 27. For example What is the broadcast address for 192.168.1.0 mask 255.255.255.0? What are the usable address? 192.168.1.1 to 192.168.1.254
  • 28. For example What is the broadcast address for 192.168.1.0 mask 255.255.255.0? What are the usable address?
  • 29. now try!!! 255.255.0.0 Cidr= Binary equivalent= Number of hosts= Number of usable hosts= And also 172.16.0.0 mask 255.255.0.0 Broadcast address= Subnet address Last usable ip=
  • 30. now try!!! 255.255.0.0 Cidr=/ 16 Binary equivalent=11111111.11111111.00000000.00000000 Number of hosts=65536 Number of usable hosts=65534 And also 172.16.0.0 mask 255.255.0.0 Broadcast address=172.16.255.255 Subnet address-172.16.0.0 Last usable ip=172.16.255.254
  • 32. But.. 127 is not a usable ip since it is used for loopback or for testing
  • 33. RESERVED PRIVATE IP ASSIGNED 10.0.0.0 UP TO 10.255.255.254 172.16.0.0 UP TO 172.32.255.254 192.168.0.0 UP T0 192.168.255.254 AND THE REST ARE PUBLIC IP (INTERNET) AND CANNOT BE USED ON THE NETWORK
  • 34. How IPV4 is configured
  • 35. Dynamic-automatic configuration using dhcp server DHCp- assigns an IP address to your laptop.
  • 36. LAN- Local Area Network
  • 37. Before that lets define..
  • 38. Before that lets define..
  • 39.
  • 40. Collision domain -A collision domain is a logical network segment where data packets can “collide” with one another for being sent on a shared medium, in particular in the Ethernet networking protocol (analogy)
  • 41. Collision domain -A collision domain is a logical network segment where data packets can “collide” with one another for being sent on a shared medium, in particular in the Ethernet networking protocol (analogy) Imagine a road using one lane only to be used for both direction. It means one car can only pass unto road while some car will wait until the car had pass unto the road.
  • 42. CSMA-CD( Carrier Sense Multi Access- Collision Detection I f the two will sent a data simultaneously on the same collision domain, There will be a collision and will be detected using CSMA- CD. The computer will said the network will be jam and wait for a particular time in order to send again( used by Hub) CSMA- Collision Avoidance- used on wireless communication on routers and Access points.
  • 43. Broadcast Domain- A broadcast domain is a logical division of a computer network, in which all nodes can reach each other by broadcast at the data link layer.
  • 44. NETWORK DEVICES hub SWITCH H One collision domain Collision domain depends on number of port Divides the bandwidth by the number of user Dedicated bandwidth Half duplex Full duplex Layer 1 Layer 2 One broadcast domain
  • 45. NETWORK DEVICES router SWITCH Collision domain depends Collision domain depends on number of port on number of port Dedicated bandwidth Dedicated bandwidth Used to connect two Used to connect pc on the different network same network Full duplex Full duplex Layer 3 Layer 2 One broadcast in One broadcast for every port every port
  • 46. Exercise(100 MBPS hub) How many collision? How many broadcast? Bandwidth on each pc?
  • 47. Exercise( 100 MBPS hub) How many collision? 1 How many broadcast?1 Bandwidth on each pc?33.33 MBps
  • 48. 100 MBPs switch How many collision domain? How many broadcast domain? Bandwidth on each pc?
  • 49. 100 MBPs switch How many collision domain?2 How many broadcast domain?1 Bandwidth on each pc?100 MBPS
  • 50. 100 MBps hub and 100 MBps switch How many collision domain? How many broadcast domain? Bandwidth on each pc?
  • 51. 100 MBps hub and 100 MBps switch How many collision domain? 3 How many broadcast domain?1 Bandwidth on each pc? PC0-33MBPS PC1=33MBPS PC2= 33MBPS PC3- 100MBPS PC4= MBPS
  • 52. How many collision domain? How many broadcast domain?
  • 53. How many collision domain?7 How many broadcast domain?2