Shiva's Blog

Office Network Design and Implementation - lab1

Requirements

Scenario: A small accounting firm has just moved into a new office space. The firm employs eight staff members, each requiring access to shared network resources such as a printer, file server, and the internet. The office space is divided into two rooms, and there is a requirement for both wired and wireless connectivity. As the network administrator, your task is to design and implement the network using appropriate Ethernet standards, configure the wireless access points, and ensure all devices are connected and can communicate effectively.

Lab Steps:

  1. Identify and list all required network devices (e.g., switches, wireless access points, cables).
  2. Draw a network topology diagram showing how devices will be connected.
  3. Set up a switch to connect all wired devices using Cat5e or Cat6 Ethernet cables.
  4. Install and configure wireless access points to provide wireless coverage throughout the office.
  5. Configure DHCP on the router to assign IP addresses automatically to all connected devices.
  6. Connect a printer and a file server to the network and ensure they are accessible by all employees.
  7. Test network connectivity and ensure that all devices can access the shared resources and the internet.
  8. Document the configuration settings for future reference.

Assessment: Verify connectivity by pinging the file server from each employee’s computer and accessing the printer. Ensure that wireless devices can connect to the network with appropriate security settings.


Logical Design image Logical Design image


Physical Design image Physical Design image


Simple network (lab1) packet tracer file

Simple Office Network Design

Core Router Configuration

#enable -- enter privilege mode #configure terminal -- enter global configuration mode
#hostname R1 -- change hostname to R1 #interface g 0/0/0 -- select the interface
#ip address 192.168.10.1 255.255.255.0 -- assign IP address to the interface
#no shutdown -- enable the interface
#do show interface g 0/0/0 -- use do show command to view the interface configuration from the global configuraiton mode.

Switch configuration

#enable -- enter privilege mode #configure terminal -- enter global configuration mode
#hostname SW1 -- change hostname to SW1
#interface vlan 1 -- select the VLAN interface
#ip address 192.168.0.252 255.255.255.0 -- assign ip address to the vlan
#no shut -- enable vlan
#do sh ip int br -- verify VLAN is enabled and the IP is assigned

Wireless Router configuration

SSID: account_firm1(2g/5g)
wep: 74c46b67d3

guest SSID: account_firm_guest
wep: 74c46c67d4

IP address table:

Host IP address Interface
R1 192.168.10.1/24 G 0/0/0
Office_router 192.168.10.2/24 Gig 01
SW1 192.168.0.252/24 VLAN 1
Office Printer 192.168.0.3/24 ETH0
File-server 192.168.0.2/24 Eth0

Device location and Connection Map Room 1

Host SW1 interface
office-printer fa 0/10
office-printer fa 0/10
fin-01 fa 0/1
fin-02 fa 0/6
support-02 fa 0/2
admin-01 fa 0/3
fin-02 fa 0/6

Device location and Connection Map Room 2

Host SW1 interface
accounts-04 fa 0/4
accounts-05 fa 0/7
accounts-06 fa 0/8
accounts-07 fa 0/9

Design summary