0% found this document useful (0 votes)
6 views9 pages

TEMP 2b

pracitcal note on packet tracer second

Uploaded by

uchemike069
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views9 pages

TEMP 2b

pracitcal note on packet tracer second

Uploaded by

uchemike069
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

UCHEJURU CHIEMENA EMMANUEL

20201233022

CSC 509

DESIGN OF THE NETWORK TORPOLOGY FOR OSCTECH COMPANY

Hardware Specification

Device Type Model Quantity

Core Router Cisco 2911 1

Multilayer Switch Cisco 3560 4

Access Switch Cisco 2960 13

Wireless Access Points Cisco WAP 13

Servers Cisco Servers 3

Workstations PC/Laptop 242

Printers Network Printers 36


IP ADDRESSING SCHEME

Base address 192.168.10.0 was subdivided to accommodate all departments. Each department

was assigned a unique VLAN ID and subnet to facilitate efficient traffic management and

security.

VLAN and Subnet Allocation

Floor Department VLAN ID Subnet Subnet Mask Broadcast

1 Management 10 192.168.10.0 255.255.255.192 192.168.10.62

1 Research 11 192.168.10.64 255.255.255.192 192.168.10.126

1 Human Resource 12 192.168.10.128 255.255.255.192 192.168.10.190

2 Marketing 20 192.168.11.0 255.255.255.192 192.168.11.62

2 Accounting 21 192.168.11.64 255.255.255.192 192.168.11.126

2 Finance 22 192.168.11.128 255.255.255.192 192.168.11.190

3 Logistics & Store 30 192.168.12.0 255.255.255.192 192.168.12.62

3 Customer Care 31 192.168.12.64 255.255.255.192 192.168.12.126

3 Guest Area 32 192.168.12.128 255.255.255.128 192.168.12.254

4 Administration 40 192.168.13.0 255.255.255.192 192.168.13.62

4 ICT 41 192.168.13.64 255.255.255.192 192.168.13.126

4 Server Room 42 192.168.13.128 255.255.255.224 192.168.13.158


Code used:

! 1024
===============================================
======================= ip ssh version 2

! CORE ROUTER CONFIGURATION line vty 0 4

! transport input ssh


===============================================
======================= login local

enable username admin privilege 15 secret admin123

configure terminal

hostname Core-Router ! OSPF Configuration

! Basic Configuration router ospf 1

no ip domain-lookup router-id 1.1.1.1

enable secret cisco123 network 192.168.13.0 0.0.0.63 area 0

line console 0 network 192.168.14.0 0.0.0.3 area 0

password console123 default-information originate always

login

logging synchronous !
===============================================
line vty 0 4 =======================

password telnet123 ! ROUTER CONFIGURATION

login !
===============================================
service password-encryption =======================

banner motd #Authorized Access Only! Violators will be enable


prosecuted!#
configure terminal

hostname Floor1-Router
! Interface Configuration
! Basic Configuration
interface GigabitEthernet0/0
no ip domain-lookup
description Connection to Distribution Switch
enable secret cisco123
ip address 192.168.13.1 255.255.255.192
line console 0
no shutdown
password console123

login
interface GigabitEthernet0/1
logging synchronous
description Connection to Internet
line vty 0 4
ip address 192.168.14.1 255.255.255.252
password telnet123
no shutdown
login

service password-encryption
! SSH Configuration
banner motd #Authorized Access Only! Violators will be
ip domain-name osctech.com prosecuted!#

crypto key generate rsa


! Interface Configuration

interface GigabitEthernet0/0 !
===============================================
description Connection to Distribution Switch =======================

ip address 192.168.13.2 255.255.255.192 ! DISTRIBUTION SWITCH CONFIGURATION

no shutdown !
===============================================
=======================
interface GigabitEthernet0/1 enable
description Management VLAN Interface configure terminal
ip address 192.168.10.1 255.255.255.192 hostname Distribution-Switch
no shutdown ! Basic Configuration

no ip domain-lookup
interface GigabitEthernet0/2 enable secret cisco123
description Research VLAN Interface line console 0
ip address 192.168.10.65 255.255.255.192 password console123
no shutdown login

logging synchronous
interface GigabitEthernet0/3 line vty 0 15
description Human Resource VLAN Interface password telnet123
ip address 192.168.10.129 255.255.255.192 login
no shutdown service password-encryption

banner motd #Authorized Access Only! Violators will be


prosecuted!#
! SSH Configuration

ip domain-name osctech.com
! VLAN Configuration
crypto key generate rsa
vlan 99
1024
name Management
ip ssh version 2
vlan 10
line vty 0 4
name Management_Dept
transport input ssh
vlan 11
login local
name Research_Dept
username admin privilege 15 secret admin123
vlan 12

name HR_Dept
! OSPF Configuration
vlan 20
router ospf 1
name Marketing_Dept
router-id 2.2.2.2
vlan 21
network 192.168.10.0 0.0.0.63 area 0
name Accounting_Dept
network 192.168.10.64 0.0.0.63 area 0
vlan 22
network 192.168.10.128 0.0.0.63 area 0
name Finance_Dept
network 192.168.13.0 0.0.0.63 area 0
vlan 30 line vty 0 15

name Logistics_Store_Dept transport input ssh

vlan 31 login local

name Customer_Care_Dept

vlan 32 !
===============================================
name Guest_Area =======================

vlan 40 ! ACCESS SWITCH CONFIGURATION

name Administration_Dept !
===============================================
vlan 41 =======================
name ICT_Dept enable
vlan 42 configure terminal
name Server_Room hostname Floor1-Switch

! Basic Configuration
! Interface Configuration no ip domain-lookup
interface Vlan99 enable secret cisco123
description Management VLAN line console 0
ip address 192.168.13.3 255.255.255.192 password console123
no shutdown login

logging synchronous
! Trunk Interfaces to Floor Switches line vty 0 15
interface range GigabitEthernet0/1 - 4 password telnet123
description Trunk to Floor Switches login
switchport mode trunk service password-encryption
switchport trunk allowed vlan all banner motd #Authorized Access Only! Violators will be
prosecuted!#
no shutdown

! VLAN Configuration
! Interface to Core Router
vlan 99
interface GigabitEthernet0/5
name Management
description Link to Core Router
vlan 10
switchport mode trunk
name Management_Dept
switchport trunk allowed vlan all
vlan 11
no shutdown
name Research_Dept

vlan 12
! SSH Configuration
name HR_Dept
ip domain-name osctech.com

crypto key generate rsa


! Interface Configuration
1024
interface Vlan99
ip ssh version 2
description Management VLAN switchport port-security

ip address 192.168.13.4 255.255.255.192 switchport port-security mac-address sticky

no shutdown switchport port-security maximum 1

switchport port-security violation shutdown

! Trunk Interface to Distribution Switch no shutdown

interface GigabitEthernet0/1

description Trunk to Distribution Switch ! SSH Configuration

switchport mode trunk ip domain-name osctech.com

switchport trunk allowed vlan all crypto key generate rsa

no shutdown 1024

ip ssh version 2

! Access Interfaces for Management Department line vty 0 15

interface range FastEthernet0/1 - 20 transport input ssh

description Management Department login local

switchport mode access username admin privilege 15 secret admin123

switchport access vlan 10

switchport port-security

switchport port-security mac-address sticky

switchport port-security maximum 1

switchport port-security violation shutdown

no shutdown

! Access Interfaces for Research Department

interface range FastEthernet0/21 - 40

description Research Department

switchport mode access

switchport access vlan 11

switchport port-security

switchport port-security mac-address sticky

switchport port-security maximum 1

switchport port-security violation shutdown

no shutdown

! Access Interfaces for Human Resources Department

interface range FastEthernet0/41 - 48

description Human Resources Department

switchport mode access

switchport access vlan 12

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy