Top Banner
CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009
18

CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Dec 21, 2015

Download

Documents

Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

CSEE W4140Networking Laboratory

Lecture 11: SNMP

Jong Yul Kim04.15.2009

Page 2: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Annoucements Visit to

TelioSonera’s NY POP

Wed Fri

1 Gowri Philip

2 Jia Gaurav

3 Tian Jordan

4 Ramachandran Da Quan

5 Defeng Cesar

6 Ankit

7 Jorge

8 Hai

9 Guangyao

10 Apar

11 Aaron

12 Siming

13 Eric

14 Aniruddha

15 Suhas

16 Justin

17 Adam

18 Palak

19 Adnan

Page 3: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Network management Network operators need tools to monitor and manage

networks remotely. True even if the network is relatively small.

Examples: How many IP fragments did this router create? How long has the server been running? Which host is about to shutdown?

Types of management Performance Fault

Page 4: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Network management architecture

Page 5: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Components of the network management architecture Managing entity is the central management station within the network:

“the administrator’s console”

Managed device is the machine we’re interested in monitoring / controlling

Managed objects are pieces of hardware within the managed device, e.g. network interface card, and the set of configurations for hardward and software

Management Information Base (MIB) is the information of interest related to managed objects, e.g. routing table

Network management agent is a program that runs on the managed device which communicates with the managing entity.

Network management protocol is the protocol used between the agent and the managing entity

Page 6: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Four parts of SNMP

1. Network management objects Management Information Base (MIB) This is the value that we’re interested in

monitoring or controlling. A MIB module is a collection of related MIBs.

2. Data definition language Structure of Management Information (SMI) This defines the format of MIBs such as data

type and object model.

Page 7: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Four parts of SNMP

3. Protocol Simple Network Management Protocol (SNMP) This is the protocol used between the managing

entity and the agent.

4. Security and administration capabilities

MIB and SMI are independent of the protocol. The protocol is independent of MIB and SMI.

Page 8: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

SMI SMI is used to define the syntax and

semantics of management objects.

It defines basic data types and higher level constructs, such as OBJECT-TYPE and MODULE-TYPE.

SMI is a subset of ASN.1 (Abstract Syntax Notation 1), which adopts a {machine,OS,language}-independent method for describing data and rules for transmitting that data

Page 9: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

SMI basic data types

Page 10: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

SMI OBJECT-TYPE

ipForwDatagrams OBJECT-TYPE SYNTAX Counter ACCESS read-only STATUS current DESCRIPTION "The number of input datagrams for which this entity was not their final IP destination, as a result of which an attempt was made to find a route to forward them to that final destination. In entities which do not act as IP Gateways, this counter will include only those packets which were Source-Routed via this entity, and the Source- Route option processing was successful." ::= { ip 6 }

MIB moduleObject Identifier (OID)

Page 11: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Organization of managed objects Organized in a tree-like

hierarchy

Each node is named with an OID.

OIDs reflect the structure of the hierarchy.

The OID 1.3.6.1.2.1 (iso.org.dod.internet.mgmt.mib-2) is at the top of the hierarchy for all managed objects of the MIB-II.

Manufacturers of networking equipment can add product specific objects to the hierarchy.

iso(1)

org (3)

dod (6)

internet (1)

mib-2 (1)

system (1) at (3) icmp (5) udp (7) snmp (11)

ipForwDatagrams (6)

directory (1) mgmt (2) experimental (3) private (4)

interface (2) ip (4) tcp (6) egp (8) transmission (10)

. root

Page 12: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

MIBs A MIB specifies the managed objects, which have

OIDs.

The OID is specified in a MIB file.

In Linux, MIB files are in the directory /usr/share/snmp/mibs Multiple MIB files MIB-II (defined in RFC 1213) defines the managed

objects of TCP/IP networks

When an SNMP manager requests an object, it sends the OID to the SNMP agent.

Page 13: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

UDP Example

Page 14: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

SNMP Protocol SNMP manager and an SNMP agent

communicate using the SNMP protocol Generally: Manager sends queries and agent

responds Exception: Traps are initiated by agent.

get-request

get-next-request

set-request

trap

Port 161

Port 161

Port 161

Port 162

SNMP agent

SNMP manager

get-response

get-response

get-response

Notice UDP port 161

Page 15: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

SNMP message types

Page 16: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Traps Traps are messages that are asynchronously sent by

an agent to a manager

Traps are triggered by an event

Defined traps include: linkDown: Even that an interface went down coldStart - unexpected restart (i.e., system crash) warmStart - soft reboot linkUp - the opposite of linkDown (SNMP) AuthenticationFailure

Page 17: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Homework

Prelab 9 due this Friday Please write your own answers!

Lab report 8 due next week before labs

Page 18: CSEE W4140 Networking Laboratory Lecture 11: SNMP Jong Yul Kim 04.15.2009.

Main Points of Lab 9

SNMP MIBs SNMP requests and responses Security Traps

Note: You need to download files from web and bring it to the labhttp://www.comm.utoronto.ca/~jorg/teaching/itlab/links/conf/lab9/snmpd.conf