SlideShare une entreprise Scribd logo
1  sur  30
OSI Model 
 To address the problem of networks increasing in size and in number, 
the International Organization for Standardization (ISO) researched 
many network schemes and recognized that there was a need to 
create a network model 
 This would help network builders implement networks that could 
communicate and work together 
 ISO therefore, released the OSI reference model in 1984.
Open System Interconnect (OSI) 
7 Application 
6 Presentation 
5 Session 
4 Transport 
3 Network 
2 Data Link 
1 Physical
Layer 7- Application layer 
7 Application 
6 Presentation 
5 Session 
4 Transport 
3 Network 
2 Data Link 
1 Physical 
• User Interaction Layer 
• Opens applications such as MS –word, excel, 
PowerPoint, etc. and networking applications. 
• PDU (Protocol Data Unit) is in the form of Data
Layer- Presentation Layer 
7 Application 
6 Presentation 
5 Session 
4 Transport 
3 Network 
2 Data Link 
1 Physical 
• This layer gives file extension. 
• E.g.- .ppt, .doc, .docx 
• Encryption, decryption, compression, 
decompression are done in this layer 
• PDU is in Formatted data
Layer- 5 Session Layer 
7 Application 
6 Presentation 
5 Session 
4 Transport 
3 Network 
2 Data Link 
1 Physical 
• This layer establishes, manages, and terminates 
sessions between two communicating hosts. 
• Offers three modes of communication 
1. Simplex 
2. Half duplex 
3. Full duplex 
• PDU is in Formatted Data
Communication types 
 Simplex 
One way communication that is either send or receive 
E.g.- Pager 
 Half duplex 
Two way communication, but either one at a time. 
E.g.- Walky talky 
 Full duplex 
Two way communication, both at one time. 
E.g.- Telephone
Layer- 4 Transport Layer 
7 Application 
6 Presentation 
5 Session 
4 Transport 
3 Network 
2 Data Link 
1 Physical 
• This layer breaks up the data from the sending 
host and then reassembles it in the receiver. 
• It also is used to insure reliable data transport 
across the network. 
• Can be reliable or unreliable 
• Sequencing 
• Acknowledgment 
• Retransmission 
• Flow Control 
• PDU is in Data segments
Layer- 3 Network Layer 
7 Application 
6 Presentation 
5 Session 
4 Transport 
3 Network 
2 Data Link 
1 Physical 
• Sometimes referred to as the “Cisco Layer”. 
• Provide logical addressing that routers use for 
path determination 
• Segments are encapsulated 
• Error Correction 
• Packet forwarding 
• Packet Filtering 
• Makes “Best Path Determination” 
• Fragmentation 
• PDU is in Data Packets
Layer- 2 Data Link Layer 
7 Application 
6 Presentation 
5 Session 
4 Transport 
3 Network 
2 Data Link 
1 Physical 
• Performs Physical Addressing 
• This layer provides reliable transit of data 
across a physical link. 
• Combines bits into bytes and 
bytes into frames 
• Access to media using MAC address 
• Error detection, not correction 
• LLC and MAC 
• Logical Link Control performs Link 
establishment 
• MAC Performs Access method 
• PDU is in Data Frames
Layer- 1 Physical Layer 
7 Application 
6 Presentation 
5 Session 
4 Transport 
3 Network 
2 Data Link 
1 Physical 
• This is the physical media through which the 
data, represented as electronic signals, is sent 
from the source host to the destination host. 
• Move bits between devices 
• Encoding
Data Encapsulation & Decapsulation 
 The process of converting Data into Bits and Bytes is called 
Encapsulation 
 The process of converting Bits and Bytes into Data is called 
Decapsulation
 Layer 1 Devices- Cables and Connectors 
 Layer 2 Devices- Hub, Switch, NIC, Bridge 
 Layer 3 Devices- Router (Also known as CISCO layers)
Collision Domain 
 Collision Domain is the place where collision occurs. 
 Hub is a single Collision Domain. 
 In the case of a Switch each port in a switch is a single Collision 
Domain
Broadcast Domain 
 The maximum area in which the broadcast travels is called Broadcast 
Domain 
 Hub and Switch are single Broadcast Domains. 
 Router will not forward either Collision domains or Broadcast 
Domains.
Types of transmission
DOD Model or TCP/IP Model 
 Although the OSI reference model is universally recognized, the 
historical and technical open standard of the Internet is Transmission 
Control Protocol / Internet Protocol (TCP/IP). 
 The TCP/IP reference model and the TCP/IP protocol stack make data 
communication possible between any two computers, anywhere in the 
world, at nearly the speed of light. 
 The U.S. Department of Defense (DoD) created the TCP/IP reference 
model because it wanted a network that could survive any conditions, 
even a nuclear war.
5 Layers 
Application 
Presentation 
Session 
Transport 
Network 
Data-Link 
Physical 
Application 
Transport 
Internet 
Data-Link 
Physical
Application Layer 
*Used by the Router 
Application 
Transport 
Internet 
Data-Link 
Physical 
File Transfer 
- TFTP* 
- FTP* 
- NFS 
E-Mail 
- SMTP 
Remote Login 
- Telnet* 
- rlogin* 
Network Management 
- SNMP* 
Name Management 
- DNS*
Transport Layer 
Transmission Control 
Protocol (TCP) 
User Datagram 
Protocol (UDP) 
Application 
Transport 
Internet 
Data-Link 
Physical 
Connection- 
Oriented 
Connectionless
TCP Port Numbers 
 Exit or entry layer from one application 
to another are called port numbers. 
 1- 64711 are well known port numbers 
 64712- 65535 are unknown 
21 23 25 53 69 161 
TCP 
F 
T 
P 
T 
E 
L 
N 
E 
T 
D 
N 
S 
S 
N 
M 
P 
T 
F 
T 
P 
S 
M 
T 
P 
UDP 
R 
I 
P 
520
TCP Three way Hand Shake 
Host A Host B 
Send SYN 
(seq = 100 ctl = SYN) 
SYN Received 
Established 
(seq = 101 ack = 301 
ctl = ack) 
1 
2 
3 
SYN Received
Windowing 
 Windowing in networking means the quantity of data segments which 
is measured in bytes that a machine can transmit/send on the 
network without receiving an acknowledgement 
 There are two window sizes—one set to 1 and one set to 3. 
 When you’ve configured a window size of 1, the sending machine 
waits for an acknowledgment for each data segment it transmits 
before transmitting another 
 If you’ve configured a window size of 3, it’s allowed to transmit three 
data segments before an acknowledgment is received.
Flow Control 
 Another function of the transport layer is to provide optional flow 
control. 
 Flow control is used to ensure that networking devices don’t send too 
much information to the destination, overflowing its receiving buffer 
space, and causing it to drop the sent information 
 The purpose of flow control is to ensure the destination doesn't get 
overrun by too much information sent by the source
SEQ 1024 
SEQ 2048 
SEQ 3072 
A 
B 
3072 
3
UDP (User Datagram Protocol) 
 User Datagram Protocol (UDP) is the connectionless transport protocol in the TCP/IP 
protocol stack. 
 UDP is a simple protocol that exchanges datagrams, without acknowledgments or 
guaranteed delivery. Error processing and retransmission must be handled by higher layer 
protocols. 
 UDP is designed for applications that do not need to put sequences of segments together. 
 The protocols that use UDP include: 
1. TFTP (Trivial File Transfer Protocol) 
2. SNMP (Simple Network Management Protocol) 
3. DHCP (Dynamic Host Control Protocol) 
4. DNS (Domain Name System)
TCP vs. UDP
Internet Layer 
Internet Protocol (IP) 
Internet Control Message 
Protocol (ICMP) 
Address Resolution 
Protocol (ARP) 
Reverse Address 
Resolution Protocol (RARP) 
Application 
Transport 
Internet 
Data-Link 
Physical
Connectivity Protocols 
 IP- Used for IP addressing 
 ICMP- Used to check internet connectivity 
 ARP- Resolves MAC address from IP 
 RARP- Resolves IP from MAC address

Contenu connexe

Tendances

Routing Protocols and Concepts - Chapter 1
Routing Protocols and Concepts - Chapter 1Routing Protocols and Concepts - Chapter 1
Routing Protocols and Concepts - Chapter 1CAVC
 
project on OSPF
project on OSPFproject on OSPF
project on OSPFOm Prakash
 
Network Engineer Interview Questions with Answers
Network Engineer Interview Questions with Answers Network Engineer Interview Questions with Answers
Network Engineer Interview Questions with Answers Sarmad Ali
 
Internet Routing Protocols: Fundamental Concepts of Distance-Vector and Link-...
Internet Routing Protocols: Fundamental Concepts of Distance-Vector and Link-...Internet Routing Protocols: Fundamental Concepts of Distance-Vector and Link-...
Internet Routing Protocols: Fundamental Concepts of Distance-Vector and Link-...Vishal Sharma, Ph.D.
 
Step by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet TracerStep by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet TracerSorath Asnani
 
Ccna day3-140715152337-phpapp01
Ccna day3-140715152337-phpapp01Ccna day3-140715152337-phpapp01
Ccna day3-140715152337-phpapp01Sachin Morya
 
CCNA PPP and Frame Relay
CCNA PPP and Frame RelayCCNA PPP and Frame Relay
CCNA PPP and Frame RelayDsunte Wilson
 
Virtual Local Area Network
Virtual Local Area NetworkVirtual Local Area Network
Virtual Local Area NetworkAtakan ATAK
 
CCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTCCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTNishant Goel
 

Tendances (20)

CCNA PPT
CCNA PPTCCNA PPT
CCNA PPT
 
CCNA/Networking
CCNA/NetworkingCCNA/Networking
CCNA/Networking
 
Routing Protocols and Concepts - Chapter 1
Routing Protocols and Concepts - Chapter 1Routing Protocols and Concepts - Chapter 1
Routing Protocols and Concepts - Chapter 1
 
IP Routing
IP RoutingIP Routing
IP Routing
 
project on OSPF
project on OSPFproject on OSPF
project on OSPF
 
Ccna day3
Ccna day3Ccna day3
Ccna day3
 
Ccna day5
Ccna day5Ccna day5
Ccna day5
 
CCNA Access Lists
CCNA Access ListsCCNA Access Lists
CCNA Access Lists
 
Network Engineer Interview Questions with Answers
Network Engineer Interview Questions with Answers Network Engineer Interview Questions with Answers
Network Engineer Interview Questions with Answers
 
Internet Routing Protocols: Fundamental Concepts of Distance-Vector and Link-...
Internet Routing Protocols: Fundamental Concepts of Distance-Vector and Link-...Internet Routing Protocols: Fundamental Concepts of Distance-Vector and Link-...
Internet Routing Protocols: Fundamental Concepts of Distance-Vector and Link-...
 
Chapter 13
Chapter 13Chapter 13
Chapter 13
 
Step by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet TracerStep by Step guide to set up a simple network in Packet Tracer
Step by Step guide to set up a simple network in Packet Tracer
 
CCNA TCP/IP
CCNA TCP/IPCCNA TCP/IP
CCNA TCP/IP
 
Switching seminar ppt
Switching seminar pptSwitching seminar ppt
Switching seminar ppt
 
Ccna day 1
Ccna day 1Ccna day 1
Ccna day 1
 
Lan Network with Redundancy.ppt
Lan Network with Redundancy.pptLan Network with Redundancy.ppt
Lan Network with Redundancy.ppt
 
Ccna day3-140715152337-phpapp01
Ccna day3-140715152337-phpapp01Ccna day3-140715152337-phpapp01
Ccna day3-140715152337-phpapp01
 
CCNA PPP and Frame Relay
CCNA PPP and Frame RelayCCNA PPP and Frame Relay
CCNA PPP and Frame Relay
 
Virtual Local Area Network
Virtual Local Area NetworkVirtual Local Area Network
Virtual Local Area Network
 
CCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPTCCNA SUMMER TRAINNING PPT
CCNA SUMMER TRAINNING PPT
 

En vedette

Ccna PPT
Ccna PPTCcna PPT
Ccna PPTAIRTEL
 
Ccna PPT2
Ccna PPT2Ccna PPT2
Ccna PPT2AIRTEL
 
FOOD PRESERVATION
FOOD PRESERVATIONFOOD PRESERVATION
FOOD PRESERVATIONAIRTEL
 
WIRELESS ROBOT PPT
WIRELESS ROBOT PPTWIRELESS ROBOT PPT
WIRELESS ROBOT PPTAIRTEL
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPTAIRTEL
 
Bts installation & commisioning.ppt
Bts installation & commisioning.pptBts installation & commisioning.ppt
Bts installation & commisioning.pptAIRTEL
 

En vedette (6)

Ccna PPT
Ccna PPTCcna PPT
Ccna PPT
 
Ccna PPT2
Ccna PPT2Ccna PPT2
Ccna PPT2
 
FOOD PRESERVATION
FOOD PRESERVATIONFOOD PRESERVATION
FOOD PRESERVATION
 
WIRELESS ROBOT PPT
WIRELESS ROBOT PPTWIRELESS ROBOT PPT
WIRELESS ROBOT PPT
 
CCNA PPT
CCNA PPTCCNA PPT
CCNA PPT
 
Bts installation & commisioning.ppt
Bts installation & commisioning.pptBts installation & commisioning.ppt
Bts installation & commisioning.ppt
 

Similaire à CCNA ppt Day 2

CISSP - Chapter 4 - Network Fundamental
CISSP - Chapter 4 - Network FundamentalCISSP - Chapter 4 - Network Fundamental
CISSP - Chapter 4 - Network FundamentalKarthikeyan Dhayalan
 
OSI and TCPIP Model
OSI and TCPIP ModelOSI and TCPIP Model
OSI and TCPIP ModelTapan Khilar
 
Lecture 1 Network Reference Models Final.pptx
Lecture 1 Network Reference Models Final.pptxLecture 1 Network Reference Models Final.pptx
Lecture 1 Network Reference Models Final.pptxRonoh Kennedy
 
Sargation university's open system interconnection
Sargation university's open system interconnectionSargation university's open system interconnection
Sargation university's open system interconnectionKingPinYT
 
OSI model (7 LAYER )
OSI model (7 LAYER )OSI model (7 LAYER )
OSI model (7 LAYER )AAKASH S
 
computer network and chapter 7 OSI layers.pptx
computer network and chapter 7 OSI layers.pptxcomputer network and chapter 7 OSI layers.pptx
computer network and chapter 7 OSI layers.pptxgadisaAdamu
 
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
 
communication-protocols
 communication-protocols communication-protocols
communication-protocolsAli Kamil
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA Aiman Hud
 
Computer Networks Notes Complete Syllabus
Computer Networks Notes Complete SyllabusComputer Networks Notes Complete Syllabus
Computer Networks Notes Complete SyllabusAnujashejwal
 

Similaire à CCNA ppt Day 2 (20)

CISSP - Chapter 4 - Network Fundamental
CISSP - Chapter 4 - Network FundamentalCISSP - Chapter 4 - Network Fundamental
CISSP - Chapter 4 - Network Fundamental
 
OSI and TCPIP Model
OSI and TCPIP ModelOSI and TCPIP Model
OSI and TCPIP Model
 
Ccna day1
Ccna day1Ccna day1
Ccna day1
 
Ccna day1
Ccna day1Ccna day1
Ccna day1
 
Lecture 1 Network Reference Models Final.pptx
Lecture 1 Network Reference Models Final.pptxLecture 1 Network Reference Models Final.pptx
Lecture 1 Network Reference Models Final.pptx
 
Computer networks chapter1.
Computer networks chapter1.Computer networks chapter1.
Computer networks chapter1.
 
Ccna day1
Ccna day1Ccna day1
Ccna day1
 
Ccna day1
Ccna day1Ccna day1
Ccna day1
 
Sargation university's open system interconnection
Sargation university's open system interconnectionSargation university's open system interconnection
Sargation university's open system interconnection
 
Ccna day1
Ccna day1Ccna day1
Ccna day1
 
Ccna day1
Ccna day1Ccna day1
Ccna day1
 
Ccna day1-130802165909-phpapp01
Ccna day1-130802165909-phpapp01Ccna day1-130802165909-phpapp01
Ccna day1-130802165909-phpapp01
 
OSI model (7 LAYER )
OSI model (7 LAYER )OSI model (7 LAYER )
OSI model (7 LAYER )
 
computer network and chapter 7 OSI layers.pptx
computer network and chapter 7 OSI layers.pptxcomputer network and chapter 7 OSI layers.pptx
computer network and chapter 7 OSI layers.pptx
 
chapter 4.pptx
chapter 4.pptxchapter 4.pptx
chapter 4.pptx
 
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
 
communication-protocols
 communication-protocols communication-protocols
communication-protocols
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
Computer Networks Notes Complete Syllabus
Computer Networks Notes Complete SyllabusComputer Networks Notes Complete Syllabus
Computer Networks Notes Complete Syllabus
 
lecture 4.pptx
lecture 4.pptxlecture 4.pptx
lecture 4.pptx
 

Plus de VISHNU N

CCNA ppt Day 9
CCNA ppt Day 9CCNA ppt Day 9
CCNA ppt Day 9VISHNU N
 
CCNA ppt Day 8
CCNA ppt Day 8CCNA ppt Day 8
CCNA ppt Day 8VISHNU N
 
CCNA ppt Day 7
CCNA ppt Day 7CCNA ppt Day 7
CCNA ppt Day 7VISHNU N
 
CCNA pptCCNA ppt Day 6
CCNA pptCCNA ppt Day 6CCNA pptCCNA ppt Day 6
CCNA pptCCNA ppt Day 6VISHNU N
 
CCNA ppt Day 5
CCNA ppt Day 5CCNA ppt Day 5
CCNA ppt Day 5VISHNU N
 
CCNA ppt Day 4
CCNA ppt Day 4CCNA ppt Day 4
CCNA ppt Day 4VISHNU N
 

Plus de VISHNU N (6)

CCNA ppt Day 9
CCNA ppt Day 9CCNA ppt Day 9
CCNA ppt Day 9
 
CCNA ppt Day 8
CCNA ppt Day 8CCNA ppt Day 8
CCNA ppt Day 8
 
CCNA ppt Day 7
CCNA ppt Day 7CCNA ppt Day 7
CCNA ppt Day 7
 
CCNA pptCCNA ppt Day 6
CCNA pptCCNA ppt Day 6CCNA pptCCNA ppt Day 6
CCNA pptCCNA ppt Day 6
 
CCNA ppt Day 5
CCNA ppt Day 5CCNA ppt Day 5
CCNA ppt Day 5
 
CCNA ppt Day 4
CCNA ppt Day 4CCNA ppt Day 4
CCNA ppt Day 4
 

Dernier

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Dernier (20)

Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

CCNA ppt Day 2

  • 1. OSI Model  To address the problem of networks increasing in size and in number, the International Organization for Standardization (ISO) researched many network schemes and recognized that there was a need to create a network model  This would help network builders implement networks that could communicate and work together  ISO therefore, released the OSI reference model in 1984.
  • 2. Open System Interconnect (OSI) 7 Application 6 Presentation 5 Session 4 Transport 3 Network 2 Data Link 1 Physical
  • 3. Layer 7- Application layer 7 Application 6 Presentation 5 Session 4 Transport 3 Network 2 Data Link 1 Physical • User Interaction Layer • Opens applications such as MS –word, excel, PowerPoint, etc. and networking applications. • PDU (Protocol Data Unit) is in the form of Data
  • 4. Layer- Presentation Layer 7 Application 6 Presentation 5 Session 4 Transport 3 Network 2 Data Link 1 Physical • This layer gives file extension. • E.g.- .ppt, .doc, .docx • Encryption, decryption, compression, decompression are done in this layer • PDU is in Formatted data
  • 5. Layer- 5 Session Layer 7 Application 6 Presentation 5 Session 4 Transport 3 Network 2 Data Link 1 Physical • This layer establishes, manages, and terminates sessions between two communicating hosts. • Offers three modes of communication 1. Simplex 2. Half duplex 3. Full duplex • PDU is in Formatted Data
  • 6. Communication types  Simplex One way communication that is either send or receive E.g.- Pager  Half duplex Two way communication, but either one at a time. E.g.- Walky talky  Full duplex Two way communication, both at one time. E.g.- Telephone
  • 7. Layer- 4 Transport Layer 7 Application 6 Presentation 5 Session 4 Transport 3 Network 2 Data Link 1 Physical • This layer breaks up the data from the sending host and then reassembles it in the receiver. • It also is used to insure reliable data transport across the network. • Can be reliable or unreliable • Sequencing • Acknowledgment • Retransmission • Flow Control • PDU is in Data segments
  • 8. Layer- 3 Network Layer 7 Application 6 Presentation 5 Session 4 Transport 3 Network 2 Data Link 1 Physical • Sometimes referred to as the “Cisco Layer”. • Provide logical addressing that routers use for path determination • Segments are encapsulated • Error Correction • Packet forwarding • Packet Filtering • Makes “Best Path Determination” • Fragmentation • PDU is in Data Packets
  • 9. Layer- 2 Data Link Layer 7 Application 6 Presentation 5 Session 4 Transport 3 Network 2 Data Link 1 Physical • Performs Physical Addressing • This layer provides reliable transit of data across a physical link. • Combines bits into bytes and bytes into frames • Access to media using MAC address • Error detection, not correction • LLC and MAC • Logical Link Control performs Link establishment • MAC Performs Access method • PDU is in Data Frames
  • 10. Layer- 1 Physical Layer 7 Application 6 Presentation 5 Session 4 Transport 3 Network 2 Data Link 1 Physical • This is the physical media through which the data, represented as electronic signals, is sent from the source host to the destination host. • Move bits between devices • Encoding
  • 11. Data Encapsulation & Decapsulation  The process of converting Data into Bits and Bytes is called Encapsulation  The process of converting Bits and Bytes into Data is called Decapsulation
  • 12.  Layer 1 Devices- Cables and Connectors  Layer 2 Devices- Hub, Switch, NIC, Bridge  Layer 3 Devices- Router (Also known as CISCO layers)
  • 13. Collision Domain  Collision Domain is the place where collision occurs.  Hub is a single Collision Domain.  In the case of a Switch each port in a switch is a single Collision Domain
  • 14. Broadcast Domain  The maximum area in which the broadcast travels is called Broadcast Domain  Hub and Switch are single Broadcast Domains.  Router will not forward either Collision domains or Broadcast Domains.
  • 16.
  • 17. DOD Model or TCP/IP Model  Although the OSI reference model is universally recognized, the historical and technical open standard of the Internet is Transmission Control Protocol / Internet Protocol (TCP/IP).  The TCP/IP reference model and the TCP/IP protocol stack make data communication possible between any two computers, anywhere in the world, at nearly the speed of light.  The U.S. Department of Defense (DoD) created the TCP/IP reference model because it wanted a network that could survive any conditions, even a nuclear war.
  • 18. 5 Layers Application Presentation Session Transport Network Data-Link Physical Application Transport Internet Data-Link Physical
  • 19. Application Layer *Used by the Router Application Transport Internet Data-Link Physical File Transfer - TFTP* - FTP* - NFS E-Mail - SMTP Remote Login - Telnet* - rlogin* Network Management - SNMP* Name Management - DNS*
  • 20. Transport Layer Transmission Control Protocol (TCP) User Datagram Protocol (UDP) Application Transport Internet Data-Link Physical Connection- Oriented Connectionless
  • 21. TCP Port Numbers  Exit or entry layer from one application to another are called port numbers.  1- 64711 are well known port numbers  64712- 65535 are unknown 21 23 25 53 69 161 TCP F T P T E L N E T D N S S N M P T F T P S M T P UDP R I P 520
  • 22. TCP Three way Hand Shake Host A Host B Send SYN (seq = 100 ctl = SYN) SYN Received Established (seq = 101 ack = 301 ctl = ack) 1 2 3 SYN Received
  • 23. Windowing  Windowing in networking means the quantity of data segments which is measured in bytes that a machine can transmit/send on the network without receiving an acknowledgement  There are two window sizes—one set to 1 and one set to 3.  When you’ve configured a window size of 1, the sending machine waits for an acknowledgment for each data segment it transmits before transmitting another  If you’ve configured a window size of 3, it’s allowed to transmit three data segments before an acknowledgment is received.
  • 24.
  • 25. Flow Control  Another function of the transport layer is to provide optional flow control.  Flow control is used to ensure that networking devices don’t send too much information to the destination, overflowing its receiving buffer space, and causing it to drop the sent information  The purpose of flow control is to ensure the destination doesn't get overrun by too much information sent by the source
  • 26. SEQ 1024 SEQ 2048 SEQ 3072 A B 3072 3
  • 27. UDP (User Datagram Protocol)  User Datagram Protocol (UDP) is the connectionless transport protocol in the TCP/IP protocol stack.  UDP is a simple protocol that exchanges datagrams, without acknowledgments or guaranteed delivery. Error processing and retransmission must be handled by higher layer protocols.  UDP is designed for applications that do not need to put sequences of segments together.  The protocols that use UDP include: 1. TFTP (Trivial File Transfer Protocol) 2. SNMP (Simple Network Management Protocol) 3. DHCP (Dynamic Host Control Protocol) 4. DNS (Domain Name System)
  • 29. Internet Layer Internet Protocol (IP) Internet Control Message Protocol (ICMP) Address Resolution Protocol (ARP) Reverse Address Resolution Protocol (RARP) Application Transport Internet Data-Link Physical
  • 30. Connectivity Protocols  IP- Used for IP addressing  ICMP- Used to check internet connectivity  ARP- Resolves MAC address from IP  RARP- Resolves IP from MAC address