Frame Relay Huawei

Frame Relay, birden fazla bilgisayarda iletişim kurabilir, aynı anda ağ üzerinde paylaşım yapabilir ve bağlanabilir. Bu bant şimdi, sürekli bant genişliği iki uç arasında değiştiği için kısa zaman aralıklarında kullanılan daha yüksek bant genişliklerine sahiptir. Merkez-port bağlantılarında, ondan fazla noktayla bir fiziksel hat bağlanır, çerçeve rölesi kiralanan devreler için uygun bir alternatiftir, alternatif olarak gerekli devrede arzu edilen bir azalma ile

  1. Genel cihaz yapılandırma ayarları
    system-view
    Enter system view, return user view with Ctrl+Z.
    [Huawei]sysname Router1
    system-view
    Enter system view, return user view with Ctrl+Z.
    [Huawei]sysname Router2
    system-view
    Enter system view, return user view with Ctrl+Z.
    [Huawei]sysname Router3
  2. Frame-Relay Map’in oluşturulması
    Cihazlara ip addressleri verelim.IP adresi yapılandırmasının, yanı sıra tüm IP DLCI eşlemeleri için fiziksel bir seri interface altında yapılmalıdır. Çok noktaya yayın veya yayın paketlerini bu interfacelerde istiyorsak, DLCI broadcast yayın seçeneği eklenmelidir.
    [Router1]interface Serial 0/0/2
    [Router1-Serial0/0/2]link-protocol fr
    Warning: The encapsulation protocol of the link will be changed.
    Continue? [Y/N]:y
    [Router1-Serial0/0/2]ip address 10.0.123.1 24
    [Router1-Serial0/0/2]undo fr inarp
    [Router1-Serial0/0/2]fr map ip 10.0.123.2 102 broadcast
    [Router1-Serial0/0/2]fr map ip 10.0.123.3 103 broadcast
    [Router1-Serial0/0/2]interface loopback 0
    [Router1-LoopBack0]ip address 10.0.1.1 24
    [Router2]interface Serial 0/0/2
    [Router2-Serial0/0/2]link-protocol fr
    Warning: The encapsulation protocol of the link will be changed.
    Continue? [Y/N]:y
    [Router2-Serial0/0/2]ip address 10.0.123.2 24
    [Router2-Serial0/0/2]undo fr inarp
    [Router2-Serial0/0/2]fr map ip 10.0.123.1 201 broadcast
    [Router2-Serial0/0/2]interface loopback 0
    [Router2-LoopBack0]ip address 10.0.2.2 24
    [Router3]interface Serial 0/0/1
    [Router3-Serial0/0/1]link-protocol fr
    Warning: The encapsulation protocol of the link will be changed.
    Continue? [Y/N]:y
    [Router3-Serial0/0/1]ip address 10.0.123.3 24
    [Router3-Serial0/0/1]undo fr inarp
    [Router3-Serial0/0/1]fr map ip 10.0.123.1 301 broadcast
    [Router3-Serial0/0/1]interface loopback 0
    [Router3-LoopBack0]ip address 10.0.3.3 24
    Konfigürasyonumuzun doğru şekilde çalıştıgını kontrol edelim.
    ping 10.0.123.2
    PING 10.0.123.2: 56 data bytes, press CTRL_C to break
    Reply from 10.0.123.2: bytes=56 Sequence=1 ttl=255 time=180 ms
    Reply from 10.0.123.2: bytes=56 Sequence=2 ttl=255 time=10 ms
    Reply from 10.0.123.2: bytes=56 Sequence=3 ttl=255 time=30 ms
    Reply from 10.0.123.2: bytes=56 Sequence=4 ttl=255 time=20 ms
    Reply from 10.0.123.2: bytes=56 Sequence=5 ttl=255 time=30 ms
    — 10.0.123.2 ping statistics —
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 10/54/180 ms
    ping 10.0.123.3
    PING 10.0.123.3: 56 data bytes, press CTRL_C to break
    Reply from 10.0.123.3: bytes=56 Sequence=1 ttl=255 time=50 ms
    Reply from 10.0.123.3: bytes=56 Sequence=2 ttl=255 time=100 ms
    Reply from 10.0.123.3: bytes=56 Sequence=3 ttl=255 time=10 ms
    Reply from 10.0.123.3: bytes=56 Sequence=4 ttl=255 time=30 ms
    Reply from 10.0.123.3: bytes=56 Sequence=5 ttl=255 time=40 ms
    — 10.0.123.3 ping statistics —
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 10/46/100 ms
    Interface Router1 cihazı ile ilgili bilgileri görüntüleyebilmek için aşagıdaki komutları kullanabiliriz.
    display fr interface Serial 0/0/2
    Serial0/0/2, DTE, physical up, protocol up
    display fr lmi-info interface Serial 0/0/2
    Frame relay LMI statistics for interface Serial0/0/2 (DTE, ANSI)
    T391DTE = 10 (hold timer 10)
    N391DTE = 6, N392DTE = 3, N393DTE = 4
    out status enquiry = 1668, in status = 928
    status timeout = 243, discarded messages = 324
    display fr map-info interface Serial 0/0/2
    Map Statistics for interface Serial0/0/2 (DTE)
    DLCI = 102, IP 10.0.123.2, Serial0/0/2
    create time = 2015/01/03 11:51:05, status = ACTIVE
    encapsulation = ietf, vlink = 1, broadcast
    DLCI = 103, IP 10.0.123.3, Serial0/0/2
    create time = 2015/01/03 11:51:17, status = ACTIVE
    encapsulation = ietf, vlink = 2, broadcast
  3. Router1 ,Router2 ve Router3 komşulukları kurulabilmesi için RIPv2 konfigürasyonu oluşturalım
    Router1 ,Router2 ve Router3 için RIPv2’yi yapılandıralım.10.0.0.0 networkunu anons edelim tamamını dahil etmiş olalım.
    [Router1]rip 1
    [Router1-rip-1]version 2
    [Router1-rip-1]network 10.0.0.0
    [Router1-rip-1]undo summary
    [Router2]rip 1
    [Router2-rip-1]version 2
    [Router2-rip-1]network 10.0.0.0
    [Router2-rip-1]undo summary
    [Router3]rip 1
    [Router3-rip-1]version 2
    [Router3-rip-1]network 10.0.0.0
    [Router3-rip-1]undo summary
    Router1 ,Router2 ve Router3’ün routing tablosuna bakalım .
    display ip routing-table protocol rip
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Public routing table : RIP
    Destinations : 2 Routes : 2
    RIP routing table status :
    Destinations : 2 Routes : 2
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.2.0/24 RIP 100 1 D 10.0.123.2 Serial0/0/2
    10.0.3.0/24 RIP 100 1 D 10.0.123.3 Serial0/0/2
    RIP routing table status :
    Destinations : 0 Routes : 0
    display ip routing-table protocol rip
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Public routing table : RIP
    Destinations : 2 Routes : 2
    RIP routing table status :
    Destinations : 2 Routes : 2
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.0/24 RIP 100 1 D 10.0.123.1 Serial0/0/3
    10.0.3.0/24 RIP 100 2 D 10.0.123.1 Serial0/0/3
    RIP routing table status :
    Destinations : 0 Routes : 0
    display ip routing-table protocol rip
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Public routing table : RIP
    Destinations : 2 Routes : 2
    RIP routing table status :
    Destinations : 2 Routes : 2
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.0/24 RIP 100 1 D 10.0.123.1 Serial0/0/1
    10.0.2.0/24 RIP 100 2 D 10.0.123.1 Serial0/0/1
    RIP routing table status :
    Destinations : 0 Routes : 0
    10.0.3.0 networkünde olan Router3 cihazının ,10.0.1.0 networkünde olan Router1 cihazı ile bağlantıda olduğunu kontrol edelim.
    ping -a 10.0.3.3 10.0.1.1
    PING 10.0.1.1: 56 data bytes, press CTRL_C to break
    Reply from 10.0.1.1: bytes=56 Sequence=1 ttl=255 time=20 ms
    Reply from 10.0.1.1: bytes=56 Sequence=2 ttl=255 time=10 ms
    Reply from 10.0.1.1: bytes=56 Sequence=3 ttl=255 time=110 ms
    Reply from 10.0.1.1: bytes=56 Sequence=4 ttl=255 time=50 ms
    Reply from 10.0.1.1: bytes=56 Sequence=5 ttl=255 time=50 ms
    — 10.0.1.1 ping statistics —
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 10/48/110 ms
    10.0.3.3 ağı Router3 cihazından , 10.0.2.2 ağındaki Router2 cihazı ile bağlantısını kontrol edelim.
    ping -a 10.0.3.3 10.0.2.2
    PING 10.0.2.2: 56 data bytes, press CTRL_C to break
    Reply from 10.0.2.2: bytes=56 Sequence=1 ttl=254 time=40 ms
    Reply from 10.0.2.2: bytes=56 Sequence=2 ttl=254 time=50 ms
    Reply from 10.0.2.2: bytes=56 Sequence=3 ttl=254 time=40 ms
    Reply from 10.0.2.2: bytes=56 Sequence=4 ttl=254 time=50 ms
    Reply from 10.0.2.2: bytes=56 Sequence=5 ttl=254 time=100 ms
    — 10.0.2.2 ping statistics —
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 40/56/100 ms
    RIP, Router1 ile kurulacak Router2 ve Router3’ün loopback interface arasında bir yol sağlamıştır.
    Router2 cihazınında Router3 ile bağlantısını kontrol edelim.
    ping 10.0.2.2
    PING 10.0.2.2: 56 data bytes, press CTRL_C to break
    Request time out
    Request time out
    Request time out
    Request time out
    Request time out
    — 10.0.2.2 ping statistics —
    5 packet(s) transmitted
    0 packet(s) received
    100.00% packet loss
    ?
    display ip routing-table
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Routing Tables: Public
    Destinations : 9 Routes : 9
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.0/24 RIP 100 1 D 10.0.123.1 Serial0/0/1
    10.0.2.0/24 RIP 100 2 D 10.0.123.1 Serial0/0/1
    10.0.3.0/24 Direct 0 0 D 10.0.3.3 LoopBack0
    10.0.3.3/32 Direct 0 0 D 127.0.0.1 LoopBack0
    10.0.123.0/24 Direct 0 0 D 10.0.123.3 Serial0/0/1
    10.0.123.1/32 Direct 0 0 D 10.0.123.1 Serial0/0/1
    10.0.123.3/32 Direct 0 0 D 127.0.0.1 Serial0/0/1
    127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0
    127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0
    display fr map-info interface Serial 0/0/1
    Map Statistics for interface Serial0/0/1 (DTE)
    DLCI = 301, IP 10.0.123.1, Serial0/0/1
    create time = 2015/01/03 12:07:18, status = ACTIVE
    encapsulation = ietf, vlink = 3, broadcast
    display ip routing-table
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Routing Tables: Public
    Destinations : 10 Routes : 10
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.0/24 Direct 0 0 D 10.0.1.1 LoopBack0
    10.0.1.1/32 Direct 0 0 D 127.0.0.1 LoopBack0
    10.0.2.0/24 RIP 100 1 D 10.0.123.2 Serial0/0/2
    10.0.3.0/24 RIP 100 1 D 10.0.123.3 Serial0/0/2
    10.0.123.0/24 Direct 0 0 D 10.0.123.1 Serial0/0/2
    10.0.123.1/32 Direct 0 0 D 127.0.0.1 Serial0/0/2
    10.0.123.2/32 Direct 0 0 D 10.0.123.2 Serial0/0/2
    10.0.123.3/32 Direct 0 0 D 10.0.123.3 Serial0/0/2
    127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0
    127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0
    display fr map-info interface Serial 0/0/2
    Map Statistics for interface Serial0/0/2 (DTE)
    DLCI = 102, IP 10.0.123.2, Serial0/0/2
    create time = 2015/01/03 11:51:05, status = ACTIVE
    encapsulation = ietf, vlink = 1, broadcast
    DLCI = 103, IP 10.0.123.3, Serial0/0/2
    create time = 2015/01/03 11:51:17, status = ACTIVE
    encapsulation = ietf, vlink = 2, broadcast
    display ip routing-table
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Routing Tables: Public
    Destinations : 9 Routes : 9
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.0/24 RIP 100 1 D 10.0.123.1 Serial0/0/3
    10.0.2.0/24 Direct 0 0 D 10.0.2.2 LoopBack0
    10.0.2.2/32 Direct 0 0 D 127.0.0.1 LoopBack0
    10.0.3.0/24 RIP 100 2 D 10.0.123.1 Serial0/0/3
    10.0.123.0/24 Direct 0 0 D 10.0.123.2 Serial0/0/3
    10.0.123.1/32 Direct 0 0 D 10.0.123.1 Serial0/0/3
    10.0.123.2/32 Direct 0 0 D 127.0.0.1 Serial0/0/3
    127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0
    127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0
    display fr map-info interface Serial 0/0/3
    Map Statistics for interface Serial0/0/3 (DTE)
    DLCI = 201, IP 10.0.123.1, Serial0/0/3
    create time = 2015/01/03 12:50:05, status = ACTIVE
    encapsulation = ietf, vlink = 7, broadcast
    Router1 ve Router2 arasında OSPF konfigürasyonu.
    RIP konfigürasyonunu ve Router2 ve Router3 için oluşturduğumuz , Frame Relay komutlarını kaldıralım .
    [Router1]undo rip 1
    Warning: The RIP process will be deleted. Continue?[Y/N]y
    [Router2]interface Serial 0/0/3
    [Router2-Serial0/0/3]undo fr map ip 10.0.123.3 201
    [Router2-Serial0/0/3]quit
    [Router2]undo rip 1
    Warning: The RIP process will be deleted. Continue?[Y/N]y
    [Router3]interface Serial 0/0/1
    [Router3-Serial0/0/1]undo fr map ip 10.0.123.2 301
    [Router3-Serial0/0/1]quit
    [Router3]undo rip 1
    Warning: The RIP process will be deleted. Continue?[Y/N]y
    Router1 ,Router2 ve Router3 için single-area OSPF’i konfigürasyonunu yapılandıralım.
    [Router1]ospf 1 router-id 10.0.1.1
    [Router1-ospf-1]area 0
    [Router1-ospf-1-area-0.0.0.0]network 10.0.0.0 0.255.255.255
    [Router2]ospf 1 router-id 10.0.2.2
    [Router2-ospf-1]area 0
    [Router2-ospf-1-area-0.0.0.0]network 10.0.0.0 0.255.255.255
    [Router3]ospf 1 router-id 10.0.3.3
    [Router3-ospf-1]area 0
    [Router3-ospf-1-area-0.0.0.0]network 10.0.0.0 0.255.255.255
    display ospf interface Serial 0/0/1 verbose
    OSPF Process 1 with Router ID 10.0.3.3
    Interfaces
    Interface: 10.0.123.3 (Serial0/0/1)
    Cost: 1562 State: Waiting Type: NBMA MTU: 1500
    Priority: 1
    Designated Router: 0.0.0.0
    Backup Designated Router: 0.0.0.0
    Timers: Hello 30 , Dead 120 , Poll 120 , Retransmit 5 , Transmit Delay 1
    IO Statistics
    Type Input Output
    Hello 0 0
    DB Description 0 0
    Link-State Req 0 0
    Link-State Update 0 0
    Link-State Ack 0 0
    OpaqueId: 0 PrevState: Down
    [Router1]ospf
    [Router1-ospf-1]peer 10.0.123.2
    [Router1-ospf-1]peer 10.0.123.3
    [Router1-ospf-1]interface serial 0/0/2
    [Router1-Serial0/0/2]ospf dr-priority 255
    [Router2]ospf
    [Router2-ospf-1]peer 10.0.123.1
    [Router3]ospf
    [Router3-ospf-1]peer 10.0.123.1
    Router2 ve Router3 DR önceliği herhangi DR seçimde kendi 0 olarak ayarlar isteğe bağlı olarak DR seçimini kendimiz ayarlayabiliriz. display ospf interface Serial 0/0/2 verbose
    OSPF Process 1 with Router ID 10.0.1.1
    Interfaces
    Interface: 10.0.123.1 (Serial0/0/2)
    Cost: 1562 State: DR Type: NBMA MTU: 1500
    Priority: 255
    Designated Router: 10.0.123.1
    Backup Designated Router: 10.0.123.3
    Timers: Hello 30 , Dead 120 , Poll 120 , Retransmit 5 , Transmit Delay 1
    IO Statistics
    Type Input Output
    Hello 10 18
    DB Description 4 6
    Link-State Req 2 2
    Link-State Update 6 13
    Link-State Ack 8 2
    OpaqueId: 0 PrevState: Waiting
    reset ospf process
    Warning: The OSPF process will be reset. Continue? [Y/N]:y
    [Router1]display ip routing-table
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Routing Tables: Public
    Destinations : 10 Routes : 10
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.0/24 Direct 0 0 D 10.0.1.1 LoopBack0
    10.0.1.1/32 Direct 0 0 D 127.0.0.1 LoopBack0
    10.0.2.2/32 OSPF 10 1562 D 10.0.123.2 Serial0/0/2
    10.0.3.3/32 OSPF 10 1562 D 10.0.123.3 Serial0/0/2
    10.0.123.0/24 Direct 0 0 D 10.0.123.1 Serial0/0/2
    10.0.123.1/32 Direct 0 0 D 127.0.0.1 Serial0/0/2
    10.0.123.2/32 Direct 0 0 D 10.0.123.2 Serial0/0/2
    10.0.123.3/32 Direct 0 0 D 10.0.123.3 Serial0/0/2
    127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0
    127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0
    [Router1]ping -a 10.0.1.1 10.0.2.2
    PING 10.0.2.2: 56 data bytes, press CTRL_C to break
    Reply from 10.0.2.2: bytes=56 Sequence=1 ttl=255 time=50 ms
    Reply from 10.0.2.2: bytes=56 Sequence=2 ttl=255 time=50 ms
    Reply from 10.0.2.2: bytes=56 Sequence=3 ttl=255 time=50 ms
    Reply from 10.0.2.2: bytes=56 Sequence=4 ttl=255 time=50 ms
    Reply from 10.0.2.2: bytes=56 Sequence=5 ttl=255 time=50 ms
    — 10.0.2.2 ping statistics —
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 50/50/50 ms
    [Router1]ospf
    [Router1-ospf-1]undo peer 10.0.123.2
    [Router1-ospf-1]undo peer 10.0.123.3
    [Router2]ospf
    [Router2-ospf-1]undo peer 10.0.123.1
    [Router3]ospf
    [Router3-ospf-1]undo peer 10.0.123.1
    [Router1]interface Serial 0/0/2
    [Router1-Serial0/0/2]ospf network-type p2mp
    [Router2]interface Serial 0/0/3
    [Router2-Serial0/0/3]ospf network-type p2mp
    [Router3]interface Serial 0/0/1
    [Router3-Serial0/0/1]ospf network-type p2mp
    display ospf peer brief
    OSPF Process 1 with Router ID 10.0.1.1
    Peer Statistic Information
    —————————————————————————-
    Area Id Interface Neighbor id State
    0.0.0.0 Serial0/0/2 10.0.2.2 Full
    0.0.0.0 Serial0/0/2 10.0.3.3 Full
    —————————————————————————-
    display ip routing-table
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Routing Tables: Public
    Destinations : 10 Routes : 10
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.0/24 Direct 0 0 D 10.0.1.1 LoopBack0
    10.0.1.1/32 Direct 0 0 D 127.0.0.1 LoopBack0
    10.0.2.2/32 OSPF 10 1562 D 10.0.123.2 Serial0/0/2
    10.0.3.3/32 OSPF 10 1562 D 10.0.123.3 Serial0/0/2
    10.0.123.0/24 Direct 0 0 D 10.0.123.1 Serial0/0/2
    10.0.123.1/32 Direct 0 0 D 127.0.0.1 Serial0/0/2
    10.0.123.2/32 Direct 0 0 D 10.0.123.2 Serial0/0/2
    10.0.123.3/32 Direct 0 0 D 10.0.123.3 Serial0/0/2
    127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0
    127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0
    [Router2]display ospf peer brief
    OSPF Process 1 with Router ID 10.0.2.2
    Peer Statistic Information
    —————————————————————————-
    Area Id Interface Neighbor id State
    0.0.0.0 Serial0/0/3 10.0.1.1 Full
    —————————————————————————-
    [Router2]display ip routing-table
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Routing Tables: Public
    Destinations : 10 Routes : 10
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.1/32 OSPF 10 1562 D 10.0.123.1 Serial0/0/3
    10.0.2.0/24 Direct 0 0 D 10.0.2.2 LoopBack0
    10.0.2.2/32 Direct 0 0 D 127.0.0.1 LoopBack0
    10.0.3.3/32 OSPF 10 3124 D 10.0.123.1 Serial0/0/3
    10.0.123.0/24 Direct 0 0 D 10.0.123.2 Serial0/0/3
    10.0.123.1/32 Direct 0 0 D 10.0.123.1 Serial0/0/3
    10.0.123.2/32 Direct 0 0 D 127.0.0.1 Serial0/0/3
    10.0.123.3/32 OSPF 10 3124 D 10.0.123.1 Serial0/0/3
    127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0
    127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0
    [Router3]display ospf peer brief
    OSPF Process 1 with Router ID 10.0.3.3
    Peer Statistic Information
    —————————————————————————-
    Area Id Interface Neighbor id State
    0.0.0.0 Serial0/0/1 10.0.1.1 Full
    —————————————————————————-
    [Router3]display ip routing-table
    Route Flags: R – relay, D – download to fib
    ——————————————————————————
    Routing Tables: Public
    Destinations : 10 Routes : 10
    Destination/Mask Proto Pre Cost Flags NextHop Interface
    10.0.1.1/32 OSPF 10 1562 D 10.0.123.1 Serial0/0/1
    10.0.2.2/32 OSPF 10 3124 D 10.0.123.1 Serial0/0/1
    10.0.3.0/24 Direct 0 0 D 10.0.3.3 LoopBack0
    10.0.3.3/32 Direct 0 0 D 127.0.0.1 LoopBack0
    10.0.123.0/24 Direct 0 0 D 10.0.123.3 Serial0/0/1
    10.0.123.1/32 Direct 0 0 D 10.0.123.1 Serial0/0/1
    10.0.123.2/32 OSPF 10 3124 D 10.0.123.1 Serial0/0/1
    10.0.123.3/32 Direct 0 0 D 127.0.0.1 Serial0/0/1
    127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0
    127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0
    [Router3]ping -a 10.0.3.3 10.0.1.1
    PING 10.0.1.1: 56 data bytes, press CTRL_C to break
    Reply from 10.0.1.1: bytes=56 Sequence=1 ttl=255 time=60 ms
    Reply from 10.0.1.1: bytes=56 Sequence=2 ttl=255 time=50 ms
    Reply from 10.0.1.1: bytes=56 Sequence=3 ttl=255 time=50 ms
    Reply from 10.0.1.1: bytes=56 Sequence=4 ttl=255 time=50 ms
    Reply from 10.0.1.1: bytes=56 Sequence=5 ttl=255 time=30 ms
    — 10.0.1.1 ping statistics —
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 30/48/60 ms
    [Router3]ping -a 10.0.3.3 10.0.123.2
    PING 10.0.123.2: 56 data bytes, press CTRL_C to break
    Reply from 10.0.123.2: bytes=56 Sequence=1 ttl=254 time=40 ms
    Reply from 10.0.123.2: bytes=56 Sequence=2 ttl=254 time=30 ms
    Reply from 10.0.123.2: bytes=56 Sequence=3 ttl=254 time=30 ms
    Reply from 10.0.123.2: bytes=56 Sequence=4 ttl=254 time=70 ms
    Reply from 10.0.123.2: bytes=56 Sequence=5 ttl=254 time=70 ms
    — 10.0.123.2 ping statistics —
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 30/48/70 ms
    [Router3]ping -a 10.0.3.3 10.0.2.2
    PING 10.0.2.2: 56 data bytes, press CTRL_C to break
    Reply from 10.0.2.2: bytes=56 Sequence=1 ttl=254 time=70 ms
    Reply from 10.0.2.2: bytes=56 Sequence=2 ttl=254 time=60 ms
    Reply from 10.0.2.2: bytes=56 Sequence=3 ttl=254 time=50 ms
    Reply from 10.0.2.2: bytes=56 Sequence=4 ttl=254 time=50 ms
    Reply from 10.0.2.2: bytes=56 Sequence=5 ttl=254 time=70 ms
    — 10.0.2.2 ping statistics —
    5 packet(s) transmitted
    5 packet(s) received
    0.00% packet loss
    round-trip min/avg/max = 50/60/70 ms
    display current-configuration
    #
    sysname Router1
    #
    interface Serial0/0/2
    link-protocol fr
    undo fr inarp
    fr map ip 10.0.123.2 102 broadcast
    fr map ip 10.0.123.3 103 broadcast
    ip address 10.0.123.1 255.255.255.0
    ospf network-type p2mp
    ospf dr-priority 255
    #
    interface LoopBack0
    ip address 10.0.1.1 255.255.255.0
    #
    ospf 1 router-id 10.0.1.1
    area 0.0.0.0
    network 10.0.0.0 0.255.255.255
    #
    user-interface con 0
    user-interface vty 0 4
    user-interface vty 16 20
    #
    return
    display current-configuration
    #
    sysname Router2
    #
    interface Serial0/0/3
    link-protocol fr
    undo fr inarp
    fr map ip 10.0.123.1 201 broadcast
    ip address 10.0.123.2 255.255.255.0
    ospf network-type p2mp
    #
    interface LoopBack0
    ip address 10.0.2.2 255.255.255.0
    #
    ospf 1 router-id 10.0.2.2
    area 0.0.0.0
    network 10.0.0.0 0.255.255.255
    #
    user-interface con 0
    user-interface vty 0 4
    user-interface vty 16 20
    #
    Return
    display current-configuration
    #
    sysname Router3
    #
    interface Serial0/0/1
    link-protocol fr
    undo fr inarp
    fr map ip 10.0.123.1 301 broadcast
    ip address 10.0.123.3 255.255.255.0
    ospf network-type p2mp
    #
    interface LoopBack0
    ip address 10.0.3.3 255.255.255.0
    #
    ospf 1 router-id 10.0.3.3
    area 0.0.0.0
    network 10.0.0.0 0.255.255.255
    #
    user-interface con 0
    user-interface vty 0 4
    user-interface vty 16 20
    #
    return

About cemerbas

Check Also

Next Generation Firewall (NGFW) Huawei

Next Generation Firewall (NGFW) üzerinden geçen trafiği, Application identification, User identification ve Content identification temellerine …

Bir yanıt yazın