Introduction
Este documento descreve o procedimento para configurar o failover de ISP duplo com o uso de DHCP no Integrated Service Router (ISR) da Cisco série 2900.
Prerequisites
Requirements
Não existem requisitos específicos para este documento.
Componentes Utilizados
Este documento não se restringe a versões de software e hardware específicas.
The information in this document was created from the devices in a specific lab environment. All of the devices used in this document started with a cleared (default) configuration. If your network is live, make sure that you understand the potential impact of any command.
Configurar
Diagrama de Rede
Configurações
Essa configuração é útil quando você tem dois ISPs terminados no roteador e ambos recebem endereços IP via DHCP do ISP.
CLIENT#sh ip int b
Interface IP-Address OK? Method Status Protocol
Embedded-Service-Engine0/0 unassigned YES NVRAM administratively down down
GigabitEthernet0/0 10.106.38.136 YES DHCP up up
GigabitEthernet0/1 unassigned YES NVRAM up up
GigabitEthernet0/1.100 1.1.1.4 YES DHCP up up
GigabitEthernet0/1.200 2.2.2.4 YES DHCP up up
GigabitEthernet0/2 unassigned YES NVRAM down down
Loopback0 11.11.11.11 YES NVRAM up up
interface gigabitethernet 0/1.100 e interface gigabitethernet 0/1.200 são duas interfaces que obtêm o endereço ip dhcp de dois ISPs, respectivamente.
a interface gigabitethernet 0/1.100 é primária e a interface gigabitethernet 0/1.200 é secundária.
Configurações de rota estática:
Uma rota secundária com um valor AD maior:
ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/1.200 dhcp 200
ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/1.100 dhcp
Configuração da interface:
CLIENT#sh run int GigabitEthernet0/1.100
Building configuration...
Current configuration : 112 bytes
!
interface GigabitEthernet0/1.100
encapsulation dot1Q 100
ip dhcp client route track 2
ip address dhcp
end
Note: Você deve configurar o comando ip dhcp client antes de executar o comando ip address dhcp em uma interface. O comando ip dhcp client é verificado somente quando um endereço IP é adquirido do DHCP. Se o comando ip dhcp client for emitido depois que um endereço IP tiver sido adquirido do DHCP, ele não terá efeito até a próxima vez que o roteador adquirir um endereço IP do DHCP.
CLIENT#sh run int GigabitEthernet0/1.200
Building configuration...
Current configuration : 82 bytes
!
interface GigabitEthernet0/1.200
encapsulation dot1Q 200
ip address dhcp
end
Contrato de nível de serviço (SLA) IP: Uma interface principal de origem de rota é rastreada:
CLIENT#sh run | sec ip sla
track 2 ip sla 2 reachability
ip sla 2
icmp-echo 11.11.11.11 source-interface GigabitEthernet0/1.100
ip sla schedule 2 life forever start-time now
ip sla auto discovery
CLIENT#sh ip route
C 1.1.1.0/24 is directly connected, GigabitEthernet0/1.100
L 1.1.1.4/32 is directly connected, GigabitEthernet0/1.100
2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 2.2.2.0/24 is directly connected, GigabitEthernet0/1.200
L 2.2.2.4/32 is directly connected, GigabitEthernet0/1.200
Verificar
Use esta seção para confirmar se a sua configuração funciona corretamente.
Quando a trilha está ativa, o gateway padrão aponta para o primário:
CLIENT#sh ip route track-table
ip route 0.0.0.0 0.0.0.0 1.1.1.1 254 track 2 state is [up]
ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/1.100 1.1.1.1 track 2 state is [up]
CLIENT#sh ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
+ - replicated route, % - next hop override
Gateway of last resort is 1.1.1.1 to network 0.0.0.0
S* 0.0.0.0/0 [1/0] via 1.1.1.1, GigabitEthernet0/1.100
1.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 1.1.1.0/24 is directly connected, GigabitEthernet0/1.100
L 1.1.1.5/32 is directly connected, GigabitEthernet0/1.100
2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 2.2.2.0/24 is directly connected, GigabitEthernet0/1.200
L 2.2.2.4/32 is directly connected, GigabitEthernet0/1.200
Quando a trilha fica inativa, o gateway padrão aponta para o secundário:
CLIENT#sh ip route track-table
ip route 0.0.0.0 0.0.0.0 1.1.1.1 254 track 2 state is [down]
ip route 0.0.0.0 0.0.0.0 GigabitEthernet0/1.100 1.1.1.1 track 2 state is [down]
CLIENT#sh ip route
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route, H - NHRP, l - LISP
+ - replicated route, % - next hop override
Gateway of last resort is 2.2.2.1 to network 0.0.0.0
S* 0.0.0.0/0 [200/0] via 2.2.2.1, GigabitEthernet0/1.200
1.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 1.1.1.0/24 is directly connected, GigabitEthernet0/1.100
L 1.1.1.5/32 is directly connected, GigabitEthernet0/1.100
2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 2.2.2.0/24 is directly connected, GigabitEthernet0/1.200
L 2.2.2.4/32 is directly connected, GigabitEthernet0/1.200
10.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
C 10.106.38.0/24 is directly connected, GigabitEthernet0/0
L 10.106.38.136/32 is directly connected, GigabitEthernet0/0
Troubleshoot
Atualmente, não existem informações disponíveis específicas sobre Troubleshooting para esta configuração.