• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.
Xin chào ! Nếu đây là lần đầu tiên bạn đến với diễn đàn, xin vui lòng danh ra một phút bấm vào đây để đăng kí và tham gia thảo luận cùng VnPro.

Announcement

Collapse
No announcement yet.

Hỏi về lab OSPF nssa

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Hỏi về lab OSPF nssa

    Trên router C
    Code:
    router ospf 1
    area 1 nssa default-information-originate
    network 192.168.2.3 0.0.0.0 area 1
    network 3.3.3.3 0.0.0.0 area 1
    !
    ip route 0.0.0.0 0.0.0.0 loopback0
    Trên router B
    Code:
    router ospf 1
    area 1 nssa default-information-originate
    network 192.168.1.2 0.0.0.0 area 0
    network 192.168.2.2 0.0.0.0 area 1
    network 2.2.2.2 0.0.0.0 area 0
    Trên bảng định tuyến của router C sẽ có 1 tuyến S* 0.0.0.0
    show database của B vẫn quảng bá route 0.0.0.0 vào area 1
    Vấn đề là làm sao để router C có thể ping được đến 1.1.1.1 vì ko thể có 2 tuyến 0.0.0.0 trong bảng định tuyến được.
    Ai giúp mình giải quyết với
    Attached Files
    Last edited by Im_Sam; 08-08-2008, 07:07 PM.

  • #2
    Originally posted by Im_Sam View Post
    Trên router C
    Code:
    router ospf 1
    area 1 nssa default-information-originate
    network 192.168.2.3 0.0.0.0 area 1
    network 3.3.3.3 0.0.0.0 area 1
    !
    ip route 0.0.0.0 0.0.0.0 loopback0
    Trên router B
    Code:
    router ospf 1
    area 1 nssa default-information-originate
    network 192.168.1.2 0.0.0.0 area 0
    network 192.168.2.2 0.0.0.0 area 1
    network 2.2.2.2 0.0.0.0 area 0
    Trên bảng định tuyến của router C sẽ có 1 tuyến S* 0.0.0.0
    show database của B vẫn quảng bá route 0.0.0.0 vào area 1
    Vấn đề là làm sao để router C có thể ping được đến 1.1.1.1 vì ko thể có 2 tuyến 0.0.0.0 trong bảng định tuyến được.
    Ai giúp mình giải quyết với
    hi Sam,
    với mô hình của bạn, Area1 là nssa lúc đó bạn nên cấu hình như sau:
    !!RC:
    config t
    router ospf 1
    network 192.168.2.0 0.0.0.255 area 1
    area 1 nssa
    redistribute "những subnet từ mạng NET vào OSPF"
    !
    end
    wr

    !!RB:
    config t
    router ospf 1
    network 192.168.2.0 0.0.0.255 area 1
    network 192.168.1.0 0.0.0.255 area 0
    network 1.1.1.0 0.0.0.255 area 0
    area 1 nssa default-information-originate
    !
    end
    wr

    !!RA:
    config t
    router ospf 1
    network 192.168.1.0 0.0.0.255 area 0
    redistribute RIP subnets
    !
    router rip
    version 2
    no auto-summary
    network 1.0.0.0
    !
    end
    wr

    lúc đó RA,RB sẽ thấy tất cả các subnet của mạng NET vì RC đã redistribute vào. RC sẽ thấy được các subnet của RIP (Loop0 trên RA) qua default-route từ RB quảng bá vào

    Comment


    • #3
      Trc hết rất cám ơn bạn.Mạng Net của mình là 1 tuyến default route 0.0.0.0. Vậy khi redistribute thì redistribute subnet nào. Mình vẫn chưa hiểu lệnh
      Code:
      redistribute "những subnet từ mạng NET vào OSPF"
      lắm. Bạn giải thích rõ hơn hộ mình với

      Comment


      • #4
        Originally posted by Im_Sam View Post
        Trc hết rất cám ơn bạn.Mạng Net của mình là 1 tuyến default route 0.0.0.0. Vậy khi redistribute thì redistribute subnet nào. Mình vẫn chưa hiểu lệnh
        Code:
        redistribute "những subnet từ mạng NET vào OSPF"
        lắm. Bạn giải thích rõ hơn hộ mình với
        à
        Code:
        redistribute "những subnet từ mạng NET vào OSPF"
        : nghĩa là bạn redistribute những route trên RC đi đến mạng NET vào OSPF.
        Như vậy theo mô hình của bạn, mạng NET của bạn là một mạng bên ngoài phải không (Internet chẳng hạn)? Nếu như vậy thì cách
        Code:
        redistribute "những subnet từ mạng NET vào OSPF"
        là không thực hiện được.
        Một cách khác đơn giản hơn để thực hiện yêu cầu của bạn là để Area1 là normal area.
        cấu hình sửa lại tương ứng là:
        !!RC:
        config t
        router ospf 1
        network 192.168.2.0 0.0.0.255 area 1
        redistribute connected subnets
        !
        ip route 0.0.0.0 0.0.0.0 loopback0
        !
        end
        wr

        !!RB:
        config t
        router ospf 1
        network 192.168.2.0 0.0.0.255 area 1
        network 192.168.1.0 0.0.0.255 area 0
        network 1.1.1.0 0.0.0.255 area 0
        !
        end
        wr

        !!RA:
        config t
        router ospf 1
        network 192.168.1.0 0.0.0.255 area 0
        redistribute RIP subnets
        !
        router rip
        version 2
        no auto-summary
        network 1.0.0.0
        !
        end
        wr

        Comment


        • #5
          Như vậy với mô hình như thế ta ko triển khai đc nssa phải ko. Cám ơn bạn rất nhiều

          Comment


          • #6
            Cha`o !!!
            Originally posted by canhochoi View Post
            các bác cho em hỏi về OSPF. Lệnh no-redeistribute trong cấu hình nssa để làm gì, có ví dụ cụ thể về trường hợp dùng lệnh này ko? lệnh này có lợi ích gì ?? tại sao phải dùng nó ???
            area area-id nssa no-redeistribute defau-infor ori
            Thanks
            Chào bạn !!!
            Bạn xem bài LAB bên dưới :
            Đầu tiên ta xét câu lệnh :
            Code:
            [SIZE=5][COLOR=Red][B]area area-id nssa no-redistribution[/B][/COLOR][/SIZE]
            Trong đó :
            ·Area-id : OSPF area ID. Tuy nhiên area-id dùng trong bài này là một giá trị nằm từ 1 – 4.294.967.295 (cấu hình trên router CISCO) hoặc dạng IP address : 0.0.0.1 – 255.255.255.255 (cấu hình trên router Juniper,…). Do area 0 hay area 0.0.0.0 không thể nào cấu hình là NSSA được.

            Lý thuyết : trong stub hoặc totally stubby area , ABR trong stub area sẽ chống lại OSPF externel routers (type 5) từ bên ngoài quảng bá vào mạng. Có nghĩa là ASBR không thể nào là thành phần của stubby hoặc totally stubby area bời vì ASBR tạo ra OSPF externel type 5 routes.Chính vì tình huống : muốn quảng bá một mạng bên ngoài vào OSPF + vẫn giữa được những tính chất vốn có của stub và totally stubby area , vùng NSSA đã ra đời. Vùng NSSA ngoài những tính chất của 2 vùng trên , nó còn bỏ đi giới hạn "reditribute external OSPF routes" bằng cách :
            + Tại ASBR hay ABR , nó nhận gói tin LSA quảng bá external routes vào mạng OSPF => sau đó nó chuyển dạng gói tin type 5 (quy định chứa external route)này thành gói tin type 7.
            -------+ Nếu như gói tin được nhận từ ASBR (do router C quảng bá)nó sẽ chuyển từ type 5 sang type 7 (như trên đã giải thích ở trên) sau đó khi đến vùng standard area tại ABR nó sẽ chuyển dạng type 7 sang type 5.
            -------+ Nếu như gói tin được nhận tử ABR (do router E quảng bá) nó sẽ chuyển từ dạng type 5 sang type 7 để trở thành 1 route trong NSSA.

            Hình minh họa:


            Đầu tiên chúng ta cấu hình cho các Router , ở trạng thái trước khi bật câu lệnh :

            Code:
            [SIZE=5][COLOR=Red][B]area area-id nssa no-redistribution[/B][/COLOR][/SIZE]
            cũng như
            Code:
            chưa cấu hình NSSA

            Code:
             Router A
            
            interface Loopback0
            
             ip address 1.1.1.1 255.255.255.255
            
            !
            
            interface Serial0/1
            
             ip address 10.1.1.1 255.255.255.252
            
             clockrate 64000
            
            !
            
            router ospf 1
            
             redistribute connected subnets
            
             network 10.1.1.0 0.0.0.3 area 0
            
            _______________________________________________________________________
            
            
            
            Router B
            
            interface Loopback0
            
             ip address 2.2.2.2 255.255.255.255
            
            !
            
            interface Ethernet0
            
             ip address 172.16.1.1 255.255.255.0
            
            !
            
            interface Serial0
            
             ip address 10.1.1.2 255.255.255.252
            
            !
            
            interface Serial1
            
             ip address 10.1.1.5 255.255.255.252
            
             lockrate 64000
            
            !
            
            router eigrp 1
            
             network 172.16.0.0
            
            !
            
            router ospf 1
            
             redistribute eigrp 1 subnets
            
             network 10.1.1.0 0.0.0.3 area 0
            
             network 10.1.1.4 0.0.0.3 area 1
            
            _______________________________________________________________________
            
            
            
            Router C
            
            interface Loopback0
            
             ip address 3.3.3.3 255.255.255.255
            
            !
            
            interface Serial0
            
             ip address 10.1.1.6 255.255.255.252
            
            !
            
            interface Serial1
            
             ip address 10.1.1.10 255.255.255.252
            
             clockrate 64000
            
            !
            
            router ospf 1
            
             redistribute rip subnets
            
             network 10.1.1.4 0.0.0.3 area 1
            
            !
            
            router rip
            
             version 2
            
             passive-interface Serial0
            
             network 10.0.0.0
            
            _______________________________________________________________________
            
            
            
            Router D
            
            interface Loopback0
            
             ip address 156.26.32.1 255.255.255.0
            
            !
            
            interface Loopback1
            
             ip address 156.26.33.1 255.255.255.0
            
            !
            
            interface Serial0/0
            
             ip address 10.1.1.9 255.255.255.252
            
            !
            
            router rip
            
             version 2
            
             network 10.0.0.0
            
             network 156.26.0.0
            
             no auto-summary
            
            _______________________________________________________________________
            
            
            
            Router E
            
            interface Loopback0
            
             ip address 142.1.4.4 255.255.255.255
            
            !
            
            interface Ethernet0/0
            
             ip address 172.16.1.2 255.255.255.0
            
            !
            
            router eigrp 1
            
             network 142.1.0.0
            
             network 172.16.0.0
            
             no-auto-summary
            [COLOR=Red][B]
            Router A,B  học mạng RIP từ C,D  như một external routes và Router học EIGRP từ E cũng vậy.[/B][/COLOR]
            
            rtrA#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, * - candidate default
            
                   U - per-user static route, o - ODR
            
            
            
            Gateway of last resort is not set
            
            
            
                 1.0.0.0/32 is subnetted, 1 subnets
            
            C       1.1.1.1 is directly connected, Loopback0
            
                 156.26.0.0/24 is subnetted, 2 subnets
            
            [B]  O E2    156.26.32.0 [110/20] via 10.1.1.2, 00:02:29, Serial0/1[/B]
            
            [B] O E2    156.26.33.0 [110/20] via 10.1.1.2, 00:02:29, Serial0/1 [/B]
            
                 172.16.0.0/24 is subnetted, 1 subnets
            [B]
            O E2    172.16.1.0 [110/20] via 10.1.1.2, 00:01:28, Serial0/1[/B]
            
                 142.1.0.0/32 is subnetted, 1 subnets
            [B]
            O E2    142.1.4.4 [110/20] via 10.1.1.2, 00:01:28, Serial0/1[/B]
            
                 10.0.0.0/30 is subnetted, 3 subnets
            
            [B] O E2    10.1.1.8 [110/20] via 10.1.1.2, 00:02:29, Serial0/1[/B]
            
            C       10.1.1.0 is directly connected, Serial0/1
            
            [B]  O IA    10.1.1.4 [110/128] via 10.1.1.2, 00:02:30, Serial0/1[/B]
             
            _______________________________________________________________________
            
            
            
            rtrB#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, * - candidate default
            
                   U - per-user static route, o - ODR
            
            
            
            Gateway of last resort is not set
            
            
            
                 1.0.0.0/32 is subnetted, 1 subnets
            
            [B] O E2    1.1.1.1 [110/20] via 10.1.1.1, 00:09:03, Serial0[/B]
            
                 2.0.0.0/32 is subnetted, 1 subnets
            
            C       2.2.2.2 is directly connected, Loopback0
            
                 156.26.0.0/24 is subnetted, 2 subnets
            [B]
            O E2    156.26.32.0 [110/20] via 10.1.1.6, 00:09:03, Serial1
            
            O E2    156.26.33.0 [110/20] via 10.1.1.6, 00:09:03, Serial1[/B] 
            
                 172.16.0.0/24 is subnetted, 1 subnets
            
            C       172.16.1.0 is directly connected, Ethernet0
            
                 142.1.0.0/32 is subnetted, 1 subnets
            
            [B] D       142.1.4.4 [90/409600] via 172.16.1.2, 00:09:41, Ethernet0[/B]
            
                 10.0.0.0/30 is subnetted, 3 subnets
            
            [B] O E2    10.1.1.8 [110/20] via 10.1.1.6, 00:09:03, Serial1[/B]
            
            C       10.1.1.0 is directly connected, Serial0
            
            C       10.1.1.4 is directly connected, Serial1
            Bây giờ chúng ta sẽ cấu hình NSSA trên Router B và C (Area 1)
            Code:
            Router B  
            router ospf 1   
            [B]area 1 nssa[/B]   
            redistribute eigrp 1 subnets   
            network 10.1.1.0 0.0.0.3 area 0   
            network 10.1.1.4 0.0.0.3 area 1  _______________________________________________________________________  Router C  
            router ospf 1   
            [B]area 1 nssa   [/B]
            redistribute rip subnets   
            network 10.1.1.4 0.0.0.3 area 1
            Kiểm tra Area sau khi được cấu hình là NSSA :
            Code:
            rtrB#show ip ospf  
            Routing Process "ospf 1" with ID 2.2.2.2  
            Supports only single TOS(TOS0) routes  
            It is an area border and autonomous system boundary router  
            Redistributing External Routes from,     
            eigrp 1, includes subnets in redistribution  
            SPF schedule delay 5 secs, Hold time between two SPFs 10 secs  
            Minimum LSA interval 5 secs. Minimum LSA arrival 1 secs  
            Number of external LSA 7. Checksum Sum 0x3F1B4  
            Number of DCbitless external LSA 0  
            Number of DoNotAge external LSA 0  
            [B] Number of areas in this router is 2. 1 normal 0 stub 1 nssa    [/B] 
            Area BACKBONE(0)        
             Number of interfaces in this area is 1         
            Area has no authentication         
            SPF algorithm executed 10 times         
            Area ranges are         
            Number of LSA 3. Checksum Sum 0x275D9         
            Number of DCbitless LSA 0         
            Number of indication LSA 0         
            Number of DoNotAge LSA 0     
            Area 1         
            Number of interfaces in this area is 1         
            [B] It is a NSSA area         
            Perform type-7/type-5 LSA translation   [/B]      
            Area has no authentication         
            SPF algorithm executed 23 times         
            Area ranges are         
            Number of LSA 9. Checksum Sum 0x4AE6A         
            Number of DCbitless LSA 0         
            Number of indication LSA 0         
            Number of DoNotAge LSA 0
            Sau đó ta tiếp tục kiểm tra bảng định tuyến của các Router A,B và C
            Code:
            rtrB#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, * - candidate default
            
                   U - per-user static route, o - ODR
            
            
            
            Gateway of last resort is not set
            
            
            
                 1.0.0.0/32 is subnetted, 1 subnets
            
            [B] O E2    1.1.1.1 [110/20] via 10.1.1.1, 00:02:19, Serial0[/B]
            
                 2.0.0.0/32 is subnetted, 1 subnets
            
            C       2.2.2.2 is directly connected, Loopback0
            
                 156.26.0.0/24 is subnetted, 2 subnets
            
            [B] O N2    156.26.32.0 [110/20] via 10.1.1.6, 00:02:20, Serial1[/B]
            [B]
            O N2    156.26.33.0 [110/20] via 10.1.1.6, 00:02:20, Serial1[/B]
            
                 172.16.0.0/24 is subnetted, 1 subnets
            
            C       172.16.1.0 is directly connected, Ethernet0
            
                 142.1.0.0/32 is subnetted, 1 subnets
            
            D       142.1.4.4 [90/409600] via 172.16.1.2, 00:18:28, Ethernet0
            
                 10.0.0.0/30 is subnetted, 3 subnets
            
            [B] O N2    10.1.1.8 [110/20] via 10.1.1.6, 00:02:20, Serial1[/B]
            
            C       10.1.1.0 is directly connected, Serial0
            
            C       10.1.1.4 is directly connected, Serial1
            
            _______________________________________________________________________
            
            
            
            rtrC#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, * - candidate default
            
                   U - per-user static route, o - ODR
            
            
            
            Gateway of last resort is not set
            
            
            
                 3.0.0.0/24 is subnetted, 1 subnets
            
            C       3.3.3.0 is directly connected, Loopback0
            
                 156.26.0.0/24 is subnetted, 2 subnets
            
            R       156.26.32.0 [120/1] via 10.1.1.9, 00:00:06, Serial1
            
            R       156.26.33.0 [120/1] via 10.1.1.9, 00:00:06, Serial1
            
                 172.16.0.0/24 is subnetted, 1 subnets
            
            [B] O N2    172.16.1.0 [110/20] via 10.1.1.5, 00:04:52, Serial0[/B]
            
                 142.1.0.0/32 is subnetted, 1 subnets
            
            [B] O N2    142.1.4.4 [110/20] via 10.1.1.5, 00:04:53, Serial0[/B]
            
                 10.0.0.0/30 is subnetted, 3 subnets
            
            C       10.1.1.8 is directly connected, Serial1
            
            [B] O IA    10.1.1.0 [110/128] via 10.1.1.5, 00:04:53, Serial0
            [/B] 
            C       10.1.1.4 is directly connected, Serial0
            Code:
            [SIZE=3]Ta xét Router A, lúc này những mạng bên ngoài external OSPF route không còn được redistribute từ Router B theo LSA type 5 nữa mà được redistribute theo LSA type 7. Cụ thể :
            + Đối với RIPv2 : Router B sẽ chuyển đổi gói tin từ dạng Type 7 , do router C đã convert Ripv2 từ [B]type 5 sang type 7 khi vào NSSA[/B], sang t[B]ype 5 khi vào Area 0[/B]
            + Đối với EIGRP : Router B sẽ redistribute[B] LSA Type 5 vào Area0[/B] , nhưng nó sẽ convert [B]type 5 thành type 7 khi vào vùng Area 1 NSSA[/B][/SIZE]
            
            rtrA#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, * - candidate default
            
                   U - per-user static route, o - ODR
            
            
            
            Gateway of last resort is not set
            
            
            
                 1.0.0.0/32 is subnetted, 1 subnets
            
            C       1.1.1.1 is directly connected, Loopback0
            
                 156.26.0.0/24 is subnetted, 2 subnets
            
            O E2    156.26.32.0 [110/20] via 10.1.1.2, 00:06:14, Serial0/1
            
            O E2    156.26.33.0 [110/20] via 10.1.1.2, 00:06:14, Serial0/1
            
                 172.16.0.0/24 is subnetted, 1 subnets
            
            O E2    172.16.1.0 [110/20] via 10.1.1.2, 00:06:46, Serial0/1
            
                 142.1.0.0/32 is subnetted, 1 subnets
            
            O E2    142.1.4.4 [110/20] via 10.1.1.2, 00:06:46, Serial0/1
            
                 10.0.0.0/30 is subnetted, 3 subnets
            
            O E2    10.1.1.8 [110/20] via 10.1.1.2, 00:06:14, Serial0/1
            
            C       10.1.1.0 is directly connected, Serial0/1
            Code:
            Cuối cùng , chúng ta xét đến trường hợp dùng câu lệnh :
             [code][SIZE=5][COLOR=Red][B]area area-id nssa no-redistribution[/B][/COLOR][/SIZE]
            Ý nghĩa của no-redistribution cho ta biết :
            Router trong vùng NSSA sẽ không chấp nhận bất cứ external route nào (nó không convert nó sang LSA type 7), được quảng bá bởi ABR hay ASBR , tuy nhiên nó vẫn cho phép những tuyến trên được redistribute vào những vùng standard, hay NSSA khác.


            Ta cấu hình trên Router để ngăn chặn việc redistribute mạng học từ EIGRP
            Router B

            router ospf 1

            area 1 nssa no-redistribution

            redistribute eigrp 1 subnets

            network 10.1.1.0 0.0.0.3 area 0

            network 10.1.1.4 0.0.0.3 area 1

            [/code]Chúng ta kiểm tra tác dụng của câu lệnh trên

            Code:
            rtrB#show ip ospf
            
             Routing Process "ospf 1" with ID 2.2.2.2
            
             Supports only single TOS(TOS0) routes
            
             It is an area border and autonomous system boundary router
            
             Redistributing External Routes from,
            
                eigrp 1, includes subnets in redistribution
            
             SPF schedule delay 5 secs, Hold time between two SPFs 10 secs
            
             Minimum LSA interval 5 secs. Minimum LSA arrival 1 secs
            
             Number of external LSA 7. Checksum Sum 0x3EFB5
            
             Number of DCbitless external LSA 0
            
             Number of DoNotAge external LSA 0
            
            [B] Number of areas in this router is 2. 1 normal 0 stub 1 nssa[/B]
            
                Area BACKBONE(0)
            
                    Number of interfaces in this area is 1
            
                    Area has no authentication
            
                    SPF algorithm executed 11 times
            
                    Area ranges are
            
                    Number of LSA 3. Checksum Sum 0x26FDC
            
                    Number of DCbitless LSA 0
            
                    Number of indication LSA 0
            
                    Number of DoNotAge LSA 0
            
                Area 1
            
                    Number of interfaces in this area is 1
            
                   [B][COLOR=Red] It is a NSSA area, no redistribution into this area[/COLOR][/B]
            
                    Perform type-7/type-5 LSA translation
            
                    Area has no authentication
            
                    SPF algorithm executed 26 times
            
                    Area ranges are
            
                    Number of LSA 7. Checksum Sum 0x31A46
            
                    Number of DCbitless LSA 0
            
                    Number of indication LSA 0
            
                    Number of DoNotAge LSA 0
            
            _______________________________________________________________________
            
            
            
            rtrC#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, * - candidate default
            
                   U - per-user static route, o - ODR
            
            
            
            Gateway of last resort is not set
            
            
            
                 3.0.0.0/24 is subnetted, 1 subnets
            
            C       3.3.3.0 is directly connected, Loopback0
            
                 156.26.0.0/24 is subnetted, 2 subnets
            
            R       156.26.32.0 [120/1] via 10.1.1.9, 00:00:02, Serial1
            
            R       156.26.33.0 [120/1] via 10.1.1.9, 00:00:02, Serial1
            
                 10.0.0.0/30 is subnetted, 3 subnets
            
            C       10.1.1.8 is directly connected, Serial1
            
            O IA    10.1.1.0 [110/128] via 10.1.1.5, 00:04:37, Serial0
            
            C       10.1.1.4 is directly connected, Serial0
            Kiểm tra trên Router A :EIGRP vẫn được học bình thường
            Code:
            rtrA#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, * - candidate default
            
                   U - per-user static route, o - ODR
            
            
            
            Gateway of last resort is not set
            
            
            
                 1.0.0.0/32 is subnetted, 1 subnets
            
            C       1.1.1.1 is directly connected, Loopback0
            
                 156.26.0.0/24 is subnetted, 2 subnets
            
            O E2    156.26.32.0 [110/20] via 10.1.1.2, 00:02:45, Serial0/1
            
            O E2    156.26.33.0 [110/20] via 10.1.1.2, 00:02:45, Serial0/1
            
                 172.16.0.0/24 is subnetted, 1 subnets
            
            [B]O E2    172.16.1.0 [110/20] via 10.1.1.2, 00:14:41, Serial0/1[/B]
            
                 142.1.0.0/32 is subnetted, 1 subnets
            
            [B]O E2    142.1.4.4 [110/20] via 10.1.1.2, 00:14:41, Serial0/1[/B]
            
                 10.0.0.0/30 is subnetted, 3 subnets
            
            O E2    10.1.1.8 [110/20] via 10.1.1.2, 00:02:45, Serial0/1
            
            C       10.1.1.0 is directly connected, Serial0/1
            
            O IA    10.1.1.4 [110/128] via 10.1.1.2, 00:14:42, Serial0/1
            Phần thêm của câu lệnh " default-information-originate"
            , tôi sẽ thực hiện trong bài LAB sau. Tuy nhiên , ta có thể hiểu ý nghĩa của nó như sau :
            Code:
            [SIZE=4]Nó giúp ta quảng bá default route vào NSSA area , do NSSA không chấp nhận default route
            [/SIZE]
            chúc bạn vui !!!

            Link : http://www.vnpro.org/forum/showpost....97&postcount=3
            Trần Mỹ Phúc
            tranmyphuc@hotmail.com
            Hãy add nick để có thông tin đề thi mới nhất :tranmyphuc (Hỗ trợ tối đa cho các bạn tự học)

            Cisco Certs : CCNP (Passed TSHOOT 1000/1000)

            Juniper Certs :
            JNCIP-ENT & JNCIP-SEC
            INSTRUCTORS (No Fee) : CISCO (Professional) , JUNIPER (Professional) , Microsoft ...

            [version 4.0] Ôn tập CCNA


            Comment


            • #7
              Originally posted by Im_Sam View Post
              Như vậy với mô hình như thế ta ko triển khai đc nssa phải ko. Cám ơn bạn rất nhiều
              với mô hình của bạn thì không triển khai được nssa cho area1.

              Comment

              Working...
              X