Tutorial 3.

Slides:



Advertisements
Similar presentations
CECS 474 Computer Network Interoperability Notes for Douglas E. Comer, Computer Networks and Internets (5 th Edition) Tracy Bradley Maples, Ph.D. Computer.
Advertisements

P449. p450 Figure 15-1 p451 Figure 15-2 p453 Figure 15-2a p453.
TCP/IP Protocol Suite 1 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 24 Network Management: SNMP.
TCP/IP Protocol Suite 1 Chapter 21 Upon completion you will be able to: Network Management: SNMP Understand the SNMP manager and the SNMP agent Understand.
CSCE 515: Computer Network Programming Chin-Tser Huang University of South Carolina.
TCP/IP Protocol Suite 1 Chapter 17 Upon completion you will be able to: Domain Name System: DNS Understand how the DNS is organized Know the domains in.
Network Management: SNMP
1 Kyung Hee University Prof. Choong Seon HONG SNMP Management Information.
TCP/IP Protocol Suite 1 Chapter 21 Upon completion you will be able to: Network Management: SNMP Understand the SNMP manager and the SNMP agent Understand.
McGraw-Hill©The McGraw-Hill Companies, Inc., 2000 Chapter 23 Simple Network Management Protocol (SNMP)
Chapter 3 Representing Numbers and Text in Binary Information Technology in Theory By Pelin Aksoy and Laura DeNardis.
McGraw-Hill©The McGraw-Hill Companies, Inc., 2000 Chapter 2 The OSI Model and TCP/IP Protocol Suite.
CHAPTER 9: NETWORK MANAGEMENT Management Information Base Management Information Base Abstract Syntax Notation Abstract Syntax Notation Simple Network.
Presentation Services  need for a presentation services  ASN.1  declaring data type  encoding data types  implementation issues  reading: text, section.
TCP/IP Protocol Suite 1 Change the following IP addresses from binary notation to dotted-decimal notation. a b
Binary, Decimal and Hexadecimal Numbers Svetlin Nakov Telerik Corporation
Internet Protocol Internetworking Lab 1. Why Internet?
Binary to Decimal Conversion for LCI IETF 67 – GeoPriv WG 11/06/2006 San Diego.
Chapter 2: The Logic of Compound Statements 2.5 Application: Number Systems and Circuits for Addition 1 Counting in binary is just like counting in decimal.
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
Dr. John P. Abraham Professor UTPA
SNMP 1. SNMP is an Internet protocol developed by the IETF. It is designed to facilitate the exchange of management information between network elements.
1 © 2004, Cisco Systems, Inc. All rights reserved. CCNA 1 v3.1 Module 9 TCP/IP Protocol Suite and IP Addressing.
Microcomputer Networking II St. Cloud State University MCS 426, Fall 1999 Instructor: Adomas Svirskas TCP/IP addressing Addressing basics Address classes.
Irvine, Kip R. Assembly Language for Intel-Based Computers 6/e, Signed Integers The highest bit indicates the sign. 1 = negative, 0 = positive.
Chapter 18 IP: Internet Protocol Addresses. Internet protocol software used to make the internet appear to be a single, seamless communication system.
Data Representation. How is data stored on a computer? Registers, main memory, etc. consists of grids of transistors Transistors are in one of two states,
Positional Number Systems In a general radix-r positional system, with fixed word width k, a number is represented by a string of k digits.
Chapter 27 Network Management Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Decimal Numbers.
Presentation Services
OSI Model IP address.
Chapter 22 Next Generation IP
SNMP.
Network Management: SNMP
Data representation How do we represent data in a digital system?
ASN.1: Introduction Zdeněk Říha.
COMPUTER ORGANIZATION
Chapter-5 TCP/IP Suite.
TCP/IP Concepts (Part 2)
CSE 102 Introduction to Computer Engineering
Binary, Decimal and Hexadecimal Numbers
Chapter 3 Data Representation
System and Network Management
Subject Name: Computer Communication Networks Subject Code: 10EC71
Net431:advanced net services
Binary Quiz UIN: ____________________
Dr. John P. Abraham Professor UTPA
BCD = Binary Coded Decimal
Network Layer: Logical Addressing
Dr. John P. Abraham Professor UTRGV, EDINBURG, TX
Student: Ying Hong Course: Database Security Instructor: Dr. Yang
SNMP Examples.
Presenting information as bit patterns
Dr. John P. Abraham Professor UTPA
Topic 1: Data Representation
Binary Lesson 3 Hexadecimal
Lecture 9: Radix-64 Tutorial
Tutorial 2.
Binary Lesson 3 Hexadecimal
Data representation How do we represent data in a digital system?
Storing Integers and Fractions
Lecture 22: Number Systems
Data representation How do we represent data in a digital system?
Internet Protocol (IP)
Simple Network Management Protocol
1.6) Storing Integer: 1.7) storing fraction:
Lecture 37 – Practice Exercises 9
Lecture 37 – Practice Exercises 9
Standards, Models and Language
Presentation transcript:

Tutorial 3

Figure 24.7 Encoding format TCP/IP Protocol Suite

TCP/IP Protocol Suite Gauge = مقياس Octet string = byte string representing arbitrary binary or textual data up to 65535 bytes long TCP/IP Protocol Suite

Example 24.1 Figure 24.8 shows how to define INTEGER 14. Note that we have used both binary representation and hexadecimal representation for the tag. The size of the length field is from Table 24.1. TCP/IP Protocol Suite

Figure 24.8 Example 24.1: INTEGER 14 TCP/IP Protocol Suite

Example 24.2 Figure 24.9 shows how to define the OCTET STRING “HI.” TCP/IP Protocol Suite

Figure 24.9 Example 24.2: OCTET STRING “HI” TCP/IP Protocol Suite

Example 24.3 Figure 24.10 shows how to define ObjectIdentifier 1.3.6.1 (iso.org.dod.internet). TCP/IP Protocol Suite

Figure 24.10 Example 24.3: ObjectIndentifier 1.3.6.1 Object identifier :is string of decimal numbers that uniquely identify an object TCP/IP Protocol Suite

Example 24.4 Figure 24.11 shows how to define IPAddress 131.21.14.8. TCP/IP Protocol Suite

Figure 24.11 Example 24.4: IPAddress 131.21.14.8 TCP/IP Protocol Suite

1- Show how do you encode your name using SMI format ( use the Unicode)?For example NOUF 00000100 01001110 01001111 01010101 01000110

2- Show how do you encode an Octetstring with length 1000 bytes 00000100 10000010 00000011 11101000 The value 8+32+64+128+265+ 512 =1000

3- According to the SMI encoding format, what is the maximum length that can be presented using a single byte for the length field? give an example of a length that is more than the maximum length and show how it will be encoded. The maximum length that can be presented using a single bite is 127 or 01111111 .So 128 will be presented using 2 bytes as follows Tag field 10000001 10000000 The value