What is SIA (Stuck in Active) in EIGRP?

Answers were Sorted based on User's Feedback



What is SIA (Stuck in Active) in EIGRP?..

Answer / shahin

If the successor path is lost & there is no feasible
successor path is available, router sends out query messages
on all EIGRP enable interfaces & tries to find out an
alternative path to the network. It is active state for that
route.

Now Router is waiting for reply from its neighbors. If reply
is missing for 3 min, dat means router didn't get any reply
from neighbors, then it becomes stuck in active.

In this case, router reset the neighbor relationship with
the router who didn't replied back the query messages sent
by the router.

To solve this problem, two method is used -

a) Router summarization
b) EIGRP Stub.

To disbale the stuck in active timer, the following command
is used -

Router(config-router)# timers active-time disable.

Is This Answer Correct ?    88 Yes 5 No

What is SIA (Stuck in Active) in EIGRP?..

Answer / jitendera sinha

When EIGRP returns a stuck in active (SIA) message, it
means that it has not received a reply to a query. EIGRP
sends a query when a route is lost and another feasible
route does not exist in the topology table. The SIA is
caused by two sequential events:

* The route reported by the SIA has gone away.
* An EIGRP neighbor (or neighbors) have not replied to
the query for that route.

When the SIA occurs, the router clears the neighbor that did
not reply to the query. When this happens, determine which
neighbor has been cleared. Keep in mind that this
router can be many hops away

Is This Answer Correct ?    37 Yes 11 No

What is SIA (Stuck in Active) in EIGRP?..

Answer / jm

The SIA state means that an EIGRP router has not received a
reply to a query from one or more neighbors
within the time allotted (approximately 3 minutes). When this
happens, EIGRP clears the neighbors that did
not send a reply and logs a DUAL−3−SIA error message for the
route that went active.

Is This Answer Correct ?    19 Yes 6 No

What is SIA (Stuck in Active) in EIGRP?..

Answer / dins

The SIA state means that an EIGRP router has not received a reply to a query from one or more neighbors within the time allotted (approximately 3 minutes). When this happens, EIGRP clears the neighbors that did not send a reply and logs a DUAL-3-SIA error message for the route that went active.

Consider the following topology as an example:

10.1.2.0/24-----R1----R2-----R3
| |
| |
R5 R4

R2 learns about network 10.1.2.0/24 via R1.

The link between R1 and R2 goes down. R2 looses its successor (R1) for 10.1.2.0/24.

R2 checks the EIGRP topology table for a feasible successor (another neighbor with a route to 10.1.2.0/24 that meets the feasibility condition); it has none.

R2 transitions from passive to active for 10.1.2.0/24.

R2 sends queries to R3 and R5, asking if they have another path to 10.1.2.0/24. The SIA timer starts.

R5 checks the EIGRP topology table for a feasible successor; it has none.

R5 transitions from passive to active for 10.1.2.0/24.

R5 checks its EIGRP neighbor table and only finds EIGRP neighbors out the interface facing R2 (its former successor for 10.1.2.0/24).

R5 replies with an unreachable message because it has no alternative path and has no other neighbors to query.

R5 transitions from active to passive for 10.1.2.0/24.

R3 checks the EIGRP topology table for a feasible successor; it has none.

R3 transitions from passive to active for 10.1.2.0/24.

R3 checks its EIGRP neighbor table and finds R4.

R3 sends a query to R4 for network 10.1.2.0/24. The SIA timer starts.

R4 never receives the query either due to problems with the link between R3 and R4 or congestion. You can see this problem by issuing either the show ip eigrp neighbor command or the show ip eigrp topology active command on R3; the queue count for R4 should be higher than usual.

The SIA timer on R2 reaches approximately 3 minutes.

R3 can not reply to R2’s query until it hears a reply from R4.

R2 logs a DUAL-3-SIA error for network 10.1.2.0/24 and clears the neighbor adjacency with R3.

DEC 20 12:12:06: %DUAL-5-NBRCHANGE: IP-EIGRP 1:
Neighbor 10.1.4.3 (Serial0) is down: stuck in active
DEC 20 12:15:23: %DUAL-3-SIA:
Route 10.1.2.0/24 stuck-in-active state in IP-EIGRP 1.
Cleaning up
R3’s retry timer for R4 expires.

Note: This event prevents R3 from also reporting a DUAL-3-SIA error because R3’s SIA timer may also be about to reach 3 minutes.

R3 clears its neighbor adjacency with R4.

R3 reports the following error to its log:

DEC 20 12:12:01: %DUAL-5-NBRCHANGE: IP-EIGRP 1:
Neighbor 10.1.5.4 (Serial1) is down: retry limit exceeded
R3 now replies to R2’s query with an unreachable message.

R4 reports the following error to its log:

DEC 20 12:12:06: %DUAL-5-NBRCHANGE: IP-EIGRP 1:
Neighbor 10.1.5.3 (Serial0) is down: peer restarted
Note: The DUAL-5-NBRCHANGE messages will only be displayed if you have configured the eigrp log-neighbor-changes command under the EIGRP process. Configuring this command on all EIGRP routers is recommended for troubleshooting EIGRP SIA problems. Without it, there is no way to tell why EIGRP neighbors are being reset or which router reset the adjacency.

As you can see above, the DUAL-3-SIA error is caused by the following concurrent, yet unrelated, problems:

An interface problem between R1 and R2, which causes the 10.1.2.0/24 route to disappear from R2. The route flap may have been caused by something other than an actual link failure (for instance, a remote user disconnected and the PPP-derived host route is then removed).

An interface, congestion, or delay problem between R3 and R4.

When the SIA error message occurs, it indicates that the EIGRP routing protocol failed to converge for the specified route. Usually, this failure is caused by a flapping interface, a configuration change, or dialup clients (the route loss is normal). The routing to other destinations is not affected while the EIGRP process is in active state for the specified route. When the SIA timer for the neighbor that did not reply expires, the neighbor is cleared (EIGRP does not trust the state of a neighbor that exceeds the timer). As a consequence, routes in the topology table beyond that neighbor are cleared and must then re-converge. This means that the forwarding table can be effected by an SIA, and that packets can be dropped while the network is converging.

Is This Answer Correct ?    8 Yes 1 No

What is SIA (Stuck in Active) in EIGRP?..

Answer / gurulingappa patil

Routes will become Stuck-in-Active (SIA) when a router sends out a Query
packet, but does not receive a Reply packet within three minutes.

Is This Answer Correct ?    1 Yes 0 No

What is SIA (Stuck in Active) in EIGRP?..

Answer / pandit

in eigrp, when a router lost their succesor and feasible successor then router sends out queries to neighboring routers to recompute a new route If the router does not receive a reply to all outstanding queries within 3 minutes, this state of process is called stuck-in-active state.

Is This Answer Correct ?    1 Yes 1 No

What is SIA (Stuck in Active) in EIGRP?..

Answer / lijo

SIA means once a router lost a network (a topology change)
it sends a query message to all eigrp enabled interfaces.
I the neighbor devices have another connections and it does
not respond to the query.
In this situation the router 1 wait for 3 minutes

It is called SIA

Is This Answer Correct ?    5 Yes 15 No

Post New Answer

More CCNA Interview Questions

Identify 3 characteristics regarding CDP? A.) On by default B.) Shows only directly connected neighbors C.) Requires IP or IPX D.) 60 second update interval by default E.) 30 second updates interval by default

1 Answers  


Identify the command to configure DLCI 100 on an interface e0? A.) Router(config)# frame-relay local-dlci 100 B.) Router(config)# frame-relay local-dlci 100 int e0 C.) Router(config-if)# frame-relay local-dlci 100 D.) Router(config-if)# frame-relay local-dlci 100 int e0

1 Answers  


What is point-to-point protocol in ccna?

0 Answers  


Which command we give if router ios stucked?

0 Answers  


Identify 3 feature of access-lists? A.) Implicit deny will deny any packets not matched B.) Processed sequentially from bottom to top C.) Processed sequentially from top to bottom D.) If a packet is denied it would be tested against the remaining statements in the access-list E.) Once a match is made the packet is either denied or permitted F.) Enabled on all interfaces by default

1 Answers  






Difference between Distance vector, Link state protocols

3 Answers   HCL,


hi friend i am sending some interview question which is asked from me at volvo hope this will help you of all 1 what is mpls al question is posted by jitendera kumar sinha

0 Answers   ALU, TATA, Volvo, Wipro,


What command would you use to find out the names of Novell servers on a network? A. show ipx servers B. show ipx hosts C. show ipx sap D. show ipx nodes.

1 Answers  


Which Distance Vector characteristic can help to speed up convergence? A.) Triggered Updates. B.) Split Horizon. C.) Poison Reverse. D.) Hold Down timers. E.) Inverse ARP.

1 Answers  


Which command, that is used to test address configuration, uses Time-To-Live (TTL) values to generate messages from each router. A. trace B. ping C. telnet D. bootp

1 Answers  


FastEthernet compares to 10baseT Ethernet in which of the following ways

1 Answers  


hi im ccna certified im searching 4 job in networking domain can any guide wats the rite way of job approach ,wat r the rite sites for searching job im eagerly 4 ur replies

1 Answers  


Categories