Warning - This Website is only for education purposes, By reading these articles you agree that HackingBytes is not responsible in any way for any kind of damage caused by the information provided in these articles.

Tuesday, May 21, 2013

CCNA : OSI Model 7 Layers




Application Layer

The application layer is the OSI layer that is closest to the user. This layer provides network services to the user's applications. It differs from the other layers in that it does not provide services to any other OSI layer, but only to applications outside the OSI reference model. Applications layer provide a platform to access the data of remote computer.
The application layer protocols that you should know are as follows:
  • SNMP (Simple Network Management Protocol)— Communicates status and allows control of networked devices.
  • TFTP (Trivial File Transfer Protocol)— Simple, lightweight file transfer.
  • DNS (Domain Naming System)— Translates a website name (easy for people) to an IP address (easy for computers).
  • DHCP (Dynamic Host Configuration Protocol)— Assigns IP, mask, and DNS server (plus a bunch of other stuff) to hosts.
  • Telnet— Provides a remote terminal connection to manage devices to which you are not close enough to use a console cable.
  • HTTP (Hypertext Transfer Protocol)— Browses web pages.
  • FTP (File Transfer Protocol)— Reliably sends/retrieves all file types.
  • SMTP (Simple Mail Transfer Protocol)— Sends email.
  • POP3 (Post Office Protocol v.3)— Retrieves email.
  • NTP (Network Time Protocol)— Synchronizes networked device clocks.

presentation layer

The presentation layer is responsible for formatting data so that application-layer protocols (and then the users) can recognize and work with it. Presentation layer format the file extensions—such as .doc, .jpg, .txt, .avi, and so on. you realize that each of these file types is formatted for use by a particular type of application. The presentation layer taking the application layer data and marking it with the formatting codes so that it can be viewed reliably when accessed later. If necessary, the presentation layer might be able to translate between multiple data formats by using a common format.

The Session Layer

The session layer establishes, manages, and terminates sessions between two communicating hosts. It provides its services to the presentation layer. The session layer also synchronizes dialogue between the presentation layers of the two hosts and manages their data exchange. For example, web servers have many users, so many communication processes are open at a given time. Therefore, keeping track of which user communicates on which path is important.

Transport Layer

The transport layer is possibly the most important layer for exam study purposes. A lot is going on here, and it is heavily tested.
The transport layer's main jobs
  • It sets up and maintains a session connection between two devices.
  • It can provide for the reliable or unreliable delivery of data across this connection.
  • It multiplexes connections, allowing multiple applications to simultaneously send and receive data. When
  • Implementing a reliable connection, sequence numbers and acknowledgments (ACKs) are used.
  • Flow control (through the use of windowing or acknowledgements)
  • Reliable connections (through the use of sequence numbers and Acknowledgement )
Transport layer use two protocols for sending data TCP and UDP.
TCP
TCP is connection oriented protocols. Connection-oriented transmission is said to be reliable. Thinks TCP as registry AD facility available in Indian post office. For this level of service, you have to buy extra ticket and put a bunch of extra labels on it to track where it is going and where it has been. But, you get a receipt when it is delivered, you are guaranteed delivery, and you can keep track of whether your shipment got to its destination. All of this costs you more—but it is reliable!

UDP
UDP is connection less protocols. Connection-less transmission is said to be unreliable. Now, don't get too wrapped up in the term "unreliable" this doesn't mean that the data isn't going to get there; it only means that it isn't guaranteed to get there. Think of your options when you are sending a postcard, put it in the mailbox, and chances are good that it will get where it's supposed to go—but there is no guarantee, and stuff does go missing once in a while. On the other hand, it's cheap.

Reliability

When reliability is necessary, it should cover these four items:
  • recognizing lost packets and having them re-sent
  • recognizing packets that arrive out of order and reordering them
  • detecting duplicate packets and dropping the extra ones
  • Avoiding congestion

Connection Multiplexing/Application Mapping

Transport layer assigns a unique set of numbers for each connection. These numbers are called port or socket numbers. TCP, and UDP, provide a multiplexing function for a device: This allows multiple applications to simultaneously send and receive data.
Imagine a server that performs a number of functions—for example email, web pages, FTP, and DNS. The server has a single IP address, but can perform all these different functions for all the hosts that want to connect to it. The transport layer (layer 4) uses port numbers to distinguish between different types of traffic that might be headed for the same IP address.
Port numbers are divided into ranges by the IANA. Following are the current port ranges:
Port number
descriptions
0–1023
Well-Known—For common TCP/IP functions and applications
1024–49151
Registered—For applications built by companies
49152–65535
Dynamic/Private—For dynamic connections or unregistered applications

 

 

 

 

Common TCP and UDP Port Numbers

TCP
UDP
FTP
20, 21
DNS
53
Telnet
23
DHCP
67,68
SMTP
25
TFTP
69
DNS
53
NTP
123
HTTP
80
SNMP
161
POP
110


NNTP
119


HTTPS
443


Network Layer

The network layer provides a logical topology and layer-3 addresses. Routers function at the network layer. This layer is responsible for three main functions:
  • Defines logical addresses used at layer-3
  • Finds paths, based on the network numbers of logical addresses, to reach destination devices
  • Connects different data link types together, such as Ethernet, FDDI, Serial, and Token Ring
IP packet
Where the transport layer uses segments to transfer information between machines, the Internet layer uses datagram's. Datagram is just another word for packet.
The IP protocol is mainly responsible for these functions:
  • Connectionless data delivery: best effort delivery with no data recovery capabilities
  • Hierarchical logical addressing to provide for highly scalable internetworks
IP addresses are broken into two components:
  • Network component Defines on what segment, in the network, a device is located
  • Host component defines the specific device on a particular network segment

Two types of packets are used at the Network layer: data and route updates.
Data packets
Used to transport user data through the internetwork. Protocols used to support data traffic are called routed protocols; examples of routed protocols are IP and IPv6.
Route update packets
Used to update neighboring routers about the networks connected to all routers within the internetwork. Protocols that send route update packets are called routing protocols; examples of some common ones are RIP, RIPv2, EIGRP, and OSPF. Route update packets are used to help build and maintain routing tables on each router.

IP Classes

  • Class A addresses range from 1-126: 00000001-01111111.
  • Class B addresses range from 128-191: 10000000-10111111.
  • Class C addresses range from 192-223: 11000000-11011111.
  • Class D addresses range from 224-239: 11100000-11101111.
  • Class E addresses range from 240-254:
  1. 0 is reserved and represents all IP addresses;
  2. 127 is a reserved address and is used for testing, like a loop back on an interface:
  3. 255 is a reserved address and is used for broadcasting purposes.
Public addresses are Class A, B, and C addresses that can be used to access devices in other public networks, such as the Internet. Public IP address assign authority The Internet Assigned Numbers Authority (IANA) is ultimately responsible for handing out and managing public addresses. Normally you get public addresses directly from your ISP, which, in turn, requests them from one of five upstream address registries:
  • American Registry for Internet Numbers (ARIN)
  • Reseaux IP Europeans Network Coordination Center (RIPE NCC)
  • Asia Pacific Registry for Internet Numbers (APNIC)
  • Latin American and Caribbean Internet Address Registry (LACNIC)
  • African Network Information Centre (AfriNIC)

Private IP and ISP

Private ip address can be used to configure private network. You can use private ip to build your network without paying a single rupees. But one biggest problem with private ip is that with private you can not access the internet. This is the point where ISP comes from. ISP purchase a bulk of public ip address and provide them on rent. Whatever you pay to ISP for accessing internet is actually the charge of using public ip address.


Private ip address:- Not route able in public network
  • Class A: 10.0.0.0-10.255.255.255 (1 Class A network)
  • Class B: 172.16.0.0-172.31.255.255 (16 Class B networks)
  • Class C: 192.168.0.0-192.168.255.255 (256 Class C networks)
Protocol
Description
IP
IP of TCP/IP, featuring routable 32-bit addressing.
IPX
The equivalent of IP in Novell Netware.
ICMP
Internet Connection Management Protocol. Incorporates Ping and Traceroute, which are layer 3 link-testing utilities.
OSPF, IGRP, EIGRP, RIP, ISIS
Dynamic routing protocols that learn about remote networks and the best paths to them from other routers running the same protocol.
ARP, RARP
Address Resolution Protocol (and Reverse ARP). ARP learns what MAC address is associated with a given IP address. Reverse ARP learns an IP address given a MAC address.

Data link layer

Main functions of data link layer is
  • Defining the Media Access Control (MAC) or hardware addresses
  • Defining the physical or hardware topology for connections
  • Defining how the network layer protocol is encapsulated in the data link layer frame
  • Providing both connectionless and connection-oriented services
  • Defines hardware (MAC) addresses as well as the communication process that occurs within a media.
  • The first six hexadecimal digits of a MAC address form the OUI.
  • MAC addresses only need to be unique in a broadcast domain,
  • You can have the same MAC address in different broadcast domains (virtual LANs).
There are two specifications of Ethernet frame Ethernet II and 802
802.2 use a SAP or SNAP field to differentiate between encapsulatedlayer-3 payloads.
With a SNAP frame, the SAP fields are set to 0xAA and the type field is used to indicate the layer-3 protocol. One of the issues of the original SAP field in the 802.2 SAP frame is that even though it is eight bits (one byte) in length, only the first six bits are used for identifying upper-layer protocols, which allows up to 64 protocols.
802.2 SNAP frame support of up to 65,536 protocols
Ethernet II's Version of Ethernet
  • Ethernet II does not have any sub layers, while IEEE 802.2/3 has two: LLC and MAC.
  • Ethernet II has a type field instead of a length field (used in 802.3). IEEE 802.2 defines the type for IEEE Ethernet

Physical Layer

The Physical layer communicates directly with the various types of actual communication media. Different kinds of media represent these bit values in different ways. Some use audio tones, while others utilize state transitions—changes in voltage from high to low and low to high. Specific protocols are needed for each type of media to explain the proper bit patterns to be used, how data is encoded into media signals, and the various qualities of the physical media’s attachment interface.

21 comments:

  1. If you desire to improve your know-how only keep visiting this web site and be updated with
    the most up-to-date information posted here.


    My web page: internet web hosting ()

    ReplyDelete
  2. Amazing! This blog looks exactly like my old one!
    It's on a completely different subject but it has pretty much the same page layout and design. Outstanding choice of colors!

    my web blog; Hair Loss Cure

    ReplyDelete
  3. What's up colleagues, fastidious paragraph and pleasant arguments commented here, I am genuinely enjoying by these.

    my web-site; cheap linux hosting

    ReplyDelete
  4. Wow, fantastic weblog layout! How long have you been blogging
    for? you make blogging look easy. The total look of your web
    site is excellent, let alone the content material!


    My webpage: curly hair :: gileva.ir ::

    ReplyDelete
  5. I am preparing for the CCNA certification for networking and found these are very basic of networking . Thanks for sharing .

    Thanks
    Silvester Norman

    Change Mac Address


    ReplyDelete
  6. I know this if off topic but I'm looking into starting my own weblog and was curious what all is needed to get setup? I'm assuming having a
    blog like yours would cost a pretty penny? I'm not very web savvy so I'm not 100% positive.
    Any tips or advice would be greatly appreciated. Appreciate it

    Here is my blog - sharepoint server 2010

    ReplyDelete
  7. It is perfect time to make a few plans for the long run and
    it is time to be happy. I've learn this post and if I may I desire to recommend you few interesting issues or tips. Perhaps you could write subsequent articles regarding this article. I wish to read even more issues about it!

    Have a look at my web site ... sports handicapping :: ::

    ReplyDelete
  8. There is certainly a great deal to know about this issue.
    I really like all the points you made.

    Also visit my site: best forex Robots

    ReplyDelete
  9. Woah! I'm really enjoying the template/theme of this site. It's simple, yet effective.
    A lot of times it's very hard to get that "perfect balance" between user friendliness and visual appeal. I must say you've
    done a very good job with this. Additionally, the
    blog loads extremely quick for me on Chrome. Excellent Blog!


    Here is my web blog; Options Clearing Council

    ReplyDelete
  10. I used to be able to find good info from your content.


    Visit my web page - vps hosting free []

    ReplyDelete
  11. Greetings from Idaho! I'm bored to tears at work so I decided to check out your site on my iphone during lunch break. I really like the information you provide here and can't wait to take a look when I
    get home. I'm surprised at how fast your blog loaded on my cell phone .. I'm not even using WIFI, just 3G .
    . Anyhow, great blog!

    Here is my web site; ideal haircut for round face
    shade :: :
    :

    ReplyDelete
  12. Hello would you mind letting me know which webhost
    you're utilizing? I've loaded your blog in 3 completely different internet browsers and I must say this blog loads a
    lot faster then most. Can you recommend a good internet hosting provider at
    a reasonable price? Thank you, I appreciate it!

    my page; online trading

    ReplyDelete
  13. Everything is very open with a very clear description of the issues.
    It was truly informative. Your website is extremely helpful.

    Thank you for sharing!

    my web blog Due To

    ReplyDelete
  14. Way cool! Some very valid points! I appreciate you writing this write-up and
    also the rest of the website is really good.

    Take a look at my site :: selling options

    ReplyDelete
  15. Thank you for the auspicious writeup. It in truth was once a amusement account it.
    Look advanced to far brought agreeable from you! By the way, how can we be in contact?


    My blog web hosting ()

    ReplyDelete
  16. My brother suggested I would possibly like this web site.

    He was entirely right. This put up truly made my day.
    You can not imagine simply how a lot time I had spent for
    this information! Thanks!

    Feel free to visit my blog post ... hair color - -

    ReplyDelete
  17. Hello! I could have sworn I've visited your blog before but after looking at some of the posts I realized it's
    new to me. Anyhow, I'm certainly happy I discovered it and I'll be book-marking it and checking back
    often!

    my webpage :: forex steam (http://blog.sylhetbestbazaar.com)

    ReplyDelete
  18. Thanks for the marvelous posting! I truly enjoyed reading it, you
    could be a great author.I will ensure that I bookmark
    your blog and will come back sometime soon.
    I want to encourage that you continue your great job, have a nice morning!


    Here is my website hair styling iron - -

    ReplyDelete
  19. Idon't even know the way I ended up here, but I assumed this publish
    used to be great. I don't recognise who youu are however definitely you're
    giing to a famous blobger if you aren't already. Cheers!


    Feel free to visit my page :: car accident kansas

    ReplyDelete
  20. whoah this weblog is fantastic i really like studying
    your articles. Stay up the good work! You already know, a lot of persons
    are searching around for this info, you could
    aid them greatly.

    My homepage; victor reinz head gasket

    ReplyDelete
  21. Hi terrific blog! Does running a blog similar to this require a large amount of work?
    I've virtually no expertise in coding however I was hoping to start my own blog
    soon. Anyhow, should you have any ideas or techniques
    for new blog owners please share. I understand this iss off subject but I simply had to
    ask. Thanks a lot!

    My webpage ... car accident death rate - www.cinemanet.sk -

    ReplyDelete

LinkWithin

Related Posts Plugin for WordPress, Blogger...