Create vlan interfaces on the snowwhite switch

Assignment Help Computer Network Security
Reference no: EM132859802

Assignment - The Ant

OBJECTIVE: This assignment will test your knowledge of the configuration that we have covered so far. You will see configuration of housekeeping, interfaces, STP, and VLANs.

1. HOUSEKEEPING

On each switch, configure housekeeping on each device using the information provided below, and using the device names given.

1.a) Configure SSH using the following information:
- RSA Modulus: 1024
- Domain name: <your last name>.net
*Note: If I was creating a domain name, it would be sardella.net.

1.b) Passwords - Create 3 users in each device
User 1: <your first name>
User 1 Password: password123
User 2: Chris
User 2 Password: cisco123
User 3: Moana
User 3 Password: TheSeaBeckons
Enable Secret: DISNEY

1.c) Set the timeout value for the console line to 15 minutes, and the timeout for the vty lines to 10 minutes. Ensure both prompt you for a username and password.

2. SPANNING TREE

2.a) Ensure that the SnowWhite switch is the root bridge for all VLANs.
2.b) Enable Rapid STP on all switches.

3. INTERFACES

3.a) You will need to create VLAN interfaces on the SnowWhite switch and use them as default gateways for your hosts and servers. I have given you the number of hosts for each VLAN; you are required to subnet accordingly. Assign the first address of each subnet to the VLAN interface that you will create for each VLAN.

Here is an example:
Let's say that VLAN42 needs 42 hosts. In order to accommodate 42 hosts, I would need a subnet with 6 host bits, giving a subnet mask of 255.255.255.192. If I choose to use 10.42.0.0/26 as my subnet, I would configure the following ONLY on the SnowWhite switch:

SnowWhite# configure terminal
SnowWhite(config)# interface vlan 42
SnowWhite(config-if)# ip address 10.42.0.1 255.255.255.192
SnowWhite(config-if)# no shutdown

Then, statically assign the 5th address of the subnet to the host on that subnet.

3.b) Assign the ports on the SnowWhite switch AND the layer 2 switch into the appropriate VLAN, as follows (assuming the SnowWhite switch is connected to the layer 2 switch using fa0/1):

SnowWhite# configure terminal
SnowWhite(config)# vlan 42
SwowWhite(config-vlan)# exit
SnowWhite(config)# interface fa0/1
SnowWhite(config-if)# switchport mode access
SnowWhite(config-if)# switchport access vlan 42

In the case of the Etherchannel configurations between the SnowWhite switch and (for example) the Aurora switch, you will want to ensure that they are configured as a trunk:

SnowWhite# configure terminal
SnowWhite(config)# interface range fa0/23-24
SnowWhite(config-if-range)# channel-group 1 mode active
SnowWhite(config-if-range)# exit
SnowWhite(config)# interface port-channel 1
SnowWhite(config-if)# switchport mode trunk
SnowWhite(config-if)# switchport trunk encapsulation dot1q

*Note: You do not need the #switchport trunk encapsulation dot1q command on the layer 2 switches.

4. SUBMISSION

When complete, submit the following:

4.a) Your completed packet tracer file named Assignment 7 - Your Name.pkt. Do not submit a .pkz file.

4.b) A text file containing the output of the following commands. Note that some of these commands will be longer than a page. Ensure that you get the output of the entire command. Missing information will result in marks deducted.

On SnowWhite
# show vlan brief
# show interface trunk
# show ip interface brief
# show etherchannel summary
# show spanning-tree vlan 22
# show spanning-tree vlan 62
# show spanning-tree vlan 3
# show spanning-tree vlan 7
# show spanning-tree vlan 60
# show spanning-tree vlan 700
# show spanning-tree vlan 27
# show spanning-tree vlan 72
# show crypto key mypubkey rsa
# show running-config

On Cinderella and Aurora
# show vlan brief
# show interface trunk
# show etherchannel summary
# show spanning-tree vlan 22
# show crypto key mypubkey rsa
# show running-config

On Belle and Jasmine
# show vlan brief
# show interface trunk
# show etherchannel summary
# show spanning-tree vlan 60
# show crypto key mypubkey rsa
# show running-config

On Anna
# show vlan brief
# show spanning-tree vlan 72
# show crypto key mypubkey rsa
# show running-config

On Marian
# show vlan brief
# show spanning-tree vlan 27
# show crypto key mypubkey rsa
# show running-config

On Megara
# show vlan brief
# show spanning-tree vlan 700
# show crypto key mypubkey rsa
# show running-config

On Mulan, Tiana, and Rapunzel
# show vlan brief
# show spanning-tree vlan 60
# show crypto key mypubkey rsa
# show running-config

On Kida
# show vlan brief
# show spanning-tree vlan 7
# show crypto key mypubkey rsa
# show running-config

On Anastasia
# show vlan brief
# show spanning-tree vlan 3
# show crypto key mypubkey rsa
# show running-config

On Elsa
# show vlan brief
# show spanning-tree vlan 62
# show crypto key mypubkey rsa
# show running-config

Assignment - The Spider

Here's how you configure this assignment:

1. HOUSEKEEPING

Configure housekeeping on each router, and the central switch (Urania) using the information provided below, and using the device names given. Note that you do not have to configure the central switch.

1.a) When configuring the RSA modulus:
- Create a domain-name using the name of a character from your favourite movie as the domain name (for example, my domain name might be Neo.org)
- Choose a random 3 digit number between 100 and 999.
- Do not include any repeating numbers (111, 222, etc), or any consecutive numbers (123, 234, etc) in your modulus

1.b) Passwords - Create 3 users in each device
User 1: <your first name>
User 1 Password: Greek
User 2: <your last name>
User 2 Password: Muses
User 3: Chris
User 3 Password: cisco123
Enable Secret: goddess

1.c) Set the timeout value for the console line to 12 minutes, and the timeout for the vty lines to 8 minutes. Ensure both prompt you for a username and password.

2. ROUTING

2.a) On each router, configure the Gi0/0 ports with the given IP address. Then, configure the Gi0/1 ports with the first IP address in the given subnet. Here is your template for configuration:

Router> enable
Router# configure terminal
Router(config)# interface gi0/0
Router(config-if)# ip address 10.0.0.1 255.255.255.0
Router(config-if)# no shutdown

2.b) Configure static routing. Each network must be able to reach all of the other networks.

Example:
Router> enable
Router# configure terminal
Router(config)# ip route 10.1.0.0 255.255.255.0 10.0.0.1

In the above example, 10.1.0.0 is the destination network, 255.255.255.0 is the destination network's subnet mask, and 10.0.0.1 is what R1 is going to use to get to that destination. I've changed up the IP addresses in the above examples, so you'll have to figure out what to use in your assignment.

Note: For those of you slightly ahead in your work, I do not want to see any summaries. The point of the assignment is to ensure that you can configure static routes, not summaries. Yes, I know it's more efficient, and yes, I know it will work. I still want individual static routes.

3. SUBMISSION

When complete, submit BOTH of the following:

3.a) Your completed packet tracer file named Assignment 9 - Your Name.pkt. Do not submit a .pkz file.

3.b) A text file containing the output of the following commands. Note that some of these commands will be longer than a page. Ensure that you get the output of the entire command. Missing information will result in marks deducted. In addition, please submit your commands in the following order.

On Calliope : show ip route
On Cilo : show ip route
On Erato : show ip route
On Euterpe : show ip route
On Melpomene : show ip route
On Polyhymnia : show ip route
On Terpsichore : show ip route
On Thalia : show ip route

On Calliope
# show crypto key mypubkey rsa
# show running-config

On Cilo
# show crypto key mypubkey rsa
# show running-config

On Erato
# show crypto key mypubkey rsa
# show running-config

On Euterpe
# show crypto key mypubkey rsa
# show running-config

On Melpomene
# show crypto key mypubkey rsa
# show running-config

On Polyhymnia
# show crypto key mypubkey rsa
# show running-config

On Terpsichore
# show crypto key mypubkey rsa
# show running-config

On Thalia
# show crypto key mypubkey rsa
# show running-config

On Urania
# show running-config

Attachment:- Assignment -Ant and Spider.rar

Reference no: EM132859802

Questions Cloud

What any remaining excess should be recognized : What any remaining excess should be recognized in the consolidated financial statements as? ayne Company acquired a subsidiary in a combination accounted
Describes information technology tools employed by workers : Discusses and describes information technology tools employed by workers in the public workplace. Discuss the pros and cons of technology tools.
What is the net amount on Sam balance sheet : What is the net amount on Sam's balance sheet for this debt investment at the end of 2020? Show and Label your calculations
What business combination dicken net assets increased by : As a result of this business combination DIcken's net assets increased by? Dickens Corporation issued nonvoting preferred stock with a fair market value.
Create vlan interfaces on the snowwhite switch : Create VLAN interfaces on the SnowWhite switch - test your knowledge of the configuration that we have covered so far.
Technology differ from meaning of information technology : How does the meaning of technology differ from the meaning of information technology? What are some options to overcome this disadvantage?
What amount of the purchase differential should be assigned : Wade Company's control over Ten is only temporary. What amount of the purchase differential should be assigned to Land following the acquisition?
What is the contribution margin per unit : MyArt sells framed art prints for $100. The unit variable cost per phone is $50 plus a selling commissions of 10%. What is the contribution margin per unit
Discuss the issues raised in these circumstances : John wants to sue for his loss. Discuss the issues raised in these circumstances. Is John likely to recover any damages

Reviews

Write a Review

Computer Network Security Questions & Answers

  An overview of wireless lan security - term paper

Computer Science or Information Technology deals with Wireless LAN Security. Wireless LAN Security is gaining importance in the recent times. This report talks about how vulnerable are wireless LAN networks without any security measures and also talk..

  Computer networks and security against hackers

This case study about a company named Magna International, a Canada based global supplier of automotive components, modules and systems. Along with the company analysis have been made in this assignment.

  New attack models

The Internet evolution is and is very fast and the Internet exposes the connected computers to attacks and the subsequent losses are in rise.

  Islamic Calligraphy

Islamic calligraphy or Arabic calligraphy is a primary form of art for Islamic visual expression and creativity.

  A comprehensive study about web-based email implementation

Conduct a comprehensive study about web-based email implementation in gmail. Optionally, you may use sniffer like wireshark or your choice to analyze the communication traffic.

  Retention policy and litigation hold notices

The purpose of this project is to provide you with an opportunity to create a document retention policy. You will also learn how to serve a litigation hold notice for an educational institute.

  Tools to enhance password protection

A report on Tools to enhance Password Protection.

  Analyse security procedures

Analyse security procedures

  Write a report on denial of service

Write a report on DENIAL OF SERVICE (DoS).

  Phising email

Phising email It is multipart, what are the two parts? The HTML part, is it inviting the recepient to click somewhere? What is the email proporting to do when the link is clicked?

  Express the shannon-hartley capacity theorem

Express the Shannon-Hartley capacity theorem in terms of where is the Energy/bit and is the psd of white noise.

  Modern symmetric encryption schemes

Pseudo-random generators, pseudo-random functions and pseudo-random permutations

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd