-
Notifications
You must be signed in to change notification settings - Fork 156
/
Etapa-056-RedistribuicaoDeRotasDinamicas-IPv6.txt
184 lines (160 loc) · 5.57 KB
/
Etapa-056-RedistribuicaoDeRotasDinamicas-IPv6.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
!Autor: Robson Vaamonde
!Procedimentos em TI: http://procedimentosemti.com.br
!Bora para Prática: http://boraparapratica.com.br
!Robson Vaamonde: http://vaamonde.com.br
!Facebook Procedimentos em TI: https://www.facebook.com/ProcedimentosEmTi
!Facebook Bora para Prática: https://www.facebook.com/BoraParaPratica
!Instagram Procedimentos em TI: https://www.instagram.com/procedimentoem
!YouTUBE Bora Para Prática: https://www.youtube.com/boraparapratica
!Data de criação: 31/05/2020
!Data de atualização: 17/07/2020
!Versão: 0.01
!Testado e homologado no Cisco Packet Tracer 7.3 e GNS3 2.2.7
!PRIMEIRA ETAPA: Configuração do Router 1941-2 com o Protocolo OSPFv3, RIPng e EIGRP
enable
configure terminal
!Configuração do Processo Local do OSPFv3 IPv6
!ADENDO IMPORTANTE: devido ao erro da Interface Roteada do Switch Layer 3, o Prefixo da Rede do
!Segundo Router 1941-2 2001:abcd:1234:2::/64 não será propagada para os Routers 1941-1 e 2911-1,
!devido ao fato da Tabela de Roteamento do OSPFv3 está vazia.
ipv6 router ospf 10
router-id 172.16.0.3
auto-cost reference-bandwidth 1000
passive-interface default
no passive-interface gigabitEthernet 0/0
log-adjacency-changes detail
default-information originate
!Configurando a Redistribuição de Rotas entre o Protocolo OSPFv3 e os protocolos RIPng e EIGRP
redistribute rip 10 metric 1000
redistribute eigrp 10 metric 1000
exit
!Configurando a Interface Local do Protocolo OSPFv3
interface gigabitEthernet 0/0
ipv6 ospf 10 area 0
ipv6 ospf cost 100
exit
interface loopback 0
ipv6 ospf 10 area 0
exit
!Configuração do Processo Local do RIPng IPv6
ipv6 router rip 10
!Configurando a Redistribuição de Rotas entre o Protocolo RIPng e os protocolos OSPFv3 e EIGRP
redistribute ospf 10 metric 1
redistribute eigrp 10 metric 2
exit
!Configurando as Interfaces Locais do Protocolo RIPng
interface gigabitEthernet 0/1
ipv6 rip 10 enable
exit
interface serial 0/0/0
ipv6 rip 10 enable
exit
!Configurando o Sistema Autônomo do Protocolo EIGRP IPv6
ipv6 router eigrp 10
eigrp router-id 172.16.0.3
passive-interface default
no passive-interface gigabitEthernet 0/1/0.999
!Configurando a Redistribuição de Rotas entre o Protocolo EIGRP e os protocolos OSPFv3 e RIPng
redistribute ospf 10 metric 1544 2000 255 1 1500
redistribute rip 10 metric 1544 2000 255 1 1500
no shutdown
exit
!Configurando a Interface Local do Protocolo EIGRP
interface gigabitEthernet 0/1/0.999
ipv6 eigrp 10
end
write
!SEGUNDA ETAPA: Configuração do Switch Layer 3 3560 com o Protocolo OSPFv3
!OBSERVAÇÃO IMPORTANTE: igual nas configurações dos Protocolos RIPng e EIGRP IPv6, o suporte ao Protocolo
!IPv6 do Switch Layer 3 3560 no Cisco Packet Tracer é limitado, a falha da Interface Roteada do Switch não
!permite fazer a comunicação com o Router 1941-2. Nesse cenário será feito a troca de LSA entre o Switch e
!Router, mais a troca da tabela de roteamento não será feita.
enable
configure terminal
!Configuração do Processo Local do OSPFv3 IPv6
ipv6 router ospf 10
router-id 172.16.0.2
auto-cost reference-bandwidth 1000
log-adjacency-changes detail
exit
!Configurando as Interfaces Locais do Protocolo OSPFv3 IPv6
interface fastEthernet 0/24
ipv6 ospf 10 area 0
exit
interface vlan 1
ipv6 ospf 10 area 0
end
write
!TERCEIRA ETAPA: Configuração do Router 1941-1 com o Protocolo RIPng IPv6
!ADENDO IMPORTANTE: aparentemente existe um Bug no Cisco Packet Tracer quando você tenta pingar o endereço
!IPv6 Global Unicast do Google quando está trabalhando com Redistribuição de Rotas, o ping não é executado
!com sucesso no Router, nos Desktops esse procedimento funciona corretamente.
enable
configure terminal
!Configurando o Processo Local do Protocolo RIPng IPv6
ipv6 router rip 10
exit
!Configurando as Interfaces Locais do Protocolo RIPng IPv6
interface gigabitEthernet 0/0
ipv6 rip 10 enable
exit
interface gigabitEthernet 0/1
ipv6 rip 10 enable
exit
interface serial 0/0/0
ipv6 rip 10 enable
end
write
!QUARTA ETAPA: Configuração do Router 2911-1 com o Protocolo EIGRP IPv6
enable
configure terminal
!Configurando o Processo Local do Protocolo EIGRP IPv6
ipv6 router eigrp 10
eigrp router-id 172.16.0.4
redistribute static
passive-interface default
no passive-interface gigabitEthernet 0/0/0.999
no shutdown
exit
!Configurando as Interfaces Locais do Protocolo EIGRP IPv6
interface gigabitEthernet 0/0/0.999
ipv6 eigrp 10
exit
interface gigabitEthernet 0/1
ipv6 eigrp 10
exit
interface gigabitEthernet 0/0.99
ipv6 eigrp 10
exit
interface gigabitEthernet 0/0.100
ipv6 eigrp 10
end
write
!Visualizando as configurações da memória RAM
show running-config | section ipv6 router
!Visualizando informações do Protocolo OSPFv3 IPv6
show ipv6 protocols
show ipv6 route
ping 2001:abcd:1234:8::8
traceroute 2001:abcd:1234:8::8
tracert 2001:abcd:1234:8::8
!DICA IMPORTANTE: utilizar todos os comandos de verificação dos Protocolos Dinâmicos:
!Protocolo RIPng
show ipv6 rip database
!Protocolo EIGRP
show ipv6 eigrp interfaces 10
show ipv6 eigrp topology 10
show ipv6 eigrp neighbors 10
show ipv6 eigrp traffic 10
!Protocolo OSPFv3
show ipv6 ospf
show ipv6 ospf border-routers
show ipv6 ospf interface
show ipv6 ospf neighbor
show ipv6 ospf neighbor detail
show ipv6 ospf database
show ipv6 ospf database external
show ipv6 ospf database router
show ipv6 ospf database link
show ipv6 ospf database network
show ipv6 ospf database prefix