ゲートウェイを設定できないようですルーターの最後の手段です。次の手順を実行して、IPアドレスがルーティングテーブルにないものをインターフェイスs0 / 0/0経由でルーターHQに転送します。
Branch1#config t Branch1(config)#ip route 0.0.0.0 0.0.0.0 s0/0/0
ルーティングテーブルを確認すると、そこに表示されません…
Branch1#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, 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.7.0/24 is variably subnetted, 8 subnets, 4 masks C 192.168.7.64/27 is directly connected, GigabitEthernet0/0.107 L 192.168.7.94/32 is directly connected, GigabitEthernet0/0.107 C 192.168.7.144/28 is directly connected, GigabitEthernet0/0.37 L 192.168.7.158/32 is directly connected, GigabitEthernet0/0.37 C 192.168.7.160/28 is directly connected, GigabitEthernet0/0.157 L 192.168.7.174/32 is directly connected, GigabitEthernet0/0.157 C 192.168.7.244/30 is directly connected, Serial0/0/1 L 192.168.7.245/32 is directly connected, Serial0/0/1
実行中に表示されますが、 config as
ip classless ip route 0.0.0.0 0.0.0.0 Serial0/0/0
IPインターフェースの概要:
Branch1#sh ip interface br Interface IP-Address OK? Method Status Protocol GigabitEthernet0/0 unassigned YES unset up up GigabitEthernet0/0.37 192.168.7.158 YES manual up up GigabitEthernet0/0.107 192.168.7.94 YES manual up up GigabitEthernet0/0.157 192.168.7.174 YES manual up up GigabitEthernet0/1 unassigned YES unset administratively down down Serial0/0/0 unassigned YES unset up up Serial0/0/1 192.168.7.245 YES manual up up Serial0/1/0 unassigned YES unset administratively down down Serial0/1/1 unassigned YES unset administratively down down Vlan1 unassigned YES unset administratively down down
コメント
)。
回答
問題は、インターフェースがダウンしていることです。 。インターフェイスがダウンすると、インターフェイスを指すルートはルーティングテーブルから削除されますが、インターフェースが復旧すると再び表示されます。
コメント
- インターフェースはすでに稼働しています
-
。 S0/0/0
に接続されているルートがありません。つまり、ルートがダウンしているか、アドレス指定が割り当てられていません。
ip unnumbered <interface>
コマンドを使用して、インターフェイスでIPv4を有効にする必要があります。
{}
)を使用してください”>