Ethernet. Ethernet. Network Devices
|
|
- Mervyn Preston
- 1 years ago
- Views:
Transcription
1 Ethernet Babak Kia Adjunct Professor Boston University College of Engineering ENG SC757 - Advanced Microprocessor Design Ethernet Ethernet is a term used to refer to a diverse set of frame based networking technologies Developed by Digital Equipment Corporation, Intel, and Xerox in the early 1970s, it is the most widely used local area networking technology available today It is standardized as IEEE There are different types of Ethernet standards, such as Fast Ethernet (802.3u), Power Over Ethernet (802.3af), as well as wireless Ethernet standards (802.11) 2 Network Devices Ethernet devices are connected to one another through intermediary devices in order to form networks There are several classes of these network devices, but they primarily fall into one of four categories: Hubs the most basic device, it is a repeater, simply copying data coming in on one of its ports as the data outgoing on all of its other ports Switches A hub structure becomes ineffective for large networks simply because it copies redundant data. 3 1
2 Network Devices A switch is essentially a smart hub, only providing relevant data at a destination port A switch can connect Ethernet, Token Ring, Fiber Channel, or other types of packet switched network protocols together to form a heterogeneous network This has several complications, the primary one being that different standards use different MTU sizes Routers At a higher level of complexity, the routers act as switches between networks Routers are different from switches in that they connect networks together, whereas switches are used to connect devices together on a local LAN 4 Network Devices Gateways At even a higher level of complexity are the gateways They are used to interconnect networks at a higher level by mapping addresses from one network to another They are also used to perform the required protocol conversions from one network to another IP works irrespective of the existence of these devices 5 Network Parameters A network becomes operational not after physical connections have been established, but after appropriate network parameters have been assigned to all devices The most important network parameter for Ethernet networks is the Internet Protocol, or the IP number of the device IP is a unique string consisting of four numbers in the following format , where each group of numbers ranges from 0 to 255 Every computer on the network must have a unique IP number assigned to it 6 2
3 Network Parameters To transact data over hubs, it is simply enough to provide the device IP Numbers However, more complex networks require that another set of IP numbers, those which provide routing information, also be programmed Subnet Mask is one of the IP numbers that identify routing information in that it determines whether the destination device resides on the current network (the current subnet) Gateway Address is the IP address of a gateway which will forward the packet to another network if it is determined that the destination does not reside on the same subnet 7 Network Parameters An example of assigning network parameters for three devices is the following: IP Number Gateway IP Subnet Mask Dev A Dev B Dev C Also, it is important to note that the underlying network can be a 10Mb, 100Mb, 10/100Mb, halfduplex, or full-duplex. Ethernet devices typically have an autonegotiation capability which identifies the mode of operation 8 IPv4 versus IPv6 A large percentage of Ethernet devices are IPv4 IPv4 limits the unique address space to 2 32 unique addresses (4,294,967,296), but some are reserved for special purposes: Private networks take up ~18 million addresses Multicasting takes up about ~1 million IPv6 on the other hand expands the address space to to give the following number of unique addresses: 340,282,366,920,938,463,463,374,607,431,768,211,456 IPv6 has other advantages over IPv4, such as mandatory support for IPSec 9 3
4 The OSI 7-layer Protocol The Open Systems Interconnect model provides a common reference for discussions of networking protocols Though not all layers are applicable in all applications, nor is every layer limited to one protocol Each protocol communicates with its peer on a remote system 10 OSI Layers in context of Ethernet Application Any application level user access of networking resources, such as user authentication, FTP, Telnet. Presentation This layer translates data to/from formats that the Application layer can understand. This includes encryption, or MIME encoding. Session Manages, sets up, and tears down connections between two nodes. Ports and sockets are managed at this layer. 11 OSI Layers in context of Ethernet Transport Responsible for end-to-end transport, error recovery, and flow control. Much of TCP/IP and UDP/IP protocols center around the Transport Layer. Network The Network Layer manages connections across the network, in particular switching, routing and forwarding. The Internet Protocol (IP) manages addressing and delivery of data. Data Link Handles errors in the physical layer and performs further transport functions 12 4
5 OSI Layers in context of Ethernet Physical Performs the physical function of transmitting the bits (light, radio, electrical pulse) over a network layer Ethernet uses 4 of the 7 OSI layers: Application (Telnet, FTP) Transport (TCP/UDP) Network (IP, ICMP, ARP) Network Interface and Hardware (Ethernet, Token Ring, FDDI, X.25, ATM, Wireless, ) 13 Networking Protocols 14 Address Resolution Protocol (ARP) Address Resolution Protocol, defined by RFC 826 maps a network IP address into an Ethernet MAC address On a physical network, individual devices are identified using their network addresses, known as the Media Access Control (MAC) address, and not an IP addresses which is handled at a higher protocol level While the IP address of machines can often change, specially if they re moved between different networks, the MAC addresses are unique to devices and are permanently assigned to the hardware 15 5
6 Address Resolution Protocol (ARP) ARP works in the following fashion: When a device A addresses device B, whose IP number is not in A s ARP cache, it needs to find out the address and therefore broadcasts an ARP request Since all devices on the network accept broadcast packets, when device B recognizes its own address it replies to device A with an ARP reply including its MAC address If the ARP packet was transferred through a router or a gateway, routing information is also returned in the ARP reply packet 16 Address Resolution Protocol (ARP) Hardware Address Space: specifies the type of hardware (Ethernet, or Packet Radio network) Protocol Address Space: Specifies the type of protocol Hardware Address Length: For Ethernet it is 6 Protocol Address Length: For IP it is 4 Operation Code: Request or Reply 17 Address Resolution Protocol (ARP) Source/Target Hardware Address: Contains the physical network hardware address Source/Target Protocol Address: Contains the protocol address for TCP/IP this is the 32-bit IP address 18 6
7 Ports and Sockets Before delving into the transport protocols such as UDP and TCP, lets talk briefly about ports and sockets Ports and sockets are used to determine the processes on both the host and the destination which can communicate with each other, as well as the protocol being used between them Ports are 16-bit numbers which are used to determine which higher level application or protocol is being used For example, Telnet uses port 23, SMTP uses port 25. Well known port numbers range from 1 to 1023, with higher port numbers available for general use 19 Ports and Sockets Well known ports are identified and controlled by the Internet Assigned Number Authority (IANA) General use ports are known as ephemeral port numbers and are open to use by any application. They are valid for the duration of the application/process A socket is a special type of a file handle which is supported by the operating system to allow processes and applications to communicate with one another with little concern about the underlying network traffic Therefore in a scenario where two devices have established and are communicating over a socket, they are said to be having a conversation over a logical connection 20 User Datagram Packet (UDP) UDP is a standard protocol defined by RFC 768 It runs atop of IP, and implements no reliability, error recovery, or flow-control As such there is very little overhead associated with UDP, which is of great advantage to a class of applications which require expedient delivery of packets but not abundantly worried about packet loss, such as streaming video or voice over IP Unlike TCP where large data packets are segmented into smaller pieces, all UDP packets are self contained and delivered in a single IP datagram 21 7
8 User Datagram Packet (UDP) The breakup of a UDP packet is as follows: Source Port indicates the port of the sending process Destination Port indicates the port of the receiving process Length identifies the length of the datagram including the header Checksum is an optional checksum of the header And finally data is the payload 22 Transmission Control Protocol (TCP) TCP is by far the most prevalently used protocol on Ethernet networks TCP is used in conjunction with IP in what is collectively known as TCP/IP TCP/IP was designed quite simply to prevent the occurrence of a complete network outage in case of a nuclear attack As such, TCP/IP guarantees delivery of packets by routing and re-routing packets through (available) networks It accomplishes this task by using a mechanism of acknowledgements and sequence numbers for data packets 23 Transmission Control Protocol (TCP) Because TCP is a peer-to-peer, connection oriented protocol, from an application s stand point it provides a continuous transfer of data between two processes, while providing reliability and flow-control At a basic level, TCP uses a series of packet transfers and acknowledgements to ensure that data has been received at the destination However, this unnecessarily limits the bandwidth at which data can be transmitted, since after each transmission the source must wait to receive an acknowledgement before transmitting the next packet 24 8
9 The Sliding Window Protocol Instead imagine a scenario where both the sender and the receiver maintain a window of packets which have been sent and replied to The sender can send a number of packets as established by the window without receiving an acknowledgement The receiver on the other hand must acknowledge each packet with the sequence number of the last well-received packet One of two scenarios can happen, either the packet is lost, or the reply to it is lost Lets assume that we have a window size of 7 packets and that 25 The Sliding Window Protocol Packet #3 is lost In this case the sender will not receive ACK 3, and so its window will remain at packet 2, even though it has sent packets 4-7 Meanwhile the receiver acknowledges packets 4-7 with ACK 2, since that is the last packet which it has received in sequence The sender will timeout on packet 3 and resend it The receiver will now respond to packet 3 with ACK 7, since it has successfully received packets 1-7 ACK 3 is lost The sender will not receive ACK 3, but it will receive ACK 4, because the receiver actually did receive packet 3 The sender continues to transmit packets 26 TCP 27 9
10 TCP Source Port: 16-bit source port number Destination Port: 16-bit destination port number Sequence Number: Sequence number of the first data byte in this segment ACK Number: The value of the next sequence number which the receiver is expecting to receive Data offset: Number of 32-bit words in header 28 TCP Reserved: Reserved for future use, must be zero URG: Indicates Urgent Pointer field is valid ACK: Indicates ACK field is valid PSH: Push function RST: Reset connection SYN: Synchronizes the sequence numbers FIN: No more data from the sender 29 TCP Window: The number of bytes the receiver can accept Checksum 30 10
11 Internet Protocol (IP) The Internet Protocol (IP) is the most basic building block of all Internet communication It hides the underlying network by providing the higher level applications with a virtual network viewpoint In its current form, the IP protocol version 4 (IPv4) as defined in RFC 791 IP is a connectionless protocol, which means that once a packet (or a datagram) has been sent out, it can take any route to reach its destination IP is also an unreliable protocol, because it contains no mechanism to guarantee deliveries of individual datagrams 31 Internet Protocol (IP) Since IP is unreliable, it relies on higher level protocols to address the unreliability issues IP addresses are represented by 32 bit unsigned numbers, each byte representing one order of hierarchy For example, is a valid network IP number (address) The mapping between an IP number and a more human-friendly address such as is done by the Domain Name System (DNS) 32 Internet Protocol (IP) Class A 24-bit host, 7-bit network ID Class B 16-bit host, 14-bit network ID Class C 8-bit host, 21-bit network ID Class D Reserved for multicasting Class E Reserved for future use 33 11
12 Internet Protocol (IP) IP addresses with all 0s or 1s in an address field have special meaning An address with all 0s in the host field of the address refers to this network. When a host wants to communicate on a network but doesn t know the network IP address, it uses this mechanism to find out An address with all 1s in the host field of the address is a broadcast packet for all devices on the network. An example is a Class B device An IP address of is a loopback IP number and does not address the physical network 34 Subnet Because there can be several types of networks at any given organization, it becomes necessary to devise a mechanism by which to address different local networks, or subnets The assignment of subnets is done locally by a system administrator, and it is done by taking the host number part of the IP number and further subdividing it into network and host IP numbers This information is valid only for the local network, a host in another network is unaware of this designation A 32-bit subnet mask identifies local network addresses by 0s in appropriate bit fields, and 1s in the bit fields associated with the original network address For example, provides a subnet for 254 devices ( and discounted) 35 Intranets The Address Allocation for Private Internets RFC reserves part of the unique and global IP address space for local networks which do not connect to the Internet There are three address ranges which have been set aside for this purpose: Class A address through Class B addresses through Class C addresses Because these addresses are not designed for Internet use, an therefore Routers will discard these IP numbers 36 12
13 IP Datagram The unit of transfer in an IP network is called the IP Datagram IP automatically breaks apart messages into smaller datagrams, forwards them on a network, and reassembles them at destination The maximum length of a datagram is 65,535 bytes, and the minimum size for an unfragmented datagram is 576 bytes 37 IP Datagram Version: The IP version number, current IP version number is 4, with version 6 also being in use IHL: Length of the IP header counted in 32-bit quantities, does not include the data size! Service Type: Indicates the quality of service requested for this IP datagram (i.e. Routine, priority, etc.) 38 IP Datagram Total Length: Total length of the datagram, including header and data Identifier: A unique number provided by sender to help in reassembly of packets Flags: Control flags (do not fragment, additional fragments) 39 13
14 IP Datagram Fragment Offset: Aids in the reassembly of the full datagram Time to Live: The time in seconds that the datagram is allowed to travel. Each router processing the packet decrements this value by one, once it reaches a value of 0 the packet is discarded 40 IP Datagram Protocol: The higher level protocol which receives this packet (TCP, UDP, etc.) Header Checksum: If the header checksum is not matched, the packet is discarded Source Address: 32-bit address of the source (host) Destination Address: 32-bit address of the destination 41 IP Datagram Options: Various options covering debugging and traffic measurement Padding: If an option is used, the datagram is padded with all zeros up to the next 32-bit boundary Data: They payload of the datagram, passed on to the higher protocols 42 Portions of this power point presentation may have been taken from relevant users and technical manuals. Original content Copyright 2005 Babak Kia 14
Introduction to Networking S Y STEMS
Introduction to Networking CS 40: INTRODUCTION TO U NIX A ND L I NUX O P E R AT ING S Y STEMS Objectives Introduce networking, including what it is and what it contains, which includes: Networking layers
Transport Layer Protocols
Transport Layer Protocols Version. Transport layer performs two main tasks for the application layer by using the network layer. It provides end to end communication between two applications, and implements
Lecture 17 Overview. Last Lecture. Wide Area Networking (2) This Lecture. Internet Protocol (1) Source: chapters 2.2, 2.3,18.4, 19.1, 9.
Lecture 17 Overview Last Lecture Wide Area Networking (2) This Lecture Internet Protocol (1) Source: chapters 2.2, 2.3,18.4, 19.1, 9.2 Next Lecture Internet Protocol (2) Source: chapters 19.1, 19.2, 22,1
TCP/IP Concepts Review. Ed Crowley
TCP/IP Concepts Review Ed Crowley 1 Objectives At the end of this unit, you will be able to: Describe the TCP/IP protocol stack For each level, explain roles and vulnerabilities Explain basic IP addressing
- TCP and UDP - Transport Layer Protocols
1 Transport Layer Protocols - TCP and UDP - The Transport layer (OSI Layer-4) does not actually transport data, despite its name. Instead, this layer is responsible for the reliable transfer of data, by
TCP/IP Tutorial. Transmission Control Protocol Internet Protocol
TCP/IP Tutorial Transmission Control Protocol Internet Protocol 1 TCP/IP & OSI In OSI reference model terminology -the TCP/IP protocol suite covers the network and transport layers. TCP/IP can be used
Course Overview: Learn the essential skills needed to set up, configure, support, and troubleshoot your TCP/IP-based network.
Course Name: TCP/IP Networking Course Overview: Learn the essential skills needed to set up, configure, support, and troubleshoot your TCP/IP-based network. TCP/IP is the globally accepted group of protocols
Module 6. Internetworking. Version 2 CSE IIT, Kharagpur
Module 6 Internetworking Lesson 2 Internet Protocol (IP) Specific Instructional Objectives At the end of this lesson, the students will be able to: Explain the relationship between TCP/IP and OSI model
Chapter 2 NETWORK LAYER
Chapter 2 NETWORK LAYER This chapter provides an overview of the most important and common protocols associated with the TCP/IP network layer. These include: Internet Protocol (IP), Routing protocols Routing
IP Network Layer. Datagram ID FLAG Fragment Offset. IP Datagrams. IP Addresses. IP Addresses. CSCE 515: Computer Network Programming TCP/IP
CSCE 515: Computer Network Programming TCP/IP IP Network Layer Wenyuan Xu Department of Computer Science and Engineering University of South Carolina IP Datagrams IP is the network layer packet delivery
TCP/IP Concepts Review. A CEH Perspective
TCP/IP Concepts Review A CEH Perspective 1 Objectives At the end of this unit, you will be able to: Describe the TCP/IP protocol stack For each level, explain roles and vulnerabilities Explain basic IP
Transport Layer. Chapter 3.4. Think about
Chapter 3.4 La 4 Transport La 1 Think about 2 How do MAC addresses differ from that of the network la? What is flat and what is hierarchical addressing? Who defines the IP Address of a device? What is
Networking Test 4 Study Guide
Networking Test 4 Study Guide True/False Indicate whether the statement is true or false. 1. IPX/SPX is considered the protocol suite of the Internet, and it is the most widely used protocol suite in LANs.
Lecture Computer Networks
Prof. Dr. H. P. Großmann mit M. Rabel sowie H. Hutschenreiter und T. Nau Sommersemester 2012 Institut für Organisation und Management von Informationssystemen Thomas Nau, kiz Lecture Computer Networks
Guide to TCP/IP, Third Edition. Chapter 3: Data Link and Network Layer TCP/IP Protocols
Guide to TCP/IP, Third Edition Chapter 3: Data Link and Network Layer TCP/IP Protocols Objectives Understand the role that data link protocols, such as SLIP and PPP, play for TCP/IP Distinguish among various
William Stallings Data and Computer Communications. Chapter 15 Internetwork Protocols
William Stallings Data and Computer Communications Chapter 15 Internetwork Protocols Internetworking Terms (1) Communications Network Facility that provides data transfer service An internet Collection
IP address format: Dotted decimal notation: 10000000 00001011 00000011 00011111 128.11.3.31
IP address format: 7 24 Class A 0 Network ID Host ID 14 16 Class B 1 0 Network ID Host ID 21 8 Class C 1 1 0 Network ID Host ID 28 Class D 1 1 1 0 Multicast Address Dotted decimal notation: 10000000 00001011
TCP/IP Concepts Review. A CEH Perspective
TCP/IP Concepts Review A CEH Perspective 1 Objectives At the end of this unit, you will be able to: Describe the TCP/IP protocol stack For each level, explain roles and vulnerabilities Explain basic IP
Basic Networking Concepts. 1. Introduction 2. Protocols 3. Protocol Layers 4. Network Interconnection/Internet
Basic Networking Concepts 1. Introduction 2. Protocols 3. Protocol Layers 4. Network Interconnection/Internet 1 1. Introduction -A network can be defined as a group of computers and other devices connected
Overview. Securing TCP/IP. Introduction to TCP/IP (cont d) Introduction to TCP/IP
Overview Securing TCP/IP Chapter 6 TCP/IP Open Systems Interconnection Model Anatomy of a Packet Internet Protocol Security (IPSec) Web Security (HTTP over TLS, Secure-HTTP) Lecturer: Pei-yih Ting 1 2
Internet Protocol. Raj Jain. Washington University in St. Louis.
Internet Protocol Raj Jain Washington University Saint Louis, MO 63131 Jain@cse.wustl.edu These slides are available on-line at: http://www.cse.wustl.edu/~jain/cse473-05/ 13-1 Overview! Internetworking
IP - The Internet Protocol
Orientation IP - The Internet Protocol IP (Internet Protocol) is a Network Layer Protocol. IP s current version is Version 4 (IPv4). It is specified in RFC 891. TCP UDP Transport Layer ICMP IP IGMP Network
Chapter 9. IP Secure
Chapter 9 IP Secure 1 Network architecture is usually explained as a stack of different layers. Figure 1 explains the OSI (Open System Interconnect) model stack and IP (Internet Protocol) model stack.
Overview of TCP/IP. TCP/IP and Internet
Overview of TCP/IP System Administrators and network administrators Why networking - communication Why TCP/IP Provides interoperable communications between all types of hardware and all kinds of operating
Transport and Network Layer
Transport and Network Layer 1 Introduction Responsible for moving messages from end-to-end in a network Closely tied together TCP/IP: most commonly used protocol o Used in Internet o Compatible with a
2057-15. First Workshop on Open Source and Internet Technology for Scientific Environment: with case studies from Environmental Monitoring
2057-15 First Workshop on Open Source and Internet Technology for Scientific Environment: with case studies from Environmental Monitoring 7-25 September 2009 TCP/IP Networking Abhaya S. Induruwa Department
EITF25 Internet Techniques and Applications L5: Wide Area Networks (WAN) Stefan Höst
EITF25 Internet Techniques and Applications L5: Wide Area Networks (WAN) Stefan Höst Data communication in reality In reality, the source and destination hosts are very seldom on the same network, for
9025- TCP/IP Networking. History and Standards. Review of Numbering Systems. Local Signaling. IP Addressing
9025- TCP/IP Networking History and Standards ARPA NCP TCP, IP, ARPANET PARC Collaborative Network Requirements One Protocol? Peer-to-Peer Protocols Documentation and RFCs RFC Categories Where to Find
8.2 The Internet Protocol
TCP/IP Protocol Suite HTTP SMTP DNS RTP Distributed applications Reliable stream service TCP UDP User datagram service Best-effort connectionless packet transfer Network Interface 1 IP Network Interface
Chapter 3. TCP/IP Networks. 3.1 Internet Protocol version 4 (IPv4)
Chapter 3 TCP/IP Networks 3.1 Internet Protocol version 4 (IPv4) Internet Protocol version 4 is the fourth iteration of the Internet Protocol (IP) and it is the first version of the protocol to be widely
The OSI and TCP/IP Models. Lesson 2
The OSI and TCP/IP Models Lesson 2 Objectives Exam Objective Matrix Technology Skill Covered Exam Objective Exam Objective Number Introduction to the OSI Model Compare the layers of the OSI and TCP/IP
Objectives of Lecture. Network Architecture. Protocols. Contents
Objectives of Lecture Network Architecture Show how network architecture can be understood using a layered approach. Introduce the OSI seven layer reference model. Introduce the concepts of internetworking
Understanding TCP/IP. Introduction. What is an Architectural Model? APPENDIX
APPENDIX A Introduction Understanding TCP/IP To fully understand the architecture of Cisco Centri Firewall, you need to understand the TCP/IP architecture on which the Internet is based. This appendix
Introduction to TCP/IP
Introduction to TCP/IP Raj Jain The Ohio State University Columbus, OH 43210 Nayna Networks Milpitas, CA 95035 Email: Jain@ACM.Org http://www.cis.ohio-state.edu/~jain/ 1 Overview! Internetworking Protocol
How do I get to www.randomsite.com?
Networking Primer* *caveat: this is just a brief and incomplete introduction to networking to help students without a networking background learn Network Security. How do I get to www.randomsite.com? Local
- OSI Reference Model -
1 Network Reference Models - OSI Reference Model - A computer network connects two or more devices together to share information and services. Multiple networks connected together form an internetwork.
CS 268: Lecture 5 (TCP/IP Architecture)
CS 268: Lecture 5 (TCP/IP Architecture) Ion Stoica February 1, 2006 The Problem Before Internet: different packet-switching networks (e.g., ARPANET, ARPA packet radio) - only nodes on the same network
The Transmission Control Protocol (TCP): Lecture 1
Today s Lecture The Transmission Control Protocol (TCP): Lecture 1 I. TCP overview II. The TCP Header III. Connection establishment and termination Internet Protocols CSC / ECE 573 Fall, 2005 N. C. State
Internetworking. Problem: There is more than one network (heterogeneity & scale)
Internetworking Problem: There is more than one network (heterogeneity & scale) Hongwei Zhang http://www.cs.wayne.edu/~hzhang Internetworking: Internet Protocol (IP) Routing and scalability Group Communication
Module 11: TCP/IP Transport and Application Layers
Module 11: TCP/IP Transport and Application Layers 11.1 TCP/IP Transport Layer 11.1.1 Introduction to the TCP/IP transport layer The primary duties of the transport layer are to transport and regulate
2. IP Networks, IP Hosts and IP Ports
1. Introduction to IP... 1 2. IP Networks, IP Hosts and IP Ports... 1 3. IP Packet Structure... 2 4. IP Address Structure... 2 Network Portion... 2 Host Portion... 3 Global vs. Private IP Addresses...3
Network Models and Protocols
669-5ch01.fm Page 1 Friday, April 12, 2002 2:01 PM C H A P T E R Network Models and Protocols 1 EXAM OBJECTIVES 1.1 Layered Network Models 1.2 The Layers of the TCP/IP 5-Layer Model 1.3 Network Protocols
Slides from TCP/IP - Forouzan. Chapter 12 TCP
Chapter 12 Services Segments and Options Flow Control and Error Control rs Connections State Transition Diagram Congestion Control Operation and Design Figure Application layer Position of in /IP protocol
Internet Protocol. IP Datagram, Fragmentation and Reassembly
Internet Protocol IP Datagram, Fragmentation and Reassembly IP Datagram Header Data Data (variable length) IP Packet Header number of IP protocol Current version is 4 6 has different header format IP Packet
Internet Protocols. Background CHAPTER
CHAPTER 3 Internet Protocols Background The Internet protocols are the world s most popular open-system (nonproprietary) protocol suite because they can be used to communicate across any set of interconnected
Network Programming TDC 561
Network Programming TDC 561 Lecture # 1 Dr. Ehab S. Al-Shaer School of Computer Science & Telecommunication DePaul University Chicago, IL 1 Network Programming Goals of this Course: Studying, evaluating
Network Security TCP/IP Refresher
Network Security TCP/IP Refresher What you (at least) need to know about networking! Dr. David Barrera Network Security HS 2014 Outline Network Reference Models Local Area Networks Internet Protocol (IP)
Indian Institute of Technology Kharagpur. TCP/IP Part I. Prof Indranil Sengupta Computer Science and Engineering Indian Institute of Technology
Indian Institute of Technology Kharagpur TCP/IP Part I Prof Indranil Sengupta Computer Science and Engineering Indian Institute of Technology Kharagpur Lecture 3: TCP/IP Part I On completion, the student
TCP. Raj Jain. Professor of CIS The Ohio State University Columbus, OH 43210 Raj Jain 20-1
TCP Professor of CIS Columbus, OH 43210 Jain@ACM.Org http://www.cis.ohio-state.edu/~jain/ 20-1 Overview Key features, Header format Mechanisms, Implementation choices Slow start congestion avoidance, Fast
Chapter 6 Network Communications and Protocols
Chapter 6 Network Communications and Protocols Objectives Explain the function of protocols in a network Describe common protocol suites Guide to Networking Essentials, Fifth Edition 2 Protocols Strictly
Chapter 7. Local Area Network Communications Protocols
Chapter 7 Local Area Network Communications Protocols IP Version 4 The most commonly used network layer protocol is IP, or the Internet Protocol. As its name would indicate, IP is the protocol used on
Internet Control Protocols Reading: Chapter 3
Internet Control Protocols Reading: Chapter 3 ARP - RFC 826, STD 37 DHCP - RFC 2131 ICMP - RFC 0792, STD 05 1 Goals of Today s Lecture Bootstrapping an end host Learning its own configuration parameters
Mathatma Gandhi University
Mathatma Gandhi University BSc Computer Science IV th semester BCS 402 Computer Network &Internet MULTIPLE CHOICE QUESTIONS 1. The computer network is A) Network computer with cable B) Network computer
The OSI Model and the TCP/IP Protocol Suite. Pritee Parwekar ANITS 1
The OSI Model and the TCP/IP Protocol Suite Pritee Parwekar ANITS 1 To study To discuss the idea of multiple layering in data communication and networking and the interrelationship between layers. To discuss
Network Architecture and the OSI Reference Model
Network Architecture and the OSI Reference Model Advanced Computer Networks D12 Architecture Outline The Internet and IP Network Architecture Protocols and s Encapsulation The OSI Reference Model The Seven
Network-Oriented Software Development. Course: CSc4360/CSc6360 Instructor: Dr. Beyah Sessions: M-W, 3:00 4:40pm Lecture 2
Network-Oriented Software Development Course: CSc4360/CSc6360 Instructor: Dr. Beyah Sessions: M-W, 3:00 4:40pm Lecture 2 Topics Layering TCP/IP Layering Internet addresses and port numbers Encapsulation
UPPER LAYER SWITCHING
52-20-40 DATA COMMUNICATIONS MANAGEMENT UPPER LAYER SWITCHING Gilbert Held INSIDE Upper Layer Operations; Address Translation; Layer 3 Switching; Layer 4 Switching OVERVIEW The first series of LAN switches
Internet Protocols. Supporting Protocols and Framing. Updated: 9/30/14
Internet Protocols Supporting Protocols and Framing Updated: 9/30/14 Supporting Protocols ARP / RARP BOOTP ICMP DHCP NAT IP Supporting Protocols IP protocol only deals with the data transfer (best-effort)
Network Layer IPv4. Dr. Sanjay P. Ahuja, Ph.D. Fidelity National Financial Distinguished Professor of CIS. School of Computing, UNF
Network Layer IPv4 Dr. Sanjay P. Ahuja, Ph.D. Fidelity National Financial Distinguished Professor of CIS School of Computing, UNF IPv4 Internet Protocol (IP) is the glue that holds the Internet together.
Tutorial Questions EG/ES The tutorial questions illustrate the style of examination questions for EG/ES 3567.
The tutorial questions illustrate the style of examination questions for EG/ES 3567. The paper will be of 3 hours duration, and each student should attempt four questions during this time. You should aim
Outline. CSc 466/566. Computer Security. 18 : Network Security Introduction. Network Topology. Network Topology. Christian Collberg
Outline Network Topology CSc 466/566 Computer Security 18 : Network Security Introduction Version: 2012/05/03 13:59:29 Department of Computer Science University of Arizona collberg@gmail.com Copyright
TCP and UDP. Raj Jain. Professor of CIS The Ohio State University Columbus, OH
TCP and UDP Professor of CIS Columbus, OH 43210 Jain@ACM.Org http://www.cis.ohio-state.edu/~jain/ 12-1 Overview Key features Header format Mechanisms Implementation choices Slow start congestion avoidance
INTERNET ENABLED SYSTEMS NETWORK PROTOCOLS
DEVICES AND COMMUNICATION BUSES FOR DEVICES NETWORK Lesson-24: INTERNET ENABLED SYSTEMS NETWORK PROTOCOLS 1 Internet enabled embedded system Communication to other on the Internet. Use html (hyper text
Hands-On Ethical Hacking and Network Defense - Second Edition. Chapter 2 - TCP/IP Concepts Review
Objectives After reading this chapter and completing the exercises, you will be able to: Overview of TCP/IP Describe the TCP/IP protocol stack Explain the basic concepts of IP addressing Explain the binary,
Internetworking and IP Address
Lecture 8 Internetworking and IP Address Motivation of Internetworking Internet Architecture and Router Internet TCP/IP Reference Model and Protocols IP Addresses - Binary and Dotted Decimal IP Address
Lecture 15. IP address space managed by Internet Assigned Numbers Authority (IANA)
Lecture 15 IP Address Each host and router on the Internet has an IP address, which consist of a combination of network number and host number. The combination is unique; no two machines have the same
TCP/IP Fundamentals. OSI Seven Layer Model & Seminar Outline
OSI Seven Layer Model & Seminar Outline TCP/IP Fundamentals This seminar will present TCP/IP communications starting from Layer 2 up to Layer 4 (TCP/IP applications cover Layers 5-7) IP Addresses Data
Understand the OSI Model
Understand the OSI Model Part 2 Lesson Overview In this lesson, you will learn information about: Frames Packets Segments TCP TCP/IP Model Well-known ports for most-used purposes Anticipatory Set Review
Interconnection of Heterogeneous Networks. Internetworking. Service model. Addressing Address mapping Automatic host configuration
Interconnection of Heterogeneous Networks Internetworking Service model Addressing Address mapping Automatic host configuration Wireless LAN network@home outer Ethernet PPS Internet-Praktikum Internetworking
Protocols. Packets. What's in an IP packet
Protocols Precise rules that govern communication between two parties TCP/IP: the basic Internet protocols IP: Internet Protocol (bottom level) all packets shipped from network to network as IP packets
TCP/IP and the Internet
TCP/IP and the Internet Computer networking today is becoming more and more entwined with the internet. By far the most popular protocol set in use is TCP/IP (Transmission Control Protocol/Internet Protocol).
Address Resolution Protocol (ARP), Reverse ARP, Internet Protocol (IP)
Tik-110.350 Computer Networks (3 cr) Spring 2000 Address Resolution Protocol (ARP), Reverse ARP, Internet Protocol (IP) Professor Arto Karila Helsinki University of Technology E-mail: Arto.Karila@hut.fi
RARP: Reverse Address Resolution Protocol
SFWR 4C03: Computer Networks and Computer Security January 19-22 2004 Lecturer: Kartik Krishnan Lectures 7-9 RARP: Reverse Address Resolution Protocol When a system with a local disk is bootstrapped it
CIT 480: Securing Computer Systems. TCP/IP Security
CIT 480: Securing Computer Systems TCP/IP Security Topics 1. Internet Protocol (IP) 2. IP Spoofing and Other Vulnerabilities 3. ICMP 4. Transmission Control Protocol (TCP) 5. TCP Session Hijacking 6. UDP
Protocol Data Units and Encapsulation
Chapter 2: Communicating over the 51 Protocol Units and Encapsulation For application data to travel uncorrupted from one host to another, header (or control data), which contains control and addressing
Guide to Network Defense and Countermeasures Third Edition. Chapter 2 TCP/IP
Guide to Network Defense and Countermeasures Third Edition Chapter 2 TCP/IP Objectives Explain the fundamentals of TCP/IP networking Describe IPv4 packet structure and explain packet fragmentation Describe
ICOM 5026-090: Computer Networks Chapter 6: The Transport Layer. By Dr Yi Qian Department of Electronic and Computer Engineering Fall 2006 UPRM
ICOM 5026-090: Computer Networks Chapter 6: The Transport Layer By Dr Yi Qian Department of Electronic and Computer Engineering Fall 2006 Outline The transport service Elements of transport protocols A
Transport Layer INF3190 / INF4190. Foreleser: Carsten Griwodz
Transport Layer INF3190 / INF4190 Foreleser: Carsten Griwodz Email: griff@ifi.uio.no Transport layer Flow Control: Generic approaches Flow Control on Transport Layer Fast sender shall not flood slow receiver
Note! The problem set consists of two parts: Part I: The problem specifications pages Part II: The answer pages
Part I: The problem specifications NTNU The Norwegian University of Science and Technology Department of Telematics Note! The problem set consists of two parts: Part I: The problem specifications pages
Figure 5.1: Issues addressed by network layer protocols. (Figure by Forouzan)
Chapter 5 Network Layer The main responsibility of a network layer protocol is host-to-host data delivery. In doing this, the network layer has to deal with network layer addressing, packetization and
Chapter 5. Transport layer protocols
Chapter 5. Transport layer protocols This chapter provides an overview of the most important and common protocols of the TCP/IP transport layer. These include: User Datagram Protocol (UDP) Transmission
TCP/IP Page 1 of 5 TCP/IP. < 8 bits > < 8 bits > < 8 bits > < 8 bits > Sequence Number Acknowledgement Number R S T S Y N F I N
TCP/IP Page 1 of 5 TCP/IP INTRODUCTION The internet uses a variety of technologies to provide end-to-end communication between applications on different computers. Most applications use Transport Control
Transport Layer: UDP vs. TCP
EEC 189Q: Computer Networks Transport Layer: UDP vs. TCP Reading: 8.4 & 8.5 Review: Internet Protocol Stack Application Telnet FTP HTTP Transport Network Link Physical bits on wire TCP LAN IP UDP Packet
Protocol Stack: ISO OSI Model. Layer 2: Data Link Layer. Layer 1: Physical Layer. Layer 4: Transport Layer. Layer 3: Network Layer
Protocol Stack: ISO OSI Model CSCE 515: Computer Programming OSI Models & layer Wenyuan Xu Department of Computer Science and Engineering University of South Carolina Some slides are made by Dave Hollinger
Internet Control Message Protocol (ICMP)
Internet Control Message Protocol (ICMP) Relates to Lab 2: A short module on the Internet Control Message Protocol (ICMP). 1 Overview The IP (Internet Protocol) relies on several other protocols to perform
Understanding Layer 2, 3, and 4 Protocols
2 Understanding Layer 2, 3, and 4 Protocols While many of the concepts well known to traditional Layer 2 and Layer 3 networking still hold true in content switching applications, the area introduces new
Internet Protocol version 4
Internet Protocol version 4 Claudio Cicconetti International Master on Communication Networks Engineering 2006/2007 Table of Contents IP Addressing Class-based IP addresses
Autumn Oct 21, Oct 21, 2004 CS573: Network Protocols and Standards 1 Oct 21, 2004 CS573: Network Protocols and Standards 2
IPv4 IP: Addressing, ARP, Routing Protocols and Standards Autumn 2004-2005 IP Datagram Format IPv4 Addressing ARP and RARP IP Routing Basics Subnetting and Supernetting ICMP Address Translation (NAT) Dynamic
cnds@napier Slide 1 Introduction cnds@napier 1 Lecture 6 (Network Layer)
Slide 1 Introduction In today s and next week s lecture we will cover two of the most important areas in networking and the Internet: IP and TCP. These cover the network and transport layer of the OSI
Networking Basics and Network Security
Why do we need networks? Networking Basics and Network Security Shared Data and Functions Availability Performance, Load Balancing What is needed for a network? ISO 7-Layer Model Physical Connection Wired:
DO NOT REPLICATE. Analyze IP. Given a Windows Server 2003 computer, you will use Network Monitor to view and analyze all the fields of IP.
Advanced TCP/IP Overview There is one primary set of protocols that runs networks and the Internet today. In this lesson, you will work with those protocols: the Transmission Control Protocol (TCP) and
Internet Concepts. What is a Network?
Internet Concepts Network, Protocol Client/server model TCP/IP Internet Addressing Development of the Global Internet Autumn 2004 Trinity College, Dublin 1 What is a Network? A group of two or more devices,
Internet Protocol (IP)
TCP/IP CIS 218/238 Internet Protocol (IP) The Internet Protocol (IP) is responsible for ensuring that data is transferred between two Intenret hosts based on a 32 bit address. To be ROUTABLE, a protocol
CSCI-1680 Network Layer: IP & Forwarding Rodrigo Fonseca
CSCI-1680 Network Layer: IP & Forwarding Rodrigo Fonseca Based partly on lecture notes by David Mazières, Phil Levis, John Janno< Administrivia IP out today. Your job: Find partners and tell us Implement
Chapter 3: Review of Important Networking Concepts. Magda El Zarki Dept. of CS UC Irvine elzarki@uci.edu http://www.ics.uci.
Chapter 3: Review of Important Networking Concepts Magda El Zarki Dept. of CS UC Irvine elzarki@uci.edu http://www.ics.uci.edu/~magda 1 Networking Concepts Protocol Architecture Protocol Layers Encapsulation
Gary Hecht Computer Networking (IP Addressing, Subnet Masks, and Packets)
Gary Hecht Computer Networking (IP Addressing, Subnet Masks, and Packets) The diagram below illustrates four routers on the Internet backbone along with two companies that have gateways for their internal
OSI Network Layer OSI Layer 3
OSI Network Layer OSI Layer 3 Network Fundamentals Chapter 5 ١ Objectives Identify the role of the Network Layer, as it describes communication from one end device to another end device Examine the most
Final for ECE374 05/06/13 Solution!!
1 Final for ECE374 05/06/13 Solution!! Instructions: Put your name and student number on each sheet of paper! The exam is closed book. You have 90 minutes to complete the exam. Be a smart exam taker -
COMPUTER NETWORK SECURITY QUESTION BANK UNIT-I DATA COMMUNICATION
COMPUTER NETWORK SECURITY QUESTION BANK UNIT-I DATA COMMUNICATION 1. Define protocol. 2. Define transmission medium. 3. What are the basic components of data communication? 4. What is dataflow? 5. List
EE4367 Telecom. Switching & Transmission. Prof. Murat Torlak
Packet Switching and Computer Networks Switching As computer networks became more pervasive, more and more data and also less voice was transmitted over telephone lines. Circuit Switching The telephone