- π Project Overview
- π― Project Objective
- π Network Topology
- π§ Device Interface Table
- π IP Addressing Table
- π§ Lab Steps
- π» Device Configuration
- β Verification Commands
- β‘ How to Run Lab
- π Folder Structure
- π§± Lab Limitations
- π Learning Outcomes
- π‘ Repository Info
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.
- 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.
- 2 Routers
- 2 Switches
- 4 PCs
- 1 Server (SyslogSV)
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 |
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 |
- Assign IP addresses to routers, switches, PCs, and server.
- Configure routing between R1 and R2.
- Configure switch VLAN interfaces for management.
- Test basic connectivity using ping.
- Configure Syslog on all devices:
logging 10.0.20.10 logging trap informational
- Configure SNMP v2c on all devices:
snmp-server community public RO
- Verify Syslog logs appear on server.
- Verify SNMP configuration using show running-config | include snmp.
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 β
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 β
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 β
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 β
Refer to full files:
πΊοΈ Topology Screenshot
shows the full lab layout in Packet Tracer.
show ip interface brief
show ip interface brief
show ip interface brief
show ip interface brief
ping 10.0.10.1
ping 10.0.10.12
ping 10.0.20.1
ping 10.0.20.10
ping 10.0.20.11
ping 10.0.10.12
** Verify Logs on Syslog Server **
** Commands on All Devices **
R1#show running-config | include snmp
snmp-server community public RO
R2#show running-config | include snmp
snmp-server community public RO
SW1#show running-config | include snmp
snmp-server community public RO
SW2#show running-config | include snmp
snmp-server community public RO
Verification Notes:
-
Packet Tracer MIB Browser may not successfully poll SNMP, due to PT limitations.
-
Configuration exists on all devices, meeting lab objectives.
- Open Packet Tracer and load
lab file/a.pkt
. - Ensure all devices are powered on.
- Verify that IP addressing matches the IP Addressing Table.
- Test connectivity:
- Ping between PCs in the same LAN.
- Ping between PCs across different LANs.
- Verify Syslog logs appear on the Syslog server (Server β Services β Syslog).
- Verify SNMP configuration using: show running-config | include snmp
- Check screenshots folder for reference outputs.
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
-
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.
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.
This project is part of my CCNA Lab Portfolio.
Explore more labs here π @asmymhm