CISCO Routers: Não é possível definir o Gateway of Last Resort

0

Estou tentando configurar um gateway do último recurso:

BRANCH1#config t
Enter configuration commands, one per line.  End with CNTL/Z.
BRANCH1(config)#ip route 0.0.0.0 0.0.0.0 192.168.9.129
BRANCH1(config)#exit

%SYS-5-CONFIG_I: Configured from console by console
BRANCH1#show ip route
Codes: C - connected, S - static, I - IGRP, 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, E - EGP
       i - IS-IS, 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

Gateway of last resort is not set

     192.168.9.0/27 is subnetted, 2 subnets
C       192.168.9.64 is directly connected, FastEthernet0/0
C       192.168.9.96 is directly connected, FastEthernet0/1

Na terceira linha eu emito:

BRANCH1(config)#ip route 0.0.0.0 0.0.0.0 192.168.9.129

Sei que o endereço IP está definido corretamente e não recebo um erro. Por que ainda mostraria o Gateway de último recurso como não sendo definido?

    
por user2018084 31.10.2013 / 01:01

1 resposta

3

Seu roteador não sabe como acessar 192.168.9.129. Se essa última sub-rede é 192.168.9.96/27 que fica aquém do .129. Você também pode ter certeza de que o roteamento está ativado ("ip routing" na configuração global)

    
por 31.10.2013 / 20:15