Config Lab: Syslog 1

 In 200-301 V2 Ch09: Device Management, 200-301 V2 Part 3: IP Services, 200-301 V2 Parts, Config Lab, Config Lab CCNA Vol 2 Part 3, Hands-on

Routers and switches issue log messages to tell us about different events. Be ready to run through the various options! Today’s lab exercises a couple of those options related to message formats and how a router chooses to manage Syslog messages.

All about Config Labs

The blog has a series of lab exercises called “Config Labs.” Each lab presents a topology with the relevant initial configuration for each device. The lab also lists new requirements, after which you should create the additional configuration to meet those requirements. You can do the lab on paper, in a text editor, or use software tools like Cisco Packet Tracer or Cisco Modeling Labs.

Once you have created your answer, you can click various tabs at the bottom of this post to see the lab answers, comments about the lab, and other helpful information.

The Lab Exercise

Requirements

In this lab, you will enable system logging and change the message format in a couple of ways on both routers. Specifically:

  • Configure the two routers so that they keep a copy of log messages so that you can later view them with the show logging command
  • Change the system message format to disable the use of timestamps
  • Change the system message format to enable the use of sequence numbers

Figure 1: Two Routers with IP Addresses

 

Initial Configuration

Examples 1 and 2 show the beginning configuration state of R1 and R2.

hostname R1
!
interface GigabitEthernet0/1
 ip address 192.168.1.129 255.255.255.252
 no shutdown
!
interface GigabitEthernet0/2
 no shutdown

Example 1: R1 Config

 

hostname R2
!
interface GigabitEthernet0/1
 no shutdown
!
interface GigabitEthernet0/2
 ip address 192.168.1.130 255.255.255.252
 no shutdown

Example 2: R2 Config

Answer Options - Click Tabs to Reveal

You can learn a lot and strengthen real learning of the topics by creating the configuration – even without a router or switch CLI. In fact, these labs were originally built to be used solely as a paper exercise!

To answer, just think about the lab. Refer to your primary learning material for CCNA, your notes, and create the configuration on paper or in a text editor. Then check your answer versus the answer post, which is linked at the bottom of the lab, just above the comments section.

You can also implement the lab using the Cisco Packet Tracer network simulator. With this option, you use Cisco’s free Packet Tracer simulator. You open a file that begins with the initial configuration already loaded. Then you implement your configuration and test to determine if it met the requirements of the lab.

(Use this link for more information about Cisco Packet Tracer.)

Use this workflow to do the labs in Cisco Packet Tracer:

  1. Download the .pkt file linked below.
  2. Open the .pkt file, creating a working lab with the same topology and interfaces as the lab exercise.
  3. Add your planned configuration to the lab.
  4. Test the configuration using some of the suggestions below.

Download this lab’s Packet Tracer File

You can also implement the lab using Cisco Modeling Labs – Personal (CML-P). CML-P (or simply CML) replaced Cisco Virtual Internet Routing Lab (VIRL) software in 2020, in effect serving as VIRL Version 2.

If you prefer to use CML, use a similar workflow as you would use if using Cisco Packet Tracer, as follows:

  1. Download the CML file (filetype .yaml) linked below.
  2. Import the lab’s CML file into CML and then start the lab.
  3. Compare the lab topology and interface IDs to this lab, as they may differ (more detail below).
  4. Add your planned configuration to the lab.
  5. Test the configuration using some of the suggestions below.

Download this lab’s CML file!

 

Network Device Info:

The CML topology matches the lab topology.

Lab Answers Below: Spoiler Alert

Lab Answers: Configuration (Click Tab to Reveal)

Answers

Figure 1: Two Routers with IP Addresses

 

logging buffered
no service timestamps
service sequence-numbers

Example 3: R1 Config

 

logging buffered
no service timestamps
service sequence-numbers

Example 4: R2 Config

Commentary, Issues, and Verification Tips (Click Tabs to Reveal)

Commentary

Syslog provides a mechanism on devices to log the messages that a specific device (system) will typically generate to the console. This provides engineers with the ability to look back at the history of device and the view the events that have happened to gain insight as to its current status. This mechanism accounts for Syslog’s widespread use in troubleshooting. It also provides a method of delivering these messages to an external Syslog server for central storage.

For this lab you were asked to alter the format of the Syslog messages. The two most used options include the use of sequence numbers as well as timestamps (Default) which enable system events to be correlated with other systems information. The service sequence-numbers and service timestamps global commands enable both; to disable them, use the same command with a no at the beginning.

The lab also asked that you configure the logging buffered command so that the router will buffer (store in memory) a copy of the log messages. Cisco devices typically use a default of keeping log messages in a buffer, but the examples show the command just to be complete as compared to the requirements in the lab.

Known Issues in this Lab

This section of each Config Lab Answers post hopes to help with those issues by listing any known issues with Packet Tracer related to this lab. In this case, the issues are:

# Summary Detail
1 service sequence-numbers CPT does not support this command in the most recent version (8.2 in the latest test).

 

Why Would Cisco Packet Tracer Have Issues?

(Note: The below text is the same in every Config Lab.)

Cisco Packet Tracer (CPT) simulates Cisco routers and switches. However, CPT does not run the same software that runs in real Cisco routers and switches. Instead, developers wrote CPT to predict the output a real router or switch would display given the same topology and configuration – but without performing all the same tasks, an actual device has to do. On a positive note, CPT requires far less CPU and RAM than a lab full of devices so that you can run CPT on your computer as an app. In addition, simulators like CPT help you learn about the Cisco router/switch user interface – the Command Line Interface (CLI) – without having to own real devices.

CPT can have issues compared to real devices because CPT does not run the same software as Cisco devices. CPT does not support all commands or parameters of a command. CPT may supply output from a command that differs in some ways from what an actual device would give. Those differences can be a problem for anyone learning networking technology because you may not have experience with that technology on real gear – so you may not notice the differences. So this section lists differences and issues that we have seen when using CPT to do this lab.

Beyond comparing your answers to this lab’s Answers post, you can test in Cisco Packet Tracer (CPT) or Cisco Modeling Labs (CML). In fact, you can and should explore the lab once configured. For this lab, once you have completed the configuration, try these verification steps. 

Although this lab shows a two-router lab, you could do it on a single router with a console connection.

  1. Login from the console and then get into config mode and back out again. Each time you exit configuration mode, the router will issue a log message to the console about the fact that someone may have changed the configuration. So it is an easy way to generate log messages so that you can test your Syslog settings. Look at those messages to check the log message format to see if it meets the requirements of the lab.
  2. Alternately, move to enable mode, enter configuration mode (configure terminal), and then exit configuration mode. Doing so will also generate log messages.

More Labs with Related Content!

Config Lab: NTP Client/Server
Config Lab: Syslog 2
Subscribe
Notify of
guest

2 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
L

Hi, it seems like the 2911 Routers dont have the service sequence-numbers command, why is that? or have I made a mistake?

Chris Dube

In your reply, I think the wealth of information is great. Unfortunately, you may have missed the shrouded attempt to point out that there may be a bug in the lab. Using the Packet Tracer, there is indeed no “service sequence-numbers” global configuration command. So, it either should be in the version of IOS running ((C2900-UNIVERSALK9-M), Version 15.1(4)M4) or it is not supported in the Packet Tracer version.

Since your lab tells us to enable it, you should make a note that it is not available in the Packet Tracer lab topology.

2
0
Would love your thoughts, please comment.x
()
x