+ All Categories
Home > Documents > Equipping Today’s Instructors for Tomorrow’s Students

Equipping Today’s Instructors for Tomorrow’s Students

Date post: 22-Feb-2016
Category:
Upload: rafal
View: 39 times
Download: 0 times
Share this document with a friend
Description:
Equipping Today’s Instructors for Tomorrow’s Students. Academy Conference 2013. Cisco Networking Academy. Syslog, SNMP Vijay Bhuse, Ph.D. Instructor ECPI University. SNMP. - PowerPoint PPT Presentation
Popular Tags:
23
1 © 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential. Cisco Networking Academy, U.S./Canada Equipping Today’s Instructors for Tomorrow’s Students Cisco Networking Academy Syslog, SNMP Vijay Bhuse, Ph.D. Instructor ECPI University Academy Conference 2013
Transcript
Page 1: Equipping Today’s Instructors for Tomorrow’s Students

1© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Equipping Today’s Instructorsfor Tomorrow’s Students

Cisco Networking Academy

Syslog, SNMP

Vijay Bhuse, Ph.D.InstructorECPI University

Academy Conference 2013

Page 2: Equipping Today’s Instructors for Tomorrow’s Students

2© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

SNMP• SNMP is an application layer protocol that provides a message

format for communication between what are termed managers and agents

• Components include• SNMP manager• SNMP agent• Management Information Base

Page 3: Equipping Today’s Instructors for Tomorrow’s Students

3© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

SNMP Messages• Get

• Set

• Trap - unreliable

• Trap (SNMPv3 uses ACK) - reliable

Page 4: Equipping Today’s Instructors for Tomorrow’s Students

4© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Elements of Simple Network Management Protocol

Page 5: Equipping Today’s Instructors for Tomorrow’s Students

5© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

SNMP in Use for Monitoring the Network

Page 6: Equipping Today’s Instructors for Tomorrow’s Students

6© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

SNMP in Use for Monitoring the Network

Page 7: Equipping Today’s Instructors for Tomorrow’s Students

7© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

The Management Information Base (MIB)

• MIB defines each variable as an object ID (OID)

• Organizes the into a hierarchy of OIDs, usually shown as a tree

• MIB for any device includes some branches of the tree with variables common to

many networking devices and branches with variables specific to that device.

• Networking equipment vendors like Cisco can define their own private branches of

the tree

Page 8: Equipping Today’s Instructors for Tomorrow’s Students

8© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

MIB tree

Page 9: Equipping Today’s Instructors for Tomorrow’s Students

9© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Obtaining MIB value with snmpget

-v2c The version on SNMP in use

-c community The SNMP password, called a community string

10.250.250.14 The IP address of the monitored device

1.3.6.1.4.1.9.2.1.58.0 The numeric object identifier (OID) of the MIB variable

Page 10: Equipping Today’s Instructors for Tomorrow’s Students

10© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Configuring SNMPv2There are two types of community strings in SNMP Version 2c:

• Read-only (RO): Provides access to the MIB variables, but does not allow these variables to changed, only read. Because security is so weak in Version 2c, many organizations only use SNMP in this read-only mode.

• Read-write (RW): Provides read and write access to all objects in the MIB.

Page 11: Equipping Today’s Instructors for Tomorrow’s Students

11© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Configuring SNMP Version 2c for Read-Only Access

R1(config)# ip access-list standard ACL_PROTECTSNMP

R1(config-std-nacl)# permit host 10.10.10.101

R1(config-std-nacl)# exit

R1(config)# snmp-server community V011eyB@11!!! RO ACL_PROTECTSNMP

R1(config)# snmp-server location Tampa

R1(config)# snmp-server contact Anthony Sequeira

R1(config)# end

R1#

Page 12: Equipping Today’s Instructors for Tomorrow’s Students

12© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Configuring SNMP Version 2c for Read and Write Access

R2(config)# ip access-list standard ACL_PROTECTSNMP

R2(config-std-nacl)# permit host 10.20.20.201

R2(config-std-nacl)# exit

R2(config)# snmp-server community T3nn1sB@ll RW ACL_PROTECTSNMP

R2(config)# snmp-server location New York

R2(config)# snmp-server contact John Sequeira

R2(config)# end

R2#

Page 13: Equipping Today’s Instructors for Tomorrow’s Students

13© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

SNMPv3• Message integrity: This helps ensure that a packet has not been

tampered with in transit

• Authentication: This helps ensure that the packet came from a known and trusted source

• Encryption: This helps to ensure that information cannot be read if the data is captured in transit

Page 14: Equipping Today’s Instructors for Tomorrow’s Students

14© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Possible Security modes of SNMPv3

Page 15: Equipping Today’s Instructors for Tomorrow’s Students

15© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Syslog• Syslog permits various Cisco devices (and some other non-Cisco

devices) to send their system messages across the network to syslog servers

• You can even build a special out-of-band (OOB) network for this purpose

• There are many different Syslog server software packages for Windows and UNIX

Page 16: Equipping Today’s Instructors for Tomorrow’s Students

16© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Popular destinations for syslog messages

• The logging buffer (RAM inside the router or switch)

• The console line

• The terminal lines

• A syslog server

Page 17: Equipping Today’s Instructors for Tomorrow’s Students

17© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Syslogging in the Network

Page 18: Equipping Today’s Instructors for Tomorrow’s Students

18© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

System Message Format

• A timestamp: *Dec 18 17:10:15.079

• The facility on the router that generated the message: %LINEPROTO

• The severity level: 5• A mnemonic for the message: UPDOWN

• The description of the message: Line protocol on Interface FastEthernet0/0, changed state to down

Page 19: Equipping Today’s Instructors for Tomorrow’s Students

19© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Modifying System Messages

Page 20: Equipping Today’s Instructors for Tomorrow’s Students

20© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

System Message Severity Levels

Page 21: Equipping Today’s Instructors for Tomorrow’s Students

21© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Configuring and Verifying Syslog

• R1(config)#logging 192.168.1.101• R1(config)#logging trap 4• By default, Cisco routers and switches send log messages

for all severity levels to the console. On some IOS versions, the device also buffers those log messages by default•R1(config)# logging console•R1(config)# logging buffered

• R1# show logging

Page 22: Equipping Today’s Instructors for Tomorrow’s Students

22© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

References

• Wendell Odom, "Cisco CCNA Routing and Switching ICND2 200-101 Official Cert Guide", Cisco Press, May 14, 2013.

Page 23: Equipping Today’s Instructors for Tomorrow’s Students

23© 2013 Cisco Systems, Inc. All rights reserved. Cisco confidential.Cisco Networking Academy, U.S./Canada

Thank you!


Recommended