- NVQ Level 5 Unit 507 Safeguarding in Adult Care
- Structural Design of a 4m Roof Beam: Load and Stability Analysis, Assessment 2
- M33118 Configuring and Studying ASA Basic Settings and Firewall Using CLI
- The Reasons For Hitler Gaining Power In 1933, Course Work
- Sensitivity Analysis of Option Pricing: Impact of Volatility and Barrier Conditions
- Network Threats and Vulnerabilities, UNIS, Coursework
- Corporate Finance and Business Valuation Coursework
- 5301ELE Digital System Evaluation Coursework, Level 5, LJMU 2024
- Power Electronic Applications and Control Coursework 1 2024
- PE7007 Construction Economics, Coursework Brief – 2024/2025 , NU, UK
- Level 3 Diploma in Adult Care, Coursework, UK: Understand the application of personcentred practices in care settings
- Decide whether each of the following statements is true or false. Justify your answer in each case by giving an example or stating any general result seen at the lecture: Mathematics, Coursework, NU, UK
- 7CO03: Critically assess different ethical standpoints on people practice and the maintenance of high standards of ethical behaviour: CIPD level 7 , Coursework, UK
- SQE2: Oral Skills-Written Skills- Apply the law comprehensively to the client’s situation, identifying any ethical and professional conduct issues: Reflective Portfolio, Coursework, UK
- SQE 1 Preparation: Portfolio Assessment-analyse and reflect upon your development of the practical legal skills that the Solicitors Regulation Authority (the SRA) : Reflective Portfolio, Coursework, UK
- DSM120: Financial Data Modelling, Coursework 1, UK
- DSM070: Building the Blockchain: the chain, mining, and the consensus mechanism: Blockchain Programming, Coursework 3, UOL, UK
- FHEQ Level 7 ES5800 – Systematic review protocol In this assessment you are asked to write a systematic review protocol: Analytical skills for Environmental Managers, Coursework, BUL, UK
- FHEQ Level 7 ES5800 – Data analysis As part of your learning activities in the autumn 2023 term, you have measured reaction times using the ruler drop test among athletes: Analytical skills for Environmental Managers, Coursework, BUL, UK
- FHEQ Level 7 ES5800 – Analytical skills for Environmental Managers, Coursework, BUL, UK
Lab 4: Configuring VLANs and Inter-VLAN Routing Using Cisco Packet Tracer
University | Caribbean Maritime University |
Subject | Computer Networking |
Lab 4: Implementing Inter-VLAN Routing
General Instructions for All Labs
- Tools Required:
- Cisco Packet Tracer: Ensure you have the latest version installed.
- Access Credentials: Username and password for network devices, if necessary.
- Reference Materials: Course slides, textbook chapters, and any supplementary resources provided.
- Submission Requirements:
- Lab Report Document: A PDF or Word document containing:
- Introduction: Brief overview of the lab objectives.
- Step-by-Step Execution: Detailed description of the steps taken.
- Screenshots: Clear images of key components and configurations.
- Feedback: Personal insights on the lab experience.
- Learnings: Summary of what was learned and how it applies to real-world scenarios.
- Lab Report Document: A PDF or Word document containing:
- Assessment Criteria:
- Accuracy: Correctness of configurations and network setups.
- Completeness: Inclusion of all required steps and components.
- Clarity: Clear explanations and well-organized report.
- Evidence: Quality and relevance of screenshots provided.
Week 4: Data Link Layer
Lab 4: Configuring VLANs and Inter-VLAN Routing
Objective:
- Create and assign VLANs on switches.
- Configure inter-VLAN routing to enable communication between different VLANs.
Required Tools:
- Cisco Packet Tracer
- Access to course slides on Data Link Layer and VLANs
Step-by-Step Instructions:
- Launch Cisco Packet Tracer:
- Open Cisco Packet Tracer.
- Create a Network Topology:
- Add Devices:
- Drag and drop two Switches, one Router, and four Generic PCs.
- Connect Devices:
- Connect Switch1 to Router via GigabitEthernet0/0.
- Connect Switch2 to Router via GigabitEthernet0/1.
- Connect PC1 and PC2 to Switch1.
- Connect PC3 and PC4 to Switch2.
- Add Devices:
- Configure VLANs on Switches:Switch1> enable
Switch1# configure terminal
Switch1(config)# vlan 10
Switch1(config-vlan)# name Sales
Switch1(config-vlan)# exit
Switch1(config)# vlan 20
Switch1(config-vlan)# name Engineering
Switch1(config-vlan)# exit- Assign Ports to VLANs:Switch1(config)# interface FastEthernet0/1
Switch1(config-if)# switchport mode access
Switch1(config-if)# switchport access vlan 10
Switch1(config-if)# exit
Switch1(config)# interface FastEthernet0/2
Switch1(config-if)# switchport mode access
Switch1(config-if)# switchport access vlan 20
Switch1(config-if)# exitDo You Need Assignment of This Question
- Assign Ports to VLANs:
- Configure IP Addresses for VLANs on the Router:Router> enable
Router# configure terminal
Router(config)# interface GigabitEthernet0/0
Router(config-if)# no shutdown
Router(config-if)# exit
Router(config)# interface GigabitEthernet0/0.10
Router(config-subif)# encapsulation dot1Q 10
Router(config-subif)# ip address 192.168.10.1 255.255.255.0
Router(config-subif)# exit
Router(config)# interface GigabitEthernet0/0.20
Router(config-subif)# encapsulation dot1Q 20
Router(config-subif)# ip address 192.168.20.1 255.255.255.0
Router(config-subif)# exit
Router(config)# exit
Router# write memory - Assign IP Addresses to PCs:
- PC1 (VLAN 10 – Sales):
- IP Address: 192.168.10.2
- Subnet Mask: 255.255.255.0
- Default Gateway: 192.168.10.1
- PC2 (VLAN 10 – Sales):
- IP Address: 192.168.10.3
- Subnet Mask: 255.255.255.0
- Default Gateway: 192.168.10.1
- PC3 (VLAN 20 – Engineering):
- IP Address: 192.168.20.2
- Subnet Mask: 255.255.255.0
- Default Gateway: 192.168.20.1
- PC4 (VLAN 20 – Engineering):
- IP Address: 192.168.20.3
- Subnet Mask: 255.255.255.0
- Default Gateway: 192.168.20.1
- PC1 (VLAN 10 – Sales):
- Configure Trunk Ports on Switches:Switch1(config)# interface GigabitEthernet0/24
Switch1(config-if)# switchport mode trunk
Switch1(config-if)# switchport trunk allowed vlan 10,20
Switch1(config-if)# exitSwitch2(config)# interface GigabitEthernet0/24
Switch2(config-if)# switchport mode trunk
Switch2(config-if)# switchport trunk allowed vlan 10,20
Switch2(config-if)# exit - Verify VLAN Configuration:
- On Switch1:Switch1# show vlan brief
- Ensure VLANs 10 and 20 are listed with assigned ports.
- On Router:Router# show ip interface brief
Router# show running-config interface GigabitEthernet0/0.10
Router# show running-config interface GigabitEthernet0/0.20
- On Switch1:
- Test Inter-VLAN Connectivity:
- From PC1 (VLAN 10), ping PC3 (VLAN 20):ping 192.168.20.2
- From PC3 (VLAN 20), ping PC1 (VLAN 10):ping 192.168.10.2
- Confirm that pings are successful, indicating proper inter-VLAN routing.
- From PC1 (VLAN 10), ping PC3 (VLAN 20):
Assignment Submission:
- Lab Report Document:
- Introduction: Explain the objectives of configuring VLANs and inter-VLAN routing.
- Execution Steps: Describe each configuration step, linking them to VLAN concepts.
- Screenshots: Include images of VLAN configurations on switches, router sub-interfaces, IP configurations on PCs, VLAN tables, and successful ping tests.
- Feedback: Reflect on the process of setting up VLANs and configuring inter-VLAN routing.
- Learnings: Discuss the benefits of VLANs in network segmentation and management.
Buy Answer of This Assessment & Raise Your Grades
Answer
