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:
- Identify and list all required network devices (e.g., switches, wireless access points, cables).
- Draw a network topology diagram showing how devices will be connected.
- Set up a switch to connect all wired devices using Cat5e or Cat6 Ethernet cables.
- Install and configure wireless access points to provide wireless coverage throughout the office.
- Configure DHCP on the router to assign IP addresses automatically to all connected devices.
- Connect a printer and a file server to the network and ensure they are accessible by all employees.
- Test network connectivity and ensure that all devices can access the shared resources and the internet.
- 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
Physical Design image
Simple network (lab1) packet tracer file
Simple Office Network Design
Core Router Configuration
- change host name to R1
- assign IP address to g 0/0/0 interface (internal)
- enable the interface
#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
- change host name to SW1
- assign VLAN 1 an IP address of 192.168.0.252/24
- enable VLAN
- Verify VLAN is enabled and the IP is assigned
#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
- DHCP server enabled
- DHCP pool (192.168.0.10 - 192.168.0.50)
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
- Assuming the core router is connected directly to the internet on g 0/0/1.
- Internet line goes to the Office router internet port
- Office_router LAN port is connected to SW1
- Office_router functions as the DHCP server
- SW1 is configured with one VLAN (VLAN 1) all the interfaces are in the same VLAN
- All the wired clients are directly connected to the Switch SW1
- All the wireless clients are connected to Office_router
- Wireless is configured with both 2g and 5g channel, with Auto Channel bandwidth wep security enabled
- Guest network is also configured with both 2g and 5g channel, with Auto chaneel bandwidth, wep security enabled
- Printer and File server are configured with static IP address
- All the clients laptops, computers, tables and smartphone are configured to receive IP address from DHCP