Designing an Enterprise Network: Laying the Foundation for Multi-Site Connectivity in Packet Tracer

Designing an Enterprise Network: Laying the Foundation for Multi-Site Connectivity in Packet Tracer

In this blog series, we'll be building a complete enterprise network in Cisco packet tracer and expanding it as we go on. Our goal is to simulate a real-world network connecting multiple geographical sites: London (Headquarters), Manchester (Branch Office), and Glasgow (Data Center).

This first post focuses on designing the network, setting up the topology, and ensuring basic connectivity between the sites.


  1. Plan the Network Topology

To simulate a multi-site enterprise network, we'll use three locations:

  1. London HQ: Central site with core and access switches for employees.
  2. Manchester Branch: Branch office with core and access switches for employees.
  3. Glasgow Data Center: Hosting critical servers like databases and backups.

Devices and Links:

  • London (HQ):
  • 1 Router
  • 2 Switches (Core and Access)
  • 4 PCs

  • Manchester (Branch Office):
  • 1 Router
  • 2 Switches (Core and Access)
  • 4 PCs

  • Glasgow (Data Center):
  • 1 Router
  • 1 Core Switch
  • 2 Servers (Database and backup)

  • WAN Links: Serial connection between routers to simulate WAN connectivity.

  1. Create the Network in Packet Tracer

   1. Add Devices:

  • Place routers, switches, PCs, and Servers for each site in the workspace.
  • Router Models (1941)
  • Switches (2960-24TT)
  1. Connect Devices:

With the routers, we need to add the HWIC-2T module to the back of the device. This is to connect our serial links to each router. Click the router, go to Physical → Turn off device → Drag HWIC-2T to Device. Do this for each router.

Turn off router and drag module to device.
  • Use Ethernet Cables to connect PCs and switches.
  • Use Serial DCE/DTE cables  to connect the routers for WAN links.

  1. Label Everything:
  •  Clearly label each device to which site it represents.

In the end, you should have something that looks like this:

Network Topology

  1. IP Addressing Plan

Here's the IP addressing schema for our network: 

Site

Subnet

Device

IP Address

London HQ

192.168.1./24

Router LAN

192.168.1.1

 

 

PCs (1 - 4)

102.168.1.2 - 192.168.1.5

 

10.0.1.0/30

WAN to Manchester

10.0.1.1

 

10.0.2.0/30

WAN to Glasgow

10.0.2.1

Manchester

192.168.2.0/24

Router LAN

192.168.2.1

 

 

PCs (1 - 4)

192.168.2.2 - 192.168.2.5

 

10.0.1.0/30

WAN to London

10.0.1.2

 

10.0.3.0/30

WAN to Glasgow

10.0.3.1

Glasgow

192.168.3.0/24

Router LAN

192.168.3.1

 

 

Database Server

192.168.3.2

 

 

Backup Server

192.168.3.3

 

10.0.2.0/30

WAN to London

10.0.2.2

 

10.0.3.0/30

WAN to Manchester

10.0.3.2


  1. Configure Basic IP Settings

On PCs and Servers:

  1. Go to each PC/Server and Assign:
  • An IP Address.
  • A Subnet Mask (255.255.255.0 for all)
  • A Default Gateway (router LAN interface IP)
IP configuration - PC

Do this for each PC. Follow the IP Address scheme for each Pc in the list and for the correct default gateway for each site.

Do the same for the servers in Glasgow.

Server IP configuration

Now with the PC and Server IP addresses configured statically we can now configure each router with the default gateway.

London Router:

For me, Gigabit Ethernet 0/0 is the main feed from my Core switch to the router.

London-HQ-RT>enable
London-HQ-RT>config t
London-HQ-RT(config)interface Gigabit Ethernet 0/0
London-HQ-RT(config-if)ip address 192.168.1.1 255.255.255.0
London-HQ-RT(config-if)no shut
London-HQ-RT(config-if)exit
London-HQ-RT(config)exit
London-HQ-RT>write memory
London Default Gateway Configuration

We can see the interface change its state from down to up.

Now we need to do this for each router. Check the default gateway from the IP Address scheme and configure each Gigabit Ethernet port that goes from the router to each core switch.

You can set up Packet Tracer to show you the ports each Ethernet cable is plugged into by going to Options  → Preferences → Tick "Always Show Port Labels in Logical Workspace"  

Enable show all port information

After configuration on each router, we can do a show run command to see the interface.

London default gateway
Manchester default gateway

Glasgow default gateway

Now you have all default gateways and PCs configured. Try and see if you can ping each routers' gateway for their correct site. Don't worry about pinging from one site to another, as that will not work yet. Just ping the router that site belongs to.

Go to a PC in London and open up the Command Prompt

London Pc Command prompt

Let's Ping the London Routers Default gateway

We can ping London Router from London PC

We now know that PCs in London can ping the London router. Do this for each site


  1. Configure WAN interfaces.

Now we need to configure the Wan Links that connects each router together. Here, we will be following our IP Address Scheme to set up our configuration correctly.

London:

10.0.1.0/30

WAN to Manchester

10.0.1.1

10.0.2.0/30

WAN to Glasgow

10.0.2.1

London-HQ-RT>enable
London-HQ-RT>config t
London-HQ-RT(config)config t
London-HQ-RT(config)interface serial 0/1/0 
London-HQ-RT(config-if)ip address 10.0.2.1 255.255.255.252
London-HQ-RT(config-if)no shut
London-HQ-RT(config-if)exit 
London-HQ-RT(config)interface serial 0/1/1
London-HQ-RT(config-if)ip address 10.0.1.1 255.255.255.252
London-HQ-RT(config-if)no shut
London-HQ-RT(config-if)exit
London-HQ-RT(config)exit
London-HQ-RT>write memory

Manchester:

10.0.2.0/30

WAN to London

10.0.2.2

10.0.3.0/30

WAN to Manchester

10.0.3.2

Manchester-BR-RT>enable
Manchester-BR-RT>config t
Manchester-BR-RT(config)interface serial 0/1/0
Manchester-BR-RT(config-if)ip address 10.0.3.1 255.255.255.252
Manchester-BR-RT(config-if)clock rate 64000
Manchester-BR-RT(config-if)no shut
Manchester-BR-RT(config-if)exit
Manchester-BR-RT(config)interface serial 0/1/1
Manchester-BR-RT(config-if)ip address 10.0.1.2 255.255.255.252
Manchester-BR-RT(config-if)clock rate 64000
Manchester-BR-RT(config-if)exit
Manchester-BR-RT(config)exit
Manchester-BR-RT>write memory

Glasgow:

10.0.2.0/30

WAN to London

10.0.2.2

10.0.3.0/30

WAN to Manchester

10.0.3.2

Glasgow-Data-RT>enable
Glasgow-Data-RT>config
Glasgow-Data-RT(config)interface serial 0/1/0
Glasgow-Data-RT(config-if)ip address 10.0.2.2 255.255.255.252
Glasgow-Data-RT(config-if)clock rate 64000
Glasgow-Data-RT(config-if)no shut
Glasgow-Data-RT(config-if)exit
Glasgow-Data-RT(config)interface serial 0/1/1
Glasgow-Data-RT(config-if)ip address 10.0.3.2 255.255.255.252
Glasgow-Data-RT(config-if)no shut
Glasgow-Data-RT(config-if)exit
Glasgow-Data-RT(config)exit
Glasgow-Data-RT>write memory

With all the configuration setup, we can do a show run command to see what our configuration looks like on each router.

London running-configuration
Manchester running-configuration
Glasgow running-configuration

The clock rate command used only on the DCE (Date Communication Equipment) side of a serial connection. If you are getting an error "This command applies only to DCE interfaces," it means that the interface you are trying to configure is the DTE (Data Terminal Equipment) side of the connection.

In Packet Tracer, the DCE/DTE designation is determined automatically when you connect two devices with a serial cable. The DCE side is responsible for providing the clocking.


  1. Test connectivity

We know that our PCs can communicate with each other and the router on their LAN site. Now let's test to see if our PCs can ping the WAN link and if the routers can ping each other.

London PC to London Wan links
Manchester PC to Manchester WAN links
Glasgow server to Glasgow Wan links
Glasgow router can ping, Manchester and London
Manchester router can ping, London and Glasgow
London router can ping, Manchester and Glasgow

We have completed our setup for this post. We now have the base of our new enterprise network.


By completing this setup, we now have three connected sites with basic IP configurations and WAN connectivity. In the next post, we'll introduce EIGRP to dynamically manage routing between sites and optimize connectivity.

I hope you liked this guide and Happy Networking!

Follow the next post of the series here:

Building an Enterprise Network: Configuring EIGRP for Seamless Multi-Site Connectivity
In the previous post, we designed and implemented the foundational setup of our enterprise network. Now, we’ll take a step further by configuring EIGRP (Enhanced Interior Gateway Routing Protocol) to dynamically manage routing between our three sites: London, Manchester, and Glasgow. This will eliminate the need for static routes and

Read more