ccnp - switch

28
LACP with STP Sim December 4th, 2012 in LabSim Go to comments Question You work for SWITCH.com. They have just added a new switch (SwitchB) to the existing network as shown in the topology diagram. RouterA is currently configured correctly and is providing the routing function for devices on SwitchA and SwitchB. SwitchA is currently configured correctly, but will need to be modified to support the addition of SwitchB. SwitchB has a minimal configuration. You have been tasked with competing the needed configuring of SwitchA and SwitchB. SwitchA and SwitchB use Cisco as the enable password. Configuration Requirements for SwitchA - The VTP and STP configuration modes on SwitchA should not be modified. – SwitchA needs to be the root switch for vlans 11, 12, 13, 21, 22 and 23. All other vlans should be left are their default values. Configuration Requirements for SwitchB - Vlan 21, Name: Marketing, will support two servers attached to fa0/9 and fa0/10

Upload: sean-mark

Post on 18-Jul-2016

177 views

Category:

Documents


5 download

DESCRIPTION

CCNP - Switch

TRANSCRIPT

Page 1: CCNP - Switch

LACP with STP SimDecember 4th, 2012 in LabSim Go to comments

Question

You work for SWITCH.com. They have just added a new switch (SwitchB) to the existing network as shown in the topology diagram.

RouterA is currently configured correctly and is providing the routing function for devices on SwitchA and SwitchB. SwitchA is currently configured correctly, but will need to be modified to support the addition of SwitchB. SwitchB has a minimal configuration. You have been tasked with competing the needed configuring of SwitchA and SwitchB. SwitchA and SwitchB use Cisco as the enable password.

Configuration Requirements for SwitchA

- The VTP and STP configuration modes on SwitchA should not be modified. – SwitchA needs to be the root switch for vlans 11, 12, 13, 21, 22 and 23. All other vlans should be left are their default values.

Configuration Requirements for SwitchB

- Vlan 21, Name: Marketing, will support two servers attached to fa0/9 and fa0/10– Vlan 22, Name: Sales, will support two servers attached to fa0/13 and fa0/14– Vlan 23, Name: Engineering, will support two servers attached to fa0/15 and fa0/16– Access ports that connect to server should transition immediately to forwarding state upon detecting the connection of a device.– SwitchB VTP mode needs to be the same as SwitchA.– SwitchB must operate in the same spanning tree mode as SwitchA.– No routing is to be configured on SwitchB.– Only the SVI vlan 1 is to be configured and it is to use address 192.168.1.11/24.

Inter-switch Connectivity Configuration Requirements:

Page 2: CCNP - Switch

- For operational and security reasons trunking should be unconditional and Vlans 1, 21, 22 and 23 should tagged when traversing the trunk link.– The two trunks between SwitchA and SwitchB need to be configured in a mode that allows for the maximum use of their bandwidth for all vlans. This mode should be done with a non-proprietary protocol, with SwitchA controlling activation.– Propagation of unnecessary broadcasts should be limited using manual pruning on this trunk link.

Answer and Explanation:

Below is a good solution commented by Ruci. Please say thank to Ruci!

SW-A (close to router)SW-A#configure terminal

SW-A(config)#spanning-tree vlan 11-13,21-23 root primary

SW-A(config)#vlan 21SW-A(config-vlan)#name MarketingSW-A(config-vlan)#exit

SW-A(config)#vlan 22SW-A(config-vlan)#name SalesSW-A(config-vlan)#exit

SW-A(config)#vlan 23SW-A(config-vlan)#name EngineeringSW-A(config-vlan)#exitSW-A(config)#interface range Fa0/3 – 4SW-A(config-if)#no switchport mode accessSW-A(config-if)#no switchport access vlan 98 (These two commands must be deleted to form a trunking link)SW-A(config-if)#switchport trunk encapsulation dot1q (cannot issued this command on this switch, but don’t worry coz I still got 100%)SW-A(config-if)#switchport mode trunkSW-A(config-if)#switchport trunk native vlan 99SW-A(config-if)#switchport trunk allowed vlan 1,21-23SW-A(config-if)#channel-group 1 mode activeSW-A(config-if)#channel-protocol lacpSW-A(config-if)#no shutdownSW-A(config-if)#end

——————————————————————————————–

SW-B (far from router)SW-B#configure terminal

Page 3: CCNP - Switch

SW-B(config)#vlan 21SW-B(config-vlan)#name MarketingSW-B(config-vlan)#exit

SW-B(config)#vlan 22SW-B(config-vlan)#name SalesSW-B(config-vlan)#exit

SW-B(config)#vlan 23SW-B(config-vlan)#name EngineeringSW-B(config-vlan)#exitSW-B(config)#vlan 99SW-B(config-vlan)#name TrunkNative // not necessary to name it but just name it same as SwitchASW-B(config-vlan)#exitSW-B(config)#interface range Fa0/9 – 10SW-B(config-if-range)#switchport mode accessSW-B(config-if-range)#switchport access vlan 21SW-B(config-if-range)#spanning-tree portfastSW-B(config-if-range)#no shutdownSW-B(config-if-range)#exit

SW-B(config)#interface range Fa0/13 – 14SW-B(config-if-range)#switchport mode accessSW-B(config-if-range)#switchport access vlan 22SW-B(config-if-range)#spanning-tree portfastSW-B(config-if-range)#no shutdownSW-B(config-if-range)#exit

SW-B(config)#interface range Fa0/15 – 16SW-B(config-if-range)#switchport mode accessSW-B(config-if-range)#switchport access vlan 23SW-B(config-if-range)#spanning-tree portfastSW-B(config-if-range)#no shutdownSW-B(config-if-range)#exit

SW-B(config)#vtp mode transparent

SW-B(config)#spanning-tree mode rapid-pvst

SW-B(config)#ip default-gateway 192.168.1.1 (you can get this IP from SW-A with command show cdp neighbour detail) // not sure about this command because the question says “No routing is to be configured on SwitchB”.

SW-B(config)#interface vlan 1SW-B(config-if)#ip address 192.168.1.11 255.255.255.0

Page 4: CCNP - Switch

SW-B(config-if)#no shutdownSW-B(config-if)#exit

SW-B(config)#interface range Fa0/3 – 4SW-B(config-if)#switchport trunk encapsulation dot1q (yes I can issued this command on this switch)SW-B(config-if)#switchport mode trunkSW-B(config-if)#switchport trunk native vlan 99SW-B(config-if)#switchport trunk allowed vlan 1,21-23SW-B(config-if)#channel-group 1 mode passive //mode passive because “SwitchA controlling activation”SW-B(config-if)#channel-protocol lacpSW-B(config-if)#no shutdownSW-B(config-if)#end

———————————————————

Some guidelines for configuring SwitchA & SwitchB:

Configuration Requirements for SwitchA

- The VTP and STP configuration modes on SwitchA should not be modified. – SwitchA needs to be the root switch for vlans 11, 12, 13, 21, 22 and 23. All other vlans should be left are their default values

SW-A(config)#spanning-tree vlan 11-13,21-23 root primary

Configuration Requirements for SwitchB

- Vlan 21, Name: Marketing, will support two servers attached to fa0/9 and fa0/10– Vlan 22, Name: Sales, will support two servers attached to fa0/13 and fa0/14– Vlan 23, Name: Engineering, will support two servers attached to fa0/15 and fa0/16– Access ports that connect to server should transition immediately to forwarding state upon detecting the connection of a device.

vlan …name …(VLANs must be created on both switches if not exist)interface range Fa0/x – xswitchport mode accessswitchport access vlanspanning-tree portfast

- SwitchB VTP mode needs to be the same as SwitchA. vtp mode transparent- SwitchB must operate in the same spanning tree mode as SwitchA. spanning-tree mode rapid-pvst

- No routing is to be configured on SwitchB.– Only the SVI vlan 1 is to be configured and it is to use address 192.168.1.11/24.

interface vlan 1ip address 192.168.1.11 255.255.255.0

Page 5: CCNP - Switch

Inter-switch Connectivity Configuration Requirements:

- For operational and security reasons trunking should be unconditional and Vlans 1, 21, 22 and 23 should tagged when traversing the trunk link.

SW-A(config)#interface range Fa0/3 – 4SW-A(config-if)#no switchport mode accessSW-A(config-if)#no switchport access vlan 98 //These two commands must be deleted to form a trunking link.SW-A(config-if)#switchport mode trunkSW-A(config-if)#switchport trunk native vlan 99—————————————SW-B(config)#interface range Fa0/3 – 4SW-B(config-if)#switchport trunk encapsulation dot1q (yes I can issued this command on this switch)SW-B(config-if)#switchport mode trunkSW-B(config-if)#switchport trunk native vlan 99

- The two trunks between SwitchA and SwitchB need to be configured in a mode that allows for the maximum use of their bandwidth for all vlans. This mode should be done with a non-proprietary protocol, with SwitchA controlling activation.

SW-A(config)#interface range Fa0/3 – 4SW-A(config-if)#channel-group 1 mode activeSW-A(config-if)#channel-protocol lacpSW-A(config-if)#no shutdown—————————————SW-B(config)#interface range Fa0/3 – 4SW-B(config-if)#channel-group 1 mode passiveSW-B(config-if)#channel-protocol lacpSW-B(config-if)#no shutdown—————————————Maybe the interface Port-channel 1 was configured on both switches so we don’t configure it here. If not we have to configure them with “interface port-channel 1″ command. Also you have to turn them up.

- Propagation of unnecessary broadcasts should be limited using manual pruning on this trunk link.

SW-A(config)#interface range Fa0/3 – 4SW-A(config-if)#switchport trunk allowed vlan 1,21-23—————————————SW-B(config)#interface range Fa0/3 – 4SW-B(config-if)#switchport trunk allowed vlan 1,21-23

 

Some notes for this sim: + You should check the initial status of both switches with these commands: show vtp status (transparent mode on switchA and we have to set the same mode on switchB), show spanning-tree [summary] (rapid-pvst mode on switchA and we have to set the same mode on switchB), show vlan (check the native vlan), show etherchannel 1 port-channel and show ip int brief(check if Port-channel 1 has been created and make sure it is up), show run (to check everything again).

Page 6: CCNP - Switch

+ When using “int range f0/x – y” command hit space bar before and after “-” otherwise the simulator does not accept it. + You must create vlan 99 for the switchB. SwitchA already have vlan 99 configured.+ At the end, you can try to ping from SwitchB to RouterA (you can get the IP on RouterA via the show cdp neighbors detail on SwitchA), not sure if it can ping or not. If not, you can use the “ip default-gateway 192.168.1.1″ on SwitchB.

We hope with this information our candidates can find the best solution in the exam. If you learn anything new about this sim please share with us!

Page 7: CCNP - Switch

MLS and EIGRP SimDecember 4th, 2012 in LabSim Go to comments

Question

You have been tasked with configuring multilayer SwitchC, which has a partial configuration and has been attached to RouterC as shown in the topology diagram.

You need to configure SwitchC so that Hosts H1 and H2 can successful ping the server S1. Also SwitchC needs to be able to ping server S1. Due to administrative restrictions and requirements you should not add/delete VLANs, changes VLAN port assignments or create trunk links. Company policies forbid the use of static or default routing. All routes must be learned via EIGRP 650 routing protocol.

You do not have access to RouterC, RouterC is correctly configured. No trunking has been configured on RouterC.Routed interfaces should use the lowest host on a subnet when possible. The following subnets are available to implement this solution:– 10.10.10.0/24 – 190.200.250.32/27 – 190.200.250.64/27Hosts H1 and H2 are configured with the correct IP address and default gateway.SwitchC uses Cisco as the enable password.Routing must only be enabled for the specific subnets shown in the diagram.

Answer and Explanation

In real life, there are two ways to configure interVLAN routing in this case:

Page 8: CCNP - Switch

+ Use RouterC as a “router on a stick” and SwitchC as a pure Layer2 switch. Trunking must be established between RouterC and SwitchC.+ Only use SwitchC for interVLAN routing without using RouterC, SwitchC should be configured as a Layer 3 switch (which supports ip routing function as a router). No trunking requires.

The question clearly states “No trunking has been configured on RouterC” so RouterC does not contribute to interVLAN routing of hosts H1 & H2 -> SwitchC must be configured as a Layer 3 switch with SVIs for interVLAN routing.

We should check the default gateways on H1 & H2. Click on H1 and H2 and type the “ipconfig” command to get their default gateways.

C:\>ipconfig

We will get the default gateways as follows:

Host1:+ Default gateway: 190.200.250.33

Host2:+ Default gateway: 190.200.250.65

Now we have enough information to configure SwitchC (notice the EIGRP AS in this case is 650)

Note: VLAN2 and VLAN3 were created and gi0/10, gi0/11 interfaces were configured as access ports so we don’t need to configure them in this sim.

SwitchC# configure terminalSwitchC(config)# int gi0/1SwitchC(config-if)#no switchport -> without using this command, the simulator does not let you assign IP address on Gi0/1 interface.SwitchC(config-if)# ip address 10.10.10.2 255.255.255.0 ->RouterC has used IP 10.10.10.1 so this is the lowest usable IP address.SwitchC(config-if)# no shutdownSwitchC(config-if)# exitSwitchC(config)# int vlan 2SwitchC(config-if)# ip address 190.200.250.33 255.255.255.224SwitchC(config-if)# no shutdownSwitchC(config-if)# int vlan 3SwitchC(config-if)# ip address 190.200.250.65 255.255.255.224SwitchC(config-if)# no shutdownSwitchC(config-if)#exitSwitchC(config)# ip routing (Notice: MLS will not work without this command)SwitchC(config)# router eigrp 650

Page 9: CCNP - Switch

SwitchC(config-router)# network 10.10.10.0 0.0.0.255SwitchC(config-router)# network 190.200.250.32 0.0.0.31SwitchC(config-router)# network 190.200.250.64 0.0.0.31

NOTE : THE ROUTER IS CORRECTLY CONFIGURED, so you will not miss within it in the exam , also don’t modify/delete any port just do the above configuration. Also some reports said the “no auto-summary” command can’t be used in the simulator, in fact it is not necessary because the network 190.200.0.0/16 is not used anywhere else in this topology.

In order to complete the lab , you should expect the ping to SERVER to succeed from the MLS , and from the PCs as well.

Also make sure you use the correct EIGRP AS number (in the configuration above it is 650 but it will change when you take the exam) but we are not allowed to access RouterC so the only way to find out the EIGRP AS is to look at the exhibit above. If you use wrong AS number, no neighbor relationship is formed between RouterC and SwitchC.

In fact, we are pretty sure instead of using two commands “network 190.200.250.32 0.0.0.31″ and “network 190.200.250.64 0.0.0.31″ we can use one simple command “network 190.200.0.0″ because it is the nature of distance vector routing protocol like EIGRP: only major networks need to be advertised; even without “no auto-summary” command the network still works correctly. But in the exam the sim is just a flash based simulator so we should use two above commands, just for sure. But after finishing the configuration, we can use “show run” command to verify, only the summarized network 190.200.0.0 is shown.

Page 10: CCNP - Switch

VTP Lab 2April 20th, 2012 in LabSim Go to comments

Question:

Acme is a small export company that has an existing enterprise network comprised of 5 switches; CORE,DSW1,DSW2,ASW1 and ASW2. The topology diagram indicates their desired pre-VLAN spanning tree mapping. Previous configuration attempts have resulted in the following issues: – CORE should be the root bridge for VLAN 20; however, DSW1 is currently the root bridge for VLAN 20. – Traffic for VLAN 30 should be forwarding over the gig 1/0/6 trunk port between DSW1 and DSW2. However VLAN 30 is currently using gig 1/0/5. – Traffic for VLAN 40 should be forwarding over the gig 1/0/5 trunk port between DSW1 and DSW2. However VLAN 40 is currently using gig 1/0/6.

You have been tasked with isolating the cause of these issuer and implementing the appropriate solutions. You task is complicated by the fact that you only have full access to DSW1, with isolating the cause of these issues and implementing the appropriate solutions. Your task is complicated by the fact that you only have full access to DSW1, with the enable secret password cisco. Only limited show command access is provided on CORE, and DSW2 using the enable 2 level with a password of acme. No configuration changes will be possible on these routers. No access is provided to ASW1 or ASW2.

Page 11: CCNP - Switch

Answer and Explanation:

1) “CORE should be the root bridge for VLAN 20; however, DSW1 is currently the root bridge for VLAN 20″ -> We need to make CORE switch the root bridge for VLAN 20.

By using the “show spanning-tree” command as shown above, we learned that DSW1 is the root bridge for VLAN 20 (notice the line “This bridge is the root”).

DSW1>enableDSW1#show spanning-tree

Page 12: CCNP - Switch

To determine the root bridge, switches send and compare their priorities and MAC addresses with each other. The switch with the lowest priority value will have highest priority and become the root bridge. Therefore, we can deduce that the priority of DSW1 switch is lower than the priority of the CORE switch so it becomes the root bridge. To make the CORE the root bridge we need to increase the DSW1′s priority value, the best value should be 61440 because it is the biggest value allowed to assign and it will surely greater than of CORE switch. (You can use another value but make sure it is greater than the CORE priority value by checking if the CORE becomes the root bridge or not; and that value must be in increments of 4096).

(Notice that the terms bridge and switch are used interchangeably when discussing STP)

DSW1#configure terminal DSW1(config)#spanning-tree vlan 20 priority 61440

2) “Traffic for VLAN 30 should be forwarding over the gig 1/0/6 trunk port between DSW1 and DSW2. However VLAN 30 is currently using gig 1/0/5″

DSW1 is the root bridge for VLAN 30 (you can re-check with the show spanning-tree command as above), so all the ports are in forwarding state for VLAN 30. But the question said that VLAN

Page 13: CCNP - Switch

30 is currently using Gig1/0/5 so we can guess that port Gig1/0/6 on DSW2 is in blocking state (for VLAN 30 only), therefore all traffic for VLAN 30 will go through port Gig1/0/5.

The root bridge for VLAN 30, DSW1, originates the Bridge Protocol Data Units (BPDUs) and switch DSW2 receives these BPDUS on both Gig1/0/5 and Gig1/0/6 ports. It compares the two BPDUs received, both have the same bridge-id so it checks the port cost, which depends on the bandwidth of the link. In this case both have the same bandwidth so it continues to check the sender’s port id (includes port priority and the port number of the sending interface). The lower port-id value will be preferred so the interface which received this port-id will be the root and the other interface (higher port-id value) will be blocked.

In this case port Gig1/0/6 of DSW2 received a Priority Number of 128.6 (means that port priority is 128 and port number is 6) and it is greater than the value received on port Gig1/0/5 (with a Priority Number of 128.5) so port Gig1/0/6 will be blocked. You can check again with the “show spanning-tree” command. Below is the output (notice this command is issued on DSW1 – this is the value DSW2 received and used to compare).

Therefore, all we need to do is to change the priority of port Gig1/0/6 to a lower value so the neighboring port will be in forwarding state. Notice that we only need to change this value for VLAN 30, not for all VLANs.

DSW1(config)#interface g1/0/6 DSW1(config-if)#spanning-tree vlan 30 port-priority 64 DSW1(config-if)#exit

3) “Traffic for VLAN 40 should be forwarding over the gig 1/0/5 trunk port between DSW1 and DSW2. However VLAN 40 is currently using gig 1/0/6″

Page 14: CCNP - Switch

Next we need to make sure traffic for VLAN 40 should be forwarding over Gig1/0/5 ports. It is a similar job, right? But wait, we are not allowed to make any configurations on DSW2, how can we change its port-priority for VLAN 40? There is another solution for this…

Besides port-priority parameter, there is another value we can change: the Cost value (or Root Path Cost). Although it depends on the bandwidth of the link but a network administrator can change the cost of a spanning tree, if necessary, by altering the configuration parameter in such a way as to affect the choice of the root of the spanning tree.

Notice that the Root Path Cost is the cost calculated by adding the cost in the received hello to the cost of the interface the hello BPDU was received. Therefore if you change the cost on an interface of DSW1 then only DSW1 will learn the change.

By default, the cost of a 100Mbps link is 19 but we can change this value to make sure that VLAN 40 will use interface Gig1/0/5.

DSW1(config)#interface g1/0/5 DSW1(config-if)#spanning-tree vlan 40 cost 1

DSW1(config-if)#end

You should re-check to see if everything was configured correctly:

DSW1#show spanning-tree

Save the configuration:

DSW1#copy running-config startup-config

(Notice: Many reports said the copy running-config startup-config didn’t work but they still got the full mark)

Remember these facts about Spanning-tree:

Path Selection:

1) Prefer the neighbor advertising the lowest root ID2) Prefer the neighbor advertising the lowest cost to root3) Prefer the neighbor with the lowest bridge ID4) Prefer the lowest sender port ID

Spanning-tree cost:

Page 15: CCNP - Switch

Other good resource for reference:

http://www.cisco.com/en/US/tech/tk389/tk621/technologies_tech_note09186a00800ae96a.shtml

Page 16: CCNP - Switch

VTP LabApril 16th, 2012 in LabSim Go to comments

Question:

The headquarter offices for a book retailer are enhancing their wiring closets with Layer3 switches. The new distribution-layer switch has been installed and a new access-layer switch cabled to it. Your task is to configure VTP to share VLAN information from the distribution-layer switch to the access-layer devices. Then, it is necessary to configure interVLAN routing on the distribution layer switch to route traffic between the different VLANs that are configured on the access-layer switches; however, it is not necessary for you to make the specific VLAN port assignments on the access-layer switches. Also, because VLAN database mode is being deprecated by Cisco, all VLAN and VTP configurations are to be completed in the global configuration mode. Please reference the following table for the VTP and VLAN information to be configured:

Requirements:

VTP Domain name cisco  VLAN Ids 20 21IP Addresses 172.16.71.1/24 172.16.132.1/24

These are your specific tasks:

1. Configure the VTP information with the distribution layer switch as the VTP server2. Configure the VTP information with the access layer switch as a VTP client3. Configure VLANs on the distribution layer switch

Page 17: CCNP - Switch

4. Configure inter-VLAN routing on the distribution layer switch5. Specific VLAN port assignments will be made as users are added to the access layer switches in the future.6. All VLANs and VTP configurations are to completed in the global configuration. To configure the switch click on the host icon that is connected to the switch be way of a serial console cable.

Answer and Explanation:

 

1) Configure the VTP information with the distribution layer switch as the VTP server:

 

DLSwitch#configure terminalDLSwitch(config)#vtp mode serverDLSwitch(config)#vtp domain cisco (use cisco, not CISCO because it is case sensitive)

(Requirement 2 will be solved later)3) Configure VLANs on the distribution layer switch

To create VLANs on a switch, use the vlan vlanID# command:DLSwitch(config)#vlan 20DLSwitch(config)#vlan 21

Configure Ip addresses for Vlans:

DLSwitch(config)#interface vlan 20DLSwitch(if-config)#ip address 172.16.71.1 255.255.255.0DLSwitch(if-config)#no shutdownDLSwitch(if-config)#interface vlan 21DLSwitch(if-config)#ip address 172.16.132.1 255.255.255.0DLSwitch(if-config)#no shutdownDLSwitch(if-config)#exit

4) Configure inter-VLAN routing on the distribution layer switch

DLSwitch(config)#ip routingDLSwitch(config)#exitDLSwitch#copy running-config startup-config

2) Configure the VTP information with the access layer switch as a VTP client

ALSwitch#configure terminalALSwitch(config)#vtp mode client

Page 18: CCNP - Switch

ALSwitch(config)#vtp domain ciscoALSwitch(config)#exit

ALSwitch#copy running-config startup-config

(Notice: Many reports said the copy running-config startup-config didn’t work but they still got the full mark)

Other lab-sims in this site:

Page 19: CCNP - Switch

Spanning Tree Lab SimApril 14th, 2012 in LabSim Go to comments

Question:

The headquarter office for a cement manufacturer is installing a temporary Catalyst 3550 in an IDF to connect 24 additional users. To prevent network corruption, it is important to have the correct configuration prior to connecting to the production network. It will be necessary to ensure that the switch does not participate in VTP but forwards VTP advertisements that are received on trunk ports.Because of errors that have been experienced on office computers, all nontrunking interfaces should transition immediately to the forwarding state of Spanning tree. Also, configure the user ports (all FastEthernet ports) so that the ports are permanently nontrunking.

Requirements:You will configure FastEthernet ports 0/12 through 0/24 for users who belong to VLAN 20. Also, all VLAN and VTP configurations are to be completed in global configuration mode as VLAN database mode is being deprecated by Cisco. You are required to accomplish the following tasks:

1. Ensure the switch does not participate in VTP but forwards VTP advertisements received on trunk ports.2. Ensure all non-trunking interfaces (Fa0/1 to Fa0/24) transition immediately to the forwarding state of Spanning-Tree.3. Ensure all FastEthernet interfaces are in a permanent non-trunking mode.4. Place FastEthernet interfaces 0/12 through 0/24 in VLAN 20.

Answer and Explanation:

Switch>enableSwitch#configure terminal Switch(config)#interface range fa0/1 – 24 Switch(config-if-range)#switchport mode access (Make all FasEthernet interfaces into access mode) Switch(config-if-range)#spanning-tree portfast (Enables the PortFast on interface)

Next, we need to assign FastEthernet ports 0/12 through 0/24 to VLAN 20.

Page 20: CCNP - Switch

By default, all ports on the switch are in VLAN 1. To change the VLAN associated with a port, you need to go to each interface (or a range of interfaces) and tell it which VLAN to be a part of.

Switch(config-if-range)#interface range fa0/12 – 24 Switch(config-if-range)#switchport access vlan 20 (Make these ports members of vlan 20) Switch(config-if-range)#exit

Next we need to make this switch in transparent mode. In this mode, switch doesn’t participate in the VTP domain, but it still forwards VTP advertisements through any configured trunk links.

Switch(config)#vtp mode transparent Switch(config)#exit Switch#copy running-config startup-config

(Notice: Many reports said the copy running-config startup-config didn’t work but they still got the full mark)

Page 21: CCNP - Switch

AAAdot1x Lab SimApril 12th, 2012 in LabSim Go to comments

Question:

Acme is a small shipping company that has an existing enterprise network comprised of 2 switches;DSW1 and ASW1. The topology diagram indicates their layer 2 mapping. VLAN 40 is a new VLAN that will be used to provide the shipping personnel access to the server. For security reasons, it is necessary to restrict access to VLAN 20 in the following manner:– Users connecting to ASW1’s port must be authenticate before they are given access to the network. Authentication is to be done via a Radius server:– Radius server host: 172.120.39.46– Radius key: rad123– Authentication should be implemented as close to the host device possible.– Devices on VLAN 20 are restricted to in the address range of 172.120.40.0/24.– Packets from devices in the address range of 172.120.40.0/24 should be passed on VLAN 20.– Packets from devices in any other address range should be dropped on VLAN 20.– Filtering should be implemented as close to the server farm as possible.The Radius server and application servers will be installed at a future date. You have been tasked with implementing the above access control as a pre-condition to installing the servers. You must use the available IOS switch features.

 

Answer and Explanation:

1) Configure ASW1

Page 22: CCNP - Switch

Enable AAA on the switch:ASW1(config)#aaa new-model

The new-model keyword refers to the use of method lists, by which authentication methods and sources can be grouped or organized.

Define the server along with its secret shared password:ASW1(config)#radius-server host 172.120.39.46 key rad123

ASW1(config)#aaa authentication dot1x default group radiusThis command causes the RADIUS server defined on the switch to be used for 802.1x authentication.

Enable 802.1x on the switch:ASW1(config)#dot1x system-auth-control

Configure Fa0/1 to use 802.1x:

ASW1(config)#interface fastEthernet 0/1ASW1(config-if)#switchport mode accessASW1(config-if)#dot1x port-control autoNotice that the word “auto” will force connected PC to authenticate through the 802.1x exchange.

ASW1(config-if)#exitASW1#copy running-config startup-config

2) Configure DSW1:

Define an access-list:DSW1(config)#ip access-list standard 10 (syntax: ip access-list {standard | extended} acl-name)DSW1(config-ext-nacl)#permit 172.120.40.0 0.0.0.255DSW1(config-ext-nacl)#exit

Define an access-map which uses the access-list above:DSW1(config)#vlan access-map MYACCMAP 10 (syntax: vlan access-map map_name [0-65535] )DSW1(config-access-map)#match ip address 10 (syntax: match ip address {acl_number | acl_name})DSW1(config-access-map)#action forwardDSW1(config-access-map)#exit

DSW1(config)#vlan access-map MYACCMAP 20DSW1(config-access-map)#action drop (drop other networks)DSW1(config-access-map)#exit

Page 23: CCNP - Switch

Apply a vlan-map into a vlan:DSW1(config)#vlan filter MYACCMAP vlan-list 20 (syntax: vlan filter mapname vlan-list list)

DSW1#copy running-config startup-config

(Notice: Many reports said the copy running-config startup-config didn’t work but they still got the full mark)

Other lab-sims in this site: