gabakugik
@gabakugik (GABAKU GIK)

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

Cisco Packet Tracerでospfを行いたい

Q&A

Closed

解決したいこと

Cisco Packet Tracerでospfを行いたい

例)

PC2: 192.168.1.2/24
PC3: 192.168.2.2/24
Router6:
Interface to PC2: 192.168.1.1/24
Interface to Router7: 10.0.0.1/30
Router7:
Interface to Router6: 10.0.0.2/30
Interface to PC3: 192.168.2.1/24
この体制でPC2からPC3にpingしたい。

スクリーンショット 2024-09-14 214410.png
こんな感じです。

発生している問題・エラー

Router# show ip ospf neighbor
Router# show ip route ospf
で表示がなにもされない

### 該当するソースコード
```コマンド
Router6> enable
Router6# configure terminal
Router6(config)# interface GigabitEthernet0/0
Router6(config-if)# ip address 192.168.1.1 255.255.255.0
Router6(config-if)# no shutdown
Router6(config-if)# exit

Router6(config)# interface GigabitEthernet0/1
Router6(config-if)# ip address 10.0.0.1 255.255.255.252
Router6(config-if)# no shutdown
Router6(config-if)# exit
OSPF設定
OSPFを有効にして、ルータ間とPC1が接続されているネットワークをOSPFに参加させます。
Router6(config)# router ospf 1
Router6(config-router)# network 192.168.1.0 0.0.0.255 area 0
Router6(config-router)# network 10.0.0.0 0.0.0.3 area 0
Router6(config-router)# exit
Router2のインターフェース設定を行います。

Router7> enable
Router7# configure terminal
Router7(config)# interface GigabitEthernet0/0
Router7(config-if)# ip address 192.168.2.1 255.255.255.0
Router7(config-if)# no shutdown
Router7(config-if)# exit

Router7(config)# interface GigabitEthernet0/1
Router7(config-if)# ip address 10.0.0.2 255.255.255.252
Router7(config-if)# no shutdown
Router7(config-if)# exit
OSPF設定
OSPFを有効にして、ルータ間とPC2が接続されているネットワークをOSPFに参加させます。
Router7(config)# router ospf 1
Router7(config-router)# network 192.168.2.0 0.0.0.255 area 0
Router7(config-router)# network 10.0.0.0 0.0.0.3 area 0
Router7(config-router)# exit
PC2:

IPアドレス: 192.168.1.2
サブネットマスク: 255.255.255.0
デフォルトゲートウェイ: 192.168.1.1

PC3:

IPアドレス: 192.168.2.2
サブネットマスク: 255.255.255.0
デフォルトゲートウェイ: 192.168.2.1

PC2からPC3にpingが通るようにしたいです。
よろしくお願いします。

0

3Answer

10.0.0.1 から 10.0.0.2 へ ping は通りますか?
Router6, Router7 が GigabitEthernet0/1 どうしで接続されているかを確認してください。

1Like

https://note.com/twsnmp/n/n2648a35c78cc?magazine_key=mc040a708e2e3
で構築したEVE-NGの環境のラボに質問した方の環境を作ってみました。

image.png

この質問に書いてあるPCやルーターの設定と同じ設定にしてPC間でPINGは
通りました。

何も表示されないといわれるコマンドの実行結果は

Router6#show ip ospf neighbor

Neighbor ID     Pri   State           Dead Time   Address         Interface
192.168.2.1       1   FULL/BDR        00:00:34    10.0.0.2        GigabitEthernet0/1

Router6#show ip route ospf
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
       a - application route
       + - replicated route, % - next hop override, p - overrides from PfR

Gateway of last resort is not set

O     192.168.2.0/24 [110/2] via 10.0.0.2, 00:03:48, GigabitEthernet0/1

となりました。

私の前の回答者の方と同じですが、ルーター間などのPINGを確認することで
切り分けできると思います。

1.PC2から
(1)ping 192.168.1.1
(2)ping 10.0.0.1
(3)ping 10.0.0.2
(4)ping 192.168.2.1
(5)ping 192.168.2.2 (PC2 現状NG?)

2.Router6から
(1)ping 10.0.0.2
(2)ping 192.168.2.1
(3)ping 192.168.2.2

などで、どこまで通信できてきるかわかると思います。

PC2から

VPCS> trace 192.168.2.2
trace to 192.168.2.2, 8 hops max, press Ctrl+C to stop
 1   192.168.1.1   0.737 ms  0.695 ms  0.546 ms
 2   10.0.0.2   1.012 ms  0.790 ms  0.757 ms
 3   *192.168.2.2   1.791 ms (ICMP type:3, code:3, Destination port unreachable)

のようにtarce routeで確認する方法もあります。

1Like

Comments

  1. 両方のルーターでospfを有効にすると

    *Sep 15 23:58:43.299: %OSPF-5-ADJCHG: Process 1, Nbr 192.168.2.1 on GigabitEthernet0/1 from LOADING to FULL, Loading Done
    

    のようなログが記録されました。

できました。
ただなんでできたかわからないです。
LANケーブルの接続みたいですね。
教えていただきありがとうございます。

1Like

Your answer might help someone💌