ipv6 network- CIS202L

profilemirameahora
CIS202LUnit4LabIPv6Network.docx

Unit 4 Lab - IPv6 Network

In this VCASTLE Lab, you will configure a Cisco Router to route between two VLANs connected by a trunk connection using IPv6 only.

Fill in the ___ indicators with your class number

10.___.0.0/16 (For this lab you will be configuring IPv6 but will still be using your class number)

Task 1 – IPv6 networking using static routing and auto-config addressing

Host

Connect to

Interface

IPv6 address

R1

S1

G0/1.10

2001:DB8:___:1::1/64

 

S1

G0/1.20

2001:DB8:___:2::1/64

PCA

S1

F0/6

PCB

S2

F0/18

1. On Router R1, enable the global routing of IPv6 on by entering

R1(config)# IPv6 unicast-routing

2. Configure the Gigabit 0/1 interface to (a) enable IPv6, (b) assign the IPv6 address assigned in the addressing table above, and (c) activate the interface:

R1(config)# ipv6 unicast-routing

R1(config)# interface Gigabit 0/1

R1(config-if)# no shutdown

R1(config)# interface Gigabit 0/1.10

R1(config-subif)# encapsulation dot1q 10

R1(config-subif)# ipv6 address 2001:db8:___:1::1/64

R1(config-subif)# ipv6 enable

R1(config)# interface Gigabit 0/1.20

R1(config-subif)# encapsulation dot1q 20

R1(config-subif)# ipv6 address 2001:db8:___:2::1/64

R1(config-subif)# ipv6 enable

3. Now configure the S1 switch for the local VLANs and trunks

S1(config)# interface range f0/6 - 10

S1(config-if-range)# switchport mode access

S1(config-if-range)# switchport access vlan 10

S1(config)# interface range f0/11 - 20

S1(config-if-range)# switchport mode access

S1(config-if-range)# switchport access vlan 20

S1(config)# interface range f0/1-5

S1(config-if-range)# switchport mode trunk

4. PCA is connected to the interface F0/6 on the switch. This connection is programmed to VLAN 10 and will pull an IP address from the router for that VLAN.

5. Check the your IP settings to make sure your system has pulled an IPv6 address.

6. Now configure the S2 switch for the local VLANs and trunks

S2(config)# interface range f0/6 - 10

S2(config-if-range)# switchport mode access

S2(config-if-range)# switchport access vlan 10

S2(config)# interface range f0/11 - 20

S2(config-if-range)# switchport mode access

S2(config-if-range)# switchport access vlan 20

S2(config)# interface range f0/1-5

S2(config-if-range)# switchport mode trunk

7. PCB is connected to the interface F0/18 on the switch. This connection is programmed to VLAN 20 and will pull an IP address from the router for VLAN 20.

8. On both of your PCs you will need to open the local area connection properties and verify IPv6 networking is configured to obtain an IPv6 address automatically.

9. On both PCA and PCB, open the Command prompt. Determine the IPv6 address for the PC by using the ipconfig /all command.

PC>ipconfig /all

IPv6 Address....................: 2001:DB8:___:1:210:11FF:FE8C:2912/64

Default Gateway.................: FE80::230:F2FF:FEAD:BC01

PC>

10. Record the IPv6 address for both PCA and PCB below:

PCA IPv6 address:

PCB IPv6 address:

11. From PCA, attempt to ping the IPv6 address for PCB (do not include the /64 shown in the output of ipv6config)

12. Repeat the ping attempt from PCB to PCA using the IPv6 address for PCA as the destination.

Deliverables for task 1

IPv6 addresses for each PC (2 screenshots)

Screenshot of a ping from each PC to the other (2 screenshots)

Task 2 – Adding to EIGRPv6

Now we will add the network routing protocol EIGRPv6.

Now we’ll set up EIGRPv6 on the router and router interfaces

R1(config)# ipv6 router eigrp 100

R1(config-rtr)# eigrp router-id ___.___.___.___ Use your student #

R1(config-rtr)# no shutdown

Finally we need to add EIGRP to each sub interface

R1(config)# interface G0/1.10

R1(config-subif)# ipv6 eigrp 100

R1(config)# interface G0/1.20

R1(config-subif)# ipv6 eigrp 100

Check your routing status using the show ipv6 route command

Did you adding EIGRPv6 change anything on your router? Why or Why not? Why don’t we see EIGRP routes in our routing table like we usually would?

Deliverables for Task 2

Screenshot of show ipv6 route on R1

Screenshot of show run on R1

Answer the question about EIGRPv6