Skip to content

This project demonstrates a Centralized Syslog and SNMP Monitoring Lab using Cisco Packet Tracer. It showcases how network administrators can centralize log management and device monitoring using Syslog and SNMP v2c across multiple routers and switches. The lab includes full topology, configuration files, verification commands, and documentation fo

License

Notifications You must be signed in to change notification settings

asmymhm/centralized-syslog-snmp-monitoring-lab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

8 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ–₯οΈπŸ“‘ Centralized Syslog & SNMP Monitoring Lab


Table of Contents

  1. πŸ“˜ Project Overview
  2. 🎯 Project Objective
  3. 🌐 Network Topology
  4. πŸ–§ Device Interface Table
  5. πŸ“ IP Addressing Table
  6. πŸ”§ Lab Steps
  7. πŸ’» Device Configuration
  8. βœ… Verification Commands
  9. ⚑ How to Run Lab
  10. πŸ“‚ Folder Structure
  11. 🧱 Lab Limitations
  12. πŸŽ“ Learning Outcomes
  13. πŸ’‘ Repository Info

πŸ“˜ Project Overview

This project demonstrates network monitoring skills using a centralized Syslog server and SNMP.
Logs from routers and switches are sent to a Syslog server for centralized monitoring.
SNMP v2c is configured on all devices to simulate real-world network management.


🎯 Project Objective

  • Configure Syslog on routers and switches to send logs to the Syslog server.
  • Enable SNMP v2c for basic monitoring.
  • Verify network connectivity between all devices.
  • Document configurations, steps, and verification process.

🌐 Network Topology

  • 2 Routers
  • 2 Switches
  • 4 PCs
  • 1 Server (SyslogSV)

TOPOLOGY OVERVIEW


πŸ–§ Device Interface Table

Device Interface Connected IP Address Subnet Mask
R1 G0/0 SW1 G0/1 10.0.10.1 255.255.255.0
R1 G0/1 R2 G0/1 10.0.100.1 255.255.255.252
R2 G0/1 R1 G0/1 10.0.100.2 255.255.255.252
R2 G0/0 SW2 G0/1 10.0.20.1 255.255.255.0
SW1 VLAN 1 R1 G0/0 10.0.10.2 255.255.255.0
SW2 VLAN 1 R2 G0/0 10.0.20.2 255.255.255.0
PC1 NIC SW1 Fa0/1 10.0.10.11 255.255.255.0
PC2 NIC SW1 Fa0/2 10.0.10.12 255.255.255.0
PC3 NIC SW2 Fa0/1 10.0.20.11 255.255.255.0
PC4 NIC SW2 Fa0/2 10.0.20.12 255.255.255.0
Server NIC SW2 Fa0/3 10.0.20.10 255.255.255.0

πŸ“ IP Addressing Table

Device/Item IP Address Netmask Gateway
R1 G0/0 10.0.10.1 255.255.255.0 -
R1 G0/1 10.0.100.1 255.255.255.252 -
R2 G0/1 10.0.100.2 255.255.255.252 -
R2 G0/0 10.0.20.1 255.255.255.0 -
SW1 VLAN1 10.0.10.2 255.255.255.0 10.0.10.1
SW2 VLAN1 10.0.20.2 255.255.255.0 10.0.20.1
PC1 10.0.10.11 255.255.255.0 10.0.10.1
PC2 10.0.10.12 255.255.255.0 10.0.10.1
PC3 10.0.20.11 255.255.255.0 10.0.20.1
PC4 10.0.20.12 255.255.255.0 10.0.20.1
Syslog Server 10.0.20.10 255.255.255.0 10.0.20.1

πŸ”§ Lab Steps

  1. Assign IP addresses to routers, switches, PCs, and server.
  2. Configure routing between R1 and R2.
  3. Configure switch VLAN interfaces for management.
  4. Test basic connectivity using ping.
  5. Configure Syslog on all devices:
    logging 10.0.20.10
    logging trap informational
    
  6. Configure SNMP v2c on all devices:
    snmp-server community public RO
    
  7. Verify Syslog logs appear on server.
  8. Verify SNMP configuration using show running-config | include snmp.

πŸ’» Device Configuration

🚦 Router 1

interface GigabitEthernet0/0
description LAN side (10.0.10.0/24)
ip address 10.0.10.1 255.255.255.0
no shutdown

interface GigabitEthernet0/1
description Link to R2 (10.0.100.0/30)
ip address 10.0.100.1 255.255.255.252
no shutdown

View Full Configuration File β†’


🚦 Router 2

interface GigabitEthernet0/0
description LAN side (10.0.20.0/24)
ip address 10.0.20.1 255.255.255.0
no shutdown

interface GigabitEthernet0/1
description Link to R1 (10.0.100.0/30)
ip address 10.0.100.2 255.255.255.252
no shutdown

View Full Configuration File β†’


πŸ”€ Switch 1

interface vlan 1
ip address 10.0.10.2 255.255.255.0
no shutdown
! Default gateway (for reaching syslog server)
```text
ip default-gateway 10.0.10.1

View Full Configuration File β†’


πŸ”€ Switch 2

interface vlan 1
ip address 10.0.20.2 255.255.255.0
no shutdown
! Default gateway (for reaching syslog server and R1)
```text
ip default-gateway 10.0.20.1

View Full Configuration File β†’


πŸ–₯️ PC and Server Configuration

Refer to full files:

PC Configs β†’

Server Configs β†’


βœ… Verification Commands

πŸ—ΊοΈ Topology Screenshot

shows the full lab layout in Packet Tracer. SNMP LOG S2

🚦 Verify Router Interfaces

R1

show ip interface brief

R1 SHOW IP INTERFACE

R2

show ip interface brief

R2 SHOW IP INTERFACE

πŸ”€ Verify Switch Management Interfaces

SW1

show ip interface brief

S1 SHOW IP INTERFACE

SW2

show ip interface brief

S2 SHOW IP INTERFACE

πŸ“Ά Verify PC Connectivity (Ping Tests)

PC1 β†’ R1

ping 10.0.10.1

PC1 PING R1

PC1 β†’ PC2

ping 10.0.10.12

PC1 PING PC2

PC3 β†’ R2

ping 10.0.20.1

PC3 PING R2

PC1 β†’ Syslog Server

ping 10.0.20.10

PC1 PING SYSLOG SERVER

πŸ“‘ Verify Routing Between LANs

PC1 β†’ PC3

ping 10.0.20.11

PC1 PING PC3

PC4 β†’ PC2

ping 10.0.10.12

PC4 PING PC2

🌐 Verify Syslog Configuration

** Verify Logs on Syslog Server ** SYSLOG SERVER LOG

πŸ—ΊοΈ Verify SNMP Configuration

** Commands on All Devices **

R1#show running-config | include snmp snmp-server community public RO SNMP LOG R1

R2#show running-config | include snmp snmp-server community public RO SNMP LOG R2

SW1#show running-config | include snmp snmp-server community public RO SNMP LOG S1

SW2#show running-config | include snmp snmp-server community public RO SNMP LOG S2

Verification Notes:

  • Packet Tracer MIB Browser may not successfully poll SNMP, due to PT limitations.

  • Configuration exists on all devices, meeting lab objectives.


⚑ How to Run Lab

  1. Open Packet Tracer and load lab file/a.pkt.
  2. Ensure all devices are powered on.
  3. Verify that IP addressing matches the IP Addressing Table.
  4. Test connectivity:
    • Ping between PCs in the same LAN.
    • Ping between PCs across different LANs.
  5. Verify Syslog logs appear on the Syslog server (Server β†’ Services β†’ Syslog).
  6. Verify SNMP configuration using: show running-config | include snmp
  7. Check screenshots folder for reference outputs.

πŸ“‚ Folder Structure

Centralized-Syslog-SNMP/ β”œβ”€ README.md β”œβ”€ verification.md β”œβ”€ lab file/ β”‚ └─ a.pkt β”œβ”€ topology/ β”‚ β”œβ”€ topology_overview.drawio.png β”‚ └─ topology_overview.png β”œβ”€ configs/ β”‚ └─ router-config β”‚ β”œβ”€ r1.cfg β”‚ └─ r2.cfg
β”‚ └─ switch-config/ β”‚ β”œβ”€ sw1.cfg β”‚ └─ sw2.cfg β”‚ └─pc-server-config/ β”‚ β”œβ”€ pc-config.txt β”‚ └─ server-config.txt β”œβ”€ screenshots/ β”‚ β”œβ”€ pc1_ping_pc2.png β”‚ β”œβ”€ pc1_ping_pc3.png β”‚ β”œβ”€ pc1_ping_r1.png β”‚ β”œβ”€ pc1_ping_syslog.png β”‚ β”œβ”€ pc3_ping_r2.png β”‚ β”œβ”€ pc4_ping_pc2.png β”‚ β”œβ”€ r1_show_ip_int_br.png β”‚ β”œβ”€ r1_snmp.png β”‚ β”œβ”€ r2_show_ip_int_br.png β”‚ β”œβ”€ r2_snmp.png β”‚ β”œβ”€ syslog_server_logs.png β”‚ β”œβ”€ sw1_show_ip_int_br.png β”‚ β”œβ”€ sw1_snmp.png β”‚ β”œβ”€ sw2_show_ip_int_br.png β”‚ └─ sw1_snmp.png └─ drawio/ └─ topology.drawio


🧱 Lab Limitations

  • Packet Tracer Limitation: Syslog server is available only under Services β†’ Syslog. There is no Syslog option in the Desktop tab.

  • SNMP Limitation: Packet Tracer does not fully support SNMP polling with the MIB Browser. The SNMP configuration (snmp-server community public RO) is visible in the running config but cannot be fully verified through SNMP queries.

  • Real-World Note: In a real lab, FreeSyslog or other tools would be used for Syslog collection, and SNMP would be verified with an SNMP manager tool like snmpwalk or SolarWinds.


πŸŽ“ Learning Outcomes

After completing this lab, learners will be able to:

  • Configure Syslog on Cisco routers and switches for centralized logging.
  • Configure SNMP v2c for basic network monitoring.
  • Understand IP addressing and routing between multiple LANs.
  • Verify network connectivity and monitor network devices.
  • Identify Packet Tracer limitations for SNMP and Syslog.
  • Document lab topology, configurations, and verification steps professionally.

πŸ’‘ Repository Info

This project is part of my CCNA Lab Portfolio.
Explore more labs here πŸ‘‰ @asmymhm


About

This project demonstrates a Centralized Syslog and SNMP Monitoring Lab using Cisco Packet Tracer. It showcases how network administrators can centralize log management and device monitoring using Syslog and SNMP v2c across multiple routers and switches. The lab includes full topology, configuration files, verification commands, and documentation fo

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published