ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Certifications  >>  Cisco Certifications  >>  CCNA
 
 


 

 
 CCNA interview questions  CCNA Interview Questions
 CCDA interview questions  CCDA Interview Questions
Question
What is the difference between OSPF Exteral Type 1 (O E1) &
External Type 2 (O E2) routes????
 Question Submitted By :: Shahin
I also faced this Question!!     Rank Answer Posted By  
 
  Re: What is the difference between OSPF Exteral Type 1 (O E1) & External Type 2 (O E2) routes????
Answer
# 1
a very good question-
here is specification between two

i am going to explain brefly 
  
please read it carefully.


Route redistribution is the process of taking routes 
learned via one routing protocol and injecting those routes
into another routing domain. (Static and connected routes
can also be redistributed.) When a router running OSPF takes
routes learned by another routing protocol and makes them
available to the other OSPF-enabled routers it's
communicating with, that router becomes an Autonomous System
Border Router (ASBR).

Let's work with an example where R1 is running both OSPF and
RIP. R4 is in the same OSPF domain as R1, and we want R4 to
learn the routes that R1 is learning via RIP. This means we
have to perform route redistribution on the ASBR. The routes
that are being redistributed from RIP into OSPF will appear
as E2 routes on R4:

what is asbr-Autonomous System Border Router
(ASBR).Autonomous System Boundary Router (ASBR) is a router
located between an OSPF autonomous system and a non-OSPF
network (such as RIP). ASBRs run both OSPF and another
routing protocol, such as RIP. ASBRs must reside on a
non-stub OSPF area.

and this type of route is called ospf e2 route
 
Is This Answer Correct ?    0 Yes 0 No
Jitendera Kumar Sinha
 
  Re: What is the difference between OSPF Exteral Type 1 (O E1) & External Type 2 (O E2) routes????
Answer
# 2
answer 1 continue

let there are three router 

r1---------r2------r3

r1------area 0  protocol ospf
 r2------area1    protocol ospf9this is abr router)
r3---------area2   protocol rip(this is asbr router)

now we have to make redisrtubution  on asbr router.

so this is called e type

now 

e1 is so simlple you make a digram with therer router and
run each by single ospf enabled protocol that is called e1
 
Is This Answer Correct ?    0 Yes 0 No
Jitu
 
 
 
  Re: What is the difference between OSPF Exteral Type 1 (O E1) & External Type 2 (O E2) routes????
Answer
# 3
let see the comand

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
 network 10.1.1.0 0.0.0.3 area 0
 
outer B
interface Loopback0
 ip address 2.2.2.2 255.255.255.255
!
interface Serial0
 ip address 10.1.1.2 255.255.255.252
!
interface Serial 1
 ip address 10.1.1.5 255.255.255.252
!
router eigrp 1
 network 10.0.0.0
!
router ospf 1
 network 10.1.1.0 0.0.0.3 area 0

outer C
interface Loopback0
 ip address 3.3.3.3 255.255.255.255
!
interface Loopback1
 ip address 5.5.5.5 255.0.0.0
!
interface Loopback2
 ip address 6.6.6.6 255.240.0.0
!
interface Loopback3
 ip address 145.5.5.5 255.255.0.0
!
interface Loopback4
 ip address 146.6.6.6 255.255.240.0
!
interface Loopback5
 ip address 205.5.5.5 255.255.255.0
!
interface Loopback6
 ip address 206.6.6.6 255.255.255.240
!
interface Serial0
 ip address 10.1.1.6 255.255.255.252
!
router eigrp 1
 network 5.0.0.0
 network 6.0.0.0
 network 10.0.0.0
 network 145.5.0.0
 network 146.6.0.0
 network 205.5.5.0
 network 206.6.6.0
 no auto-summary


Verify that Routers A and B have established an OSPF
neighbor relationship.

rtrA#show ip ospf neighbor
Neighbor ID   Pri  State      Dead Time  Address     Interface
2.2.2.2      1  FULL/ -    00:00:36  10.1.1.2    Serial0/1

verify that Routers B and C have formed an EIGRP neighbor
relationship.
trB#show ip eigrp neighbors
IP-EIGRP neighbors for process 1
H  Address         Interface  Hold Uptime  SRTT  RTO Q Seq
                    (sec)     (ms)    Cnt Num
0  10.1.1.6        Se1      11 00:25:42 308 2280 0 4

Verify that Router B is receiving the six EIGRP routes from
Router C

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
   2.0.0.0/32 is subnetted, 1 subnets
C    2.2.2.2 is directly connected, Loopback0
D  205.5.5.0/24 [90/40640000] via 10.1.1.6, 00:26:25, Serial1
   206.6.6.0/28 is subnetted, 1 subnets
D    206.6.6.0 [90/40640000] via 10.1.1.6, 00:26:25, Serial1
D  5.0.0.0/8 [90/40640000] via 10.1.1.6, 00:26:25, Serial1
   6.0.0.0/12 is subnetted, 1 subnets
D    6.0.0.0 [90/40640000] via 10.1.1.6, 00:26:25, Serial1
D  145.5.0.0/16 [90/40640000] via 10.1.1.6, 00:26:25, Serial1
   10.0.0.0/30 is subnetted, 2 subnets
C    10.1.1.0 is directly connected, Serial0
C    10.1.1.4 is directly connected, Serial1
   146.6.0.0/20 is subnetted, 1 subnets
D    146.6.0.0 [90/40640000] via 10.1.1.6, 00:26:27, Serial1


Modify the configuration on Router B to redistribute the
classful EIGRP routes into OSPF.

router ospf 1
 redistribute eigrp 1

When the command redistribute eigrp 1 is entered, the router
will give you the following friendly reminder:

rtrB(config-router)#redistribute eigrp 1
% Only classful networks will be redistributed

Determine the routes that have been redistributed by
examining the IP routing table on Router A.

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, 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
   1.0.0.0/32 is subnetted, 1 subnets
C    1.1.1.1 is directly connected, Loopback0
O E2 205.5.5.0/24 [110/20] via 10.1.1.2, 00:33:23, Serial0/1
O E2 5.0.0.0/8 [110/20] via 10.1.1.2, 00:33:23, Serial0/1
O E2 145.5.0.0/16 [110/20] via 10.1.1.2, 00:33:23, Serial0/1
   10.0.0.0/30 is subnetted, 1 subnets
C    10.1.1.0 is directly connected, Serial0/1

nly the EIGRP classful routes were redistributed into OSPF.
As you can see in the routing table on Router A, EIGRP
routes were redistributed as external type 2 with a cost or
metric of 20. This information can also be found by
inspecting the OSPF database on Router B.

rtrB#show ip ospf database external
    OSPF Router with ID (2.2.2.2) (Process ID 1)
        Type-5 AS External Link States
 LS age: 410
 Options: (No TOS-capability, DC)
 LS Type: AS External Link
 Link State ID: 5.0.0.0 (External Network Number )
 Advertising Router: 2.2.2.2
 LS Seq Number: 80000004
 Checksum: 0x642C
 Length: 36
 Network Mask: /8
    Metric Type: 2 (Larger than any link state path)
    TOS: 0
    Metric: 20
    Forward Address: 0.0.0.0
    External Route Tag: 0
 LS age: 419
 Options: (No TOS-capability, DC)
 LS Type: AS External Link
 Link State ID: 145.5.0.0 (External Network Number )
 Advertising Router: 2.2.2.2
 LS Seq Number: 80000004
 Checksum: 0x5F9
 Length: 36
 Network Mask: /16
    Metric Type: 2 (Larger than any link state path)
    TOS: 0
    Metric: 20
    Forward Address: 0.0.0.0
    External Route Tag: 0
 LS age: 435
 Options: (No TOS-capability, DC)
 LS Type: AS External Link
 Link State ID: 205.5.5.0 (External Network Number )
 Advertising Router: 2.2.2.2
 LS Seq Number: 80000004
 Checksum: 0xBEFE
 Length: 36
 Network Mask: /24
    Metric Type: 2 (Larger than any link state path)
    TOS: 0
    Metric: 20
    Forward Address: 0.0.0.0
    External Route Tag: 0
this is mine confregation so some data like ip address mi
modified nad some data is omoted
 
Is This Answer Correct ?    0 Yes 0 No
Jitendera Kuamr Sin Ha
 

 
 
 
Other CCNA Interview Questions
 
  Question Asked @ Answers
 
Which 2 commands shows the Cisco IOS filename? A.) show IOS B.) show ver C.) show flash D.) show mem E.) show NVRAM  1
What command can you type to view the connections after telneting into multiple routers simultaneously? A.) sh users B.) sh ports C.) sh host D.) sh sessions  1
Your PC has been configured with IP Address 192.168.3.25 and a subnet mask of 255.255.255.0. Which of the following IP Addresses is a valid default gateway address for your PC? 192.168.3.0 255.255.255.0 192.168.3.2 255.255.255.0 192.168.3.25 255.255.255.0 192.168.4.1 255.255.255.255  1
Identify 3 characteristics of switches? A.) Increase available bandwidth B.) Decrease broadcast traffic C.) Support full duplex in a multipoint topology D.) Make fowarding decision using MAC address E.) Create collision domains  1
what is the diffrence betwwen telnet and ssh.this question is asked by nikhil and i am plasing the answer here insteed of his personal mail.  4
Identify the IPX standard access-list number range? A.) 600 - 699 B.) 1000 - 1099 C.) 1 - 99 D.) 100 - 199 E.) 800 - 899  1
Identify the command to disable CDP on an interface? A.) Router(config-if)# no cdp enable B.) Router(config-if)# no cdp run C.) Router# no cdp enable D.) Router(config-if)# no cdp  1
Switching methods include cut-through, store and forward, and a modified version of the first two methods. Which statement about switching methods is true? A. The store and forward method has low latency B. The cut through method of switching has high latency C. The modified version holds the packet in memory until 50 percent of the packet reaches the switch D. The modified version holds the packet in memory until the data spoon of the packet reaches the switch  3
How many Frame-relay encapsulation types are available with Cisco routers? A.) Four B.) Two C.) Five D.) Three  1
Which statement should you use to deny FTP access (only) from network 210 93 105 0 to network 223 8 151 0? A. access list 1 deny 210 93 105 0 0 0 0 0 any eq ftp access list 1 permit any B. access list 100 deny tcp 210 93 105 0 0 0 0 255 223 8 151 0 0 0 0 255 eq ftp C. access list 100 deny ip 223 8 151 0 0 0 0 255 any eq ftp access list 100 permit hp any any D. access list 100 deny tcp 210 93 105 0 0 0 0 255 223 8 151 0 0 0 0 255 eq ftp access list 100 permit ip any any  1
. Which command sequence will allow only traffic from network 185.64.0.0 to enter interface s0? A. access-list 25 permit 185.64.0.0 255.255.0.0 int s0 ; ip access-list 25 out B. access-list 25 permit 185.64.0.0 255.255.0.0 int s0 ; ip access-group 25 out C. access-list 25 permit 185.64.0.0 0.0.255.255 int s0 ; ip access-list 25 in D. access-list 25 permit 185.64.0.0 0.0.255.255 int s0 ; ip access-group 25 in  1
Identify the command to view the configuration-register value? A.) show register B.) display config-register C.) show config D.) show version  1
Given the global configuration commands: 'banner motd #' 'Hello #' When would the message be displayed? A.) The message of the day banner shows up before login. B.) The message of the day banner shows up during logoff. C.) These commands are not the right syntax for MOTD. D.) Message of the day banners are displayed upon entering global config mode. E.) Message of the day banners are not possible. F.) The message of the day would be, 'Hello #'  1
Layer 1 and Layer 2 devices must forward a broadcast. Which of the following devices fall into this category? Gateway Switch Router All of the above.  1
Which of the following is an example of a Transport Layer protocol? Ethernet IP TCP RS-232  1
What is the default routing metric used by IGRP? A.) MTU, delay, bandwidth, reliability, and loading B.) Count to infinity C.) Bandwidth and delay D.) Hop count  2
How many access lists are allowed per interface? A. One per port, per protocol B. Two per port, per protocol C. Unlimited D. Router interface +1 per port.  2
What is LSA? How many types of LSA used by OSPF version 2?? Hathway2
Identify the command to configure ALL the default VTY ports? A.) Router(config)# line vty 0 4 B.) Router# line vty 0 4 C.) Router(config)# line vty D.) Router(config)# line vty 0 Accel2
Which IP Address Class can have 64,000 subnets with 64,000 hosts per subnet? A. Class B B. Class A C. Class C D. Class D  2
 
For more CCNA Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com