0% found this document useful (0 votes)
36 views

Troubleshoot IPv4 and IPv6 Addressing Issues

This document contains configuration files for routers R1, R2, and switch D1 across three trouble tickets. The configurations set up IPv4 and IPv6 addressing, routing, DHCP, and basic device parameters. R1 and R2 are configured as neighbors on the 10.10.20.0/24 network with IPv6 addressing on their connected interfaces and a default route to each other. R2 is further configured as a DHCP server to issue IPv4 and IPv6 addresses to clients on the 10.10.10.0/24 network, to which D1 is connected and obtaining IP information.

Uploaded by

free dumps
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views

Troubleshoot IPv4 and IPv6 Addressing Issues

This document contains configuration files for routers R1, R2, and switch D1 across three trouble tickets. The configurations set up IPv4 and IPv6 addressing, routing, DHCP, and basic device parameters. R1 and R2 are configured as neighbors on the 10.10.20.0/24 network with IPv6 addressing on their connected interfaces and a default route to each other. R2 is further configured as a DHCP server to issue IPv4 and IPv6 addresses to clients on the 10.10.10.0/24 network, to which D1 is connected and obtaining IP information.

Uploaded by

free dumps
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 13

Troubleshoot IPv4 and IPv6 Addressing Issues

R1 Configuration File Scripts


R1 - Trouble Ticket # 1
hostname R1

banner motd # This is R1, Trouble Ticket 1.1.2.1 #

enable secret cisco12345

username admin privilege 15 algorithm-type scrypt secret


cisco12345

ipv6 unicast-routing

interface g0/0/0

ip address 10.10.20.1 255.255.255.0

ipv6 address fe80::1:1 link-local

ipv6 address 2001:db8:a:b::1/64

no shutdown

exit

interface g0/0/1

ip address 10.10.10.1 255.255.255.0

ipv6 address fe80::1:2 link-local

ipv6 address 2001:db8:a:a::1/64

ipv6 nd other-config-flag

ip helper-address 10.10.20.254

ipv6 dhcp relay destination 2001:db8:a:b::2

no shutdown

exit
interface loopback0

ip address 209.165.200.225 255.255.255.248

ipv6 address fe80::1:3 link-local

ipv6 address 2001:db8:a:c::1/64

no shutdown

exit

ip route 0.0.0.0 0.0.0.0 loopback0

ipv6 route ::/0 loopback0

line con 0

exec-timeout 0 0

logging synchronous

exit

line vty 0 4

login local

transport input telnet

exit

R1 - Trouble Ticket # 2
hostname R1

banner motd # This is R1, Trouble Ticket 1.1.2.2 #

enable secret cisco12345

username admin privilege 15 algorithm-type scrypt secret


cisco12345

ipv6 unicast-routing

interface g0/0/0

ip address 10.10.20.1 255.255.255.0

ipv6 address fe80::1:1 link-local


ipv6 address 2001:db8:a:b::1/64

ip helper-address 10.10.20.254

no shutdown

exit

interface g0/0/1

ip address 10.10.10.1 255.255.255.0

ipv6 address fe80::1:2 link-local

ipv6 address 2001:db8:a:a::1/64

ipv6 nd other-config-flag

ipv6 dhcp relay destination 2001:db8:a:b::2

no shutdown

exit

interface loopback0

ip address 209.165.200.225 255.255.255.248

ipv6 address fe80::1:3 link-local

ipv6 address 2001:db8:a:c::1/64

no shutdown

exit

ip route 0.0.0.0 0.0.0.0 loopback0

ipv6 route ::/0 loopback0

line con 0

exec-timeout 0 0

logging synchronous

exit

line vty 0 4
login local

transport input telnet

exit

R1 - Trouble Ticket # 3
hostname R1

banner motd # This is R1, Trouble Ticket 1.1.2.3 #

enable secret cisco12345

username admin privilege 15 algorithm-type scrypt secret


cisco12345

ipv6 unicast-routing

interface g0/0/0

ip address 10.10.20.1 255.255.255.0

ipv6 address fe80::1:1 link-local

ipv6 address 2001:db8:a:b::1/64

no shutdown

exit

interface g0/0/1

ip address 10.10.10.1 255.255.255.0

ip helper-address 10.10.20.254

ipv6 address fe80::1:2 link-local

ipv6 address 2001:db8:a:a::1/64

ipv6 dhcp relay destination 2001:db8:a:b::2

no shutdown

exit

interface loopback0

ip address 209.165.200.225 255.255.255.248


ipv6 address fe80::1:3 link-local

ipv6 address 2001:db8:a:c::1/64

no shutdown

exit

ip route 0.0.0.0 0.0.0.0 loopback0

ipv6 route ::/0 loopback0

line con 0

exec-timeout 0 0

logging synchronous

exit

line vty 0 4

login local

transport input telnet

exit

R2 Configuration File Scripts


R2 - Trouble Ticket # 1
hostname R2

banner motd # This is R2, Trouble Ticket 1.1.2.1 #

enable secret cisco12345

username admin privilege 15 algorithm-type scrypt secret


cisco12345

ipv6 unicast-routing

ip dhcp excluded-address 10.10.10.1 10.10.10.100

ip dhcp pool LAN4_10

network 10.10.10.0 255.255.255.0


default-router 10.10.10.254

domain-name ccnp4lab.com

dns-server 10.10.20.254

exit

ipv6 dhcp pool LAN6_A

dns-server 2001:db8:a:b::1

domain-name ccnp6lab.om

exit

interface g0/0/0

ip address 10.10.20.254 255.255.255.0

ipv6 address fe80::2:1 link-local

ipv6 address 2001:db8:a:b::2/64

ipv6 dhcp server LAN6_A

no shutdown

exit

ip route 0.0.0.0 0.0.0.0 10.10.20.1

ipv6 route ::/0 2001:db8:a:b::1

line con 0

exec-timeout 0 0

logging synchronous

exit

line vty 0 4

login local

transport input telnet

exit
R2 - Trouble Ticket # 2
hostname R2

banner motd # This is R2, Trouble Ticket 1.1.2.2 #

enable secret cisco12345

username admin privilege 15 algorithm-type scrypt secret


cisco12345

ipv6 unicast-routing

ip dhcp excluded-address 10.10.10.1 10.10.10.100

ip dhcp pool LAN4_10

network 10.10.10.0 255.255.255.0

default-router 10.10.10.1

domain-name ccnp4lab.com

dns-server 10.10.20.1

exit

ipv6 dhcp pool LAN6_A

dns-server 2001:db8:a:b::1

domain-name ccnp6lab.om

exit

interface g0/0/0

ip address 10.10.20.254 255.255.255.0

ipv6 address fe80::2:1 link-local

ipv6 address 2001:db8:a:b::2/64

ipv6 dhcp server LAN6_A

no shutdown

exit

ip route 0.0.0.0 0.0.0.0 10.10.20.1


ipv6 route ::/0 2001:db8:a:b::1

line con 0

exec-timeout 0 0

logging synchronous

exit

line vty 0 4

login local

transport input telnet

exit

R2 - Trouble Ticket # 3
hostname R2

banner motd # This is R2, Trouble Ticket 1.1.2.3 #

enable secret cisco12345

username admin privilege 15 algorithm-type scrypt secret


cisco12345

ipv6 unicast-routing

ip dhcp excluded-address 10.10.10.1 10.10.10.100

ip dhcp pool LAN4_10

network 10.10.10.0 255.255.255.0

default-router 10.10.10.1

domain-name ccnp4lab.com

dns-server 10.10.20.1

exit

ipv6 dhcp pool LAN6_A

dns-server 2001:db8:a:b::1

domain-name ccnp6lab.om
exit

interface g0/0/0

ip address 10.10.20.254 255.255.255.0

ipv6 address fe80::2:1 link-local

ipv6 address 2001:db8:a:b::2/64

ipv6 dhcp server LAN6_A

no shutdown

exit

ip route 0.0.0.0 0.0.0.0 10.10.20.1

ipv6 route ::/0 2001:db8:a:b::1

line con 0

exec-timeout 0 0

logging synchronous

exit

line vty 0 4

login local

transport input telnet

exit

R3 Configuration File Scripts - Not Used in This Lab

D1 Configuration File Scripts


D1 - Trouble Ticket # 1
hostname D1

banner motd # This is D1, Trouble Ticket 1.1.2.1 #

enable secret cisco12345


username admin privilege 15 algorithm-type scrypt secret
cisco12345

interface range g1/0/1 - 24

switchport mode access

shutdown

exit

interface g1/0/11

switchport mode access

switchport access vlan 10

no shutdown

exit

interface range g1/0/23-24

switchport mode access

switchport access vlan 10

no shutdown

exit

interface vlan 10

ip address 10.10.10.2 255.255.255.0

no shutdown

exit

ip default-gateway 10.10.10.1

line con 0

exec-timeout 0 0

logging synchronous

exit

D1 - Trouble Ticket # 2
hostname D1

banner motd # This is D1, Trouble Ticket 1.1.2.2 #

enable secret cisco12345

username admin privilege 15 algorithm-type scrypt secret


cisco12345

interface range g1/0/1 - 24

switchport mode access

shutdown

exit

interface g1/0/11

switchport mode access

switchport access vlan 10

no shutdown

exit

interface range g1/0/23-24

switchport mode access

switchport access vlan 10

no shutdown

exit

interface vlan 10

ip address 10.10.10.2 255.255.255.0

no shutdown

exit

ip default-gateway 10.10.10.1

line con 0

exec-timeout 0 0
logging synchronous

exit

D1 - Trouble Ticket # 3
hostname D1

banner motd # This is D1, Trouble Ticket 1.1.2.3 #

enable secret cisco12345

username admin privilege 15 algorithm-type scrypt secret


cisco12345

interface range g1/0/1 - 24

switchport mode access

shutdown

exit

interface g1/0/11

switchport mode access

switchport access vlan 10

no shutdown

exit

interface range g1/0/23-24

switchport mode access

switchport access vlan 10

no shutdown

exit

interface vlan 10

ip address 10.10.10.2 255.255.255.0

no shutdown

exit
ip default-gateway 10.10.10.1

line con 0

exec-timeout 0 0

logging synchronous

exit

You might also like