Tutorial 2.

Slides:



Advertisements
Similar presentations
P449. p450 Figure 15-1 p451 Figure 15-2 p453 Figure 15-2a p453.
Advertisements

TCP/IP Protocol Suite 1 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 24 Network Management: SNMP.
Representing Data Elements Gayatri Gopalakrishnan.
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
McGraw-Hill The McGraw-Hill Companies, Inc., 2000 SNMP Simple Network Management Protocol.
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)
SNMP: Simple Network Management Protocol
McGraw-Hill©The McGraw-Hill Companies, Inc., 2000 Chapter 2 The OSI Model and TCP/IP Protocol Suite.
Network Management Computer Networks Natawut Nupairoj, Ph.D.
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
Chapter 2 OSI Model and TCP/IP
Binary, Decimal and Hexadecimal Numbers Svetlin Nakov Telerik Corporation
TCP/IP Protocol Suite 1 Chapter 7 Upon completion you will be able to: ARP and RARP Understand the need for ARP Understand the cases in which ARP is used.
Abstract Syntax Notation ASN.1 Week-5 Ref: “SNMP…” by Stallings (Appendix B)
9.4 FLOATING-POINT REPRESENTATION
Number System. Number Systems Important Number systems – Decimal – Binary – Hexadecimal.
Dr. John P. Abraham Professor UTPA
COEN 180 Erasure Correcting, Error Detecting, and Error Correcting Codes.
Network Layer: Internet Protocol.
SNMP 1. SNMP is an Internet protocol developed by the IETF. It is designed to facilitate the exchange of management information between network elements.
Advanced Network Protocols CSCI 5132 Chapter 30 Simple Network Management Protocol By Chetan Singh Haaris Sheikh Lakshmi Menon Kavita Sarma.
Irvine, Kip R. Assembly Language for Intel-Based Computers 6/e, Signed Integers The highest bit indicates the sign. 1 = negative, 0 = positive.
8421 Binary Hexadecimal Seven segment display 8421 Binary Hexadecimal Seven segment display 0000.
Microsoft Windows Server 2003 TCP/IP Protocols and Services Technical Reference Slide: 1 Lesson 18 Windows Internet Name Service (WINS)
1. 2 Copyright  2005 by Oxford University Press, Inc. Computer Architecture Parhami3 Figure 9.1 Schematic representation of 4-bit code for integers.
TCP/IP Protocol Suite 1 Chapter 7 Upon completion you will be able to: ARP ( and ARP ( RFC-826) and RARP ( RARP ( RFC-903) Understand the need for ARP.
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 20 Network Layer: Internet Protocol Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Chapter 27 Network Management Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Presentation Services
Chapter 22 Next Generation IP
SNMP.
Network Management: SNMP
Advanced Network Protocols
Data representation How do we represent data in a digital system?
ASN.1: Introduction Zdeněk Říha.
Binary, Decimal and Hexadecimal Numbers
Chapter 3 Data Representation
System and Network Management
Net431:advanced net services
Chapter 20 Network Layer: Internet Protocol
UNIT V APPLICATION LAYER.
Dr. John P. Abraham Professor UTPA
Figures & Tables from the textbook.
Network Layer: Logical Addressing
Simple Mail Transfer Protocol
SNMP Examples.
Dr. John P. Abraham Professor UTPA
Tutorial 3.
Lecture 9: Radix-64 Tutorial
Data representation How do we represent data in a digital system?
Storing Integers and Fractions
Index construction: Compression of postings
Figure 11-1.
Domain Name System: DNS
CS2911 Week 2, Class 3 Today Return Lab 2 and Quiz 1
Figure Overview.
Figure Overview.
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:
Presentation transcript:

Tutorial 2

Figure 24.7 Encoding format TCP/IP Protocol Suite

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 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

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