Courseiva

CCNA IS IS Questions

55 questions · IS IS · All types, answers revealed

1
MCQmedium

How do you configure an interface to be point-to-point when using IS-IS?

A.set protocols isis interface-type point-to-point
B.set interfaces <name> unit 0 family iso point-to-point
C.set protocols isis link-type p2p
D.set protocols isis interface <name> point-to-point
AnswerD

This is the correct Junos CLI path.

Why this answer

You use the 'set protocols isis interface <name> point-to-point' command to force point-to-point mode.

2
MCQmedium

An administrator is configuring a new point-to-point link between two Junos routers running IS-IS. By default, how does IS-IS handle adjacency establishment on a point-to-point link compared to a broadcast link?

A.It uses a 3-way handshake TLV in IIH packets and bypasses the DIS election process entirely.
B.It relies strictly on CSNPs sent every 10 seconds to establish the adjacency.
C.It requires manual mapping of neighbor system IDs using static ARP bindings.
D.It initiates a DIS election using priority values identical to broadcast segments.
AnswerA

Point-to-point links do not require a DIS. They use the 3-way handshake mechanism to ensure reliable adjacency formation.

Why this answer

On point-to-point links, IS-IS uses the 3-way handshake extension (RFC 5303) via IIH packets to verify bidirectional connectivity without holding a DIS election.

3
Multi-Selecthard

Which factors influence the DIS election on a broadcast link? (Choose TWO)

Select 2 answers
A.System ID
B.SNPA (MAC) address
C.Interface priority
D.Area Address
E.LSP sequence number
AnswersB, C

Secondary tie-breaker.

Why this answer

The DIS is determined by the configured priority and, as a tie-breaker, the SNPA (MAC) address.

4
MCQmedium

What happens if you have an area address mismatch in a Level 1 adjacency?

A.The adjacency will fail to form.
B.The DIS will override the mismatch.
C.The adjacency will form but no routes will be exchanged.
D.The router will automatically adopt the neighbor's area address.
AnswerA

Area address matching is a hard requirement for L1.

Why this answer

Level 1 adjacencies require the routers to share at least one area address.

5
MCQeasy

What is the purpose of the 'lsp-generation-interval'?

A.To limit the frequency of LSP updates.
B.To set the hello interval.
C.To define the authentication key rotation.
D.To set the time for database aging.
AnswerA

It prevents excessive updates during flapping.

Why this answer

This command controls how frequently the router generates a new LSP following a topology change.

6
Multi-Selectmedium

Which of the following are true regarding the IS-IS 'hello-interval'? (Choose TWO)

Select 2 answers
A.It is used to calculate the SPF interval.
B.It determines how often Hello PDUs are sent.
C.It is always 10 seconds.
D.It affects the adjacency hold time.
E.It is only used on point-to-point links.
AnswersB, D

This defines the timer.

Why this answer

The hello-interval controls how often Hellos are sent and directly impacts how quickly an adjacency times out.

7
MCQeasy

During an audit of an IS-IS routing network, an engineer examines the Type-Length-Value (TLV) structures used in IS-IS PDUs. Which TLV is specifically responsible for carrying IPv4 internal and external reachability information when using wide metrics?

A.TLV 135
B.TLV 128
C.TLV 1
D.TLV 2
AnswerA

TLV 135 carries extended IP reachability information, supporting wide metrics and sub-TLV attributes.

Why this answer

In IS-IS, TLV 135 (Extended IP Reachability) is used to carry IPv4 prefixes when wide metrics are enabled, replacing the older narrow metric TLV 128.

8
MCQmedium

Which TLV is used to carry IP prefixes in IS-IS?

A.TLV 128
B.TLV 10
C.TLV 22
D.TLV 1
AnswerA

TLV 128 (IP Reachability) carries prefix info.

Why this answer

TLV 128 and 135 are used for IP reachability information.

9
MCQeasy

During the examination of IS-IS packet captures on a multi-access LAN interface, an engineer notices a specific PDU type being transmitted periodically by the Designated Intermediate System (DIS) to maintain synchronized link-state databases. Which PDU type performs this function?

A.Partial Sequence Numbers PDU (PSNP)
B.Complete Sequence Numbers PDU (CSNP)
C.Intermediate System Hello (IIH)
D.Level 1 Link State PDU (LSP)
AnswerB

CSNPs contain the complete list of all LSPs in the router's database and are sent periodically by the DIS on broadcast networks.

Why this answer

The Complete Sequence Numbers PDU (CSNP) is sent periodically by the DIS on a multi-access network to list all the link-state database entries present on the router, ensuring all routers maintain database synchronization.

10
MCQhard

You want to influence the path selection for IS-IS traffic. You decide to change the metric. Which TLV is used to carry wide metrics?

A.TLV 135
B.TLV 22
C.TLV 2
D.TLV 128
AnswerB

TLV 22 is the standard for extended (wide) metrics.

Why this answer

TLV 22 (Extended IS Reachability) is used to carry wide metrics in IS-IS.

11
Multi-Selectmedium

Which of the following are true regarding IS-IS authentication? (Choose TWO)

Select 2 answers
A.It is mandatory for all IS-IS deployments.
B.It can only be configured for the entire area.
C.It secures the PDUs exchanged between neighbors.
D.It can be configured per interface.
E.It encrypts the entire link traffic.
AnswersC, D

This is the primary benefit.

Why this answer

Authentication can be applied to PDUs (Hello/LSP/SNP) and can be configured globally or per interface.

12
MCQeasy

Which command is used to verify the IS-IS adjacency state on a Junos device?

A.show isis interface
B.show isis database
C.show isis adjacency
D.show protocols isis neighbors
AnswerC

This is the correct operational command.

Why this answer

The 'show isis adjacency' command provides the current status of IS-IS neighbors.

13
MCQeasy

You have two routers connected via a point-to-point link. You need to ensure they form an IS-IS adjacency. Which configuration is required?

A.Configure a DIS priority on the interface.
B.Configure the interface as point-to-point and enable IS-IS on both routers.
C.Disable the wide-metrics setting on both ends.
D.Configure a unique System ID for both routers.
AnswerB

Point-to-point links do not require a DIS election and form adjacencies simply by being enabled.

Why this answer

On point-to-point links, IS-IS will form an adjacency regardless of the level match, provided the interface is enabled in the correct protocol hierarchy.

14
MCQmedium

You have a Level 1/Level 2 router connecting two areas. How does it advertise itself to Level 1 routers?

A.It requires a manual default-route configuration on all L1 routers.
B.It floods the entire Level 2 LSDB into the Level 1 area.
C.It sends a specific inter-area TLV to all neighbors.
D.It advertises a default route using the ATT bit.
AnswerD

The ATT (Attached) bit is used to signal the presence of an inter-area path.

Why this answer

A Level 1/2 router sets the ATT bit in its Level 1 LSPs, signaling to Level 1 routers that it is an exit point to other areas.

15
Multi-Selectmedium

Which of the following are valid IS-IS interface types? (Choose TWO)

Select 2 answers
A.mesh
B.star
C.point-to-point
D.broadcast
E.passive
AnswersC, D

Standard for serial/P2P media.

Why this answer

Junos supports both broadcast and point-to-point interface types for IS-IS.

16
MCQhard

You are configuring multi-topology IS-IS. What does this allow?

A.Load balancing over different physical paths.
B.Creating multiple areas within a single instance.
C.Increasing the maximum MTU.
D.Running separate topologies for different address families.
AnswerD

This is the core purpose of multi-topology.

Why this answer

Multi-topology IS-IS allows for separate routing topologies for different protocol families (e.g., IPv4 and IPv6).

17
MCQmedium

How does a router determine its System ID?

A.It is learned via ARP.
B.It is automatically derived from the MAC address.
C.It is manually configured.
D.It is assigned by the DIS.
AnswerC

The administrator defines this value.

Why this answer

The System ID is manually configured in the 'set protocols isis system-id' hierarchy.

18
MCQmedium

What does the 'show isis statistics' command reveal?

A.The number of received and transmitted PDUs.
B.The current SPF calculation time.
C.The database size in bytes.
D.The adjacency hold-time.
AnswerA

It shows PDU counts by type.

Why this answer

This command displays the number of PDUs sent and received by the IS-IS process.

19
MCQeasy

Which command allows you to view the IS-IS database summary?

A.show isis statistics
B.show isis database
C.show isis route
D.show isis summary
AnswerB

This displays the contents of the database.

Why this answer

The 'show isis database' command shows the LSPs currently in the database.

20
MCQmedium

What happens if you have an LSP with an expired lifetime?

A.The router immediately crashes.
B.The LSP is flooded to all neighbors.
C.The LSP is removed from the LSDB.
D.The router re-elects a new DIS.
AnswerC

Expired LSPs are flushed from the database.

Why this answer

When an LSP's remaining lifetime reaches zero, it is purged from the database after a short period.

21
Multi-Selecthard

Which actions occur during an IS-IS SPF calculation? (Choose THREE)

Select 3 answers
A.Generating new IIH packets.
B.Calculating the shortest path to each destination.
C.Updating the IP routing table (RIB).
D.Building a Shortest Path Tree from the LSDB.
E.Re-electing the DIS.
AnswersB, C, D

Core SPF step.

Why this answer

SPF involves building a tree from the LSDB, calculating the shortest path, and updating the RIB.

22
Multi-Selecthard

Which THREE statements are true regarding the Designated Intermediate System (DIS) election and its operational differences compared to OSPF's Designated Router (DR) election? (Choose three)

Select 3 answers
A.The IS-IS DIS election is non-preemptive; if a router with a higher priority comes online later, it does not take over until the current DIS fails or is restarted.
B.In the event of a priority tie during DIS election, the router with the higher interface MAC address (or higher system ID depending on media) wins the tie-breaker.
C.IS-IS DIS election requires all routers on the segment to have identical area addresses regardless of whether they are Level 1 or Level 2.
D.Unlike OSPF, IS-IS does not have a separate Backup Designated Router (BDR) role; instead, routers keep track of priorities for a backup DIS implicitly.
E.The DIS is responsible for flooding individual LSPs using unicast packets exclusively to all neighbors.
AnswersA, B, D

DIS election is strictly non-preemptive to maintain network stability.

Why this answer

IS-IS DIS election is non-preemptive (unlike OSPF, which is also non-preemptive by default unless changed, but IS-IS never preempts even if a higher priority router joins later), supports backup DIS implicitly via priority, and uses higher priority and then higher MAC address as a tie-breaker.

23
MCQmedium

What is the effect of changing the reference bandwidth in IS-IS?

A.It has no effect on IS-IS.
B.It automatically recalculates all interface metrics.
C.It increases the hello interval.
D.It forces all links to use narrow metrics.
AnswerA

IS-IS relies on explicit metric configuration, not reference bandwidth.

Why this answer

IS-IS does not have a reference bandwidth concept like OSPF; metrics are configured manually or via interface cost.

24
Multi-Selectmedium

What are valid ways to configure IS-IS on a Junos interface? (Choose TWO)

Select 2 answers
A.set interfaces ge-0/0/0.0 protocols isis
B.set protocols isis interface ge-0/0/0.0
C.set routing-options isis interface ge-0/0/0.0
D.set interfaces ge-0/0/0.0 isis enable
E.set protocols isis enable ge-0/0/0.0
AnswersA, B

Alternative valid path.

Why this answer

You can enable IS-IS under the 'protocols isis interface' hierarchy or by adding the interface to the hierarchy directly.

25
MCQmedium

Why would you set an interface to 'passive' in IS-IS?

A.To speed up the DIS election process.
B.To force the interface to be a point-to-point link.
C.To enable authentication on that interface.
D.To include the network in the LSP without forming an adjacency.
AnswerD

This is the primary purpose of passive interfaces.

Why this answer

Setting an interface to passive allows the router to advertise the network as reachable without attempting to form an adjacency on that interface.

26
MCQhard

An engineer needs to influence the DIS election on a multi-access broadcast segment running IS-IS on Junos devices. Which configuration parameter and hierarchy should the engineer modify to guarantee a specific router wins the DIS election?

A.Configure 'set protocols isis reference-bandwidth <value>' globally.
B.Configure 'set protocols isis lsp-interval <value>' to speed up PDU transmission.
C.Configure 'set protocols isis interface <name> priority <value>' where a higher value wins.
D.Configure 'set protocols isis level <1|2> metric <value>' to lower the interface cost.
AnswerC

The DIS priority ranges from 0 to 127, with the default being 64. The router with the highest priority is elected DIS.

Why this answer

DIS priority in Junos IS-IS is configured under the interface hierarchy using 'set protocols isis interface <interface-name> priority <value>'. Higher priority wins; default is 64, max is 127.

27
MCQmedium

You observe that an IS-IS adjacency is stuck in 'Initializing'. What is the most likely cause?

A.The system IDs are identical.
B.The interface level is set to Level 1, but the neighbor has no Level 1 area address match.
C.The interface is configured as point-to-point.
D.The MTU size is too small on one link.
AnswerB

Area address mismatch prevents the Level 1 adjacency from fully establishing.

Why this answer

An 'Initializing' state indicates that one side sees the other, but the other side does not see the first, often due to mismatched area addresses or authentication.

28
Multi-Selecthard

What are the consequences of a mismatch in metric style (narrow vs wide) between IS-IS neighbors? (Choose THREE)

Select 3 answers
A.Partial reachability issues.
B.SPF calculation fails to find all paths.
C.The routers crash immediately.
D.Adjacency may form, but routes will not be accepted.
E.The DIS election will fail.
AnswersA, B, D

Networks are not properly advertised.

Why this answer

Metric mismatch prevents the exchange of reachability info, leads to partial SPF calculation failure, and results in broken reachability.

29
MCQeasy

Which level is enabled by default in Junos when configuring IS-IS on an interface?

A.None
B.Level 2 only
C.Level 1 only
D.Level 1 and Level 2
AnswerD

Both levels are enabled by default.

Why this answer

By default, interfaces in Junos IS-IS are enabled for both Level 1 and Level 2.

30
MCQmedium

What is the default behavior when an IS-IS router receives an LSP it already has?

A.It always floods it to all neighbors.
B.It restarts the SPF calculation immediately.
C.It requests the LSP from the source again.
D.It discards the LSP if the sequence number is lower.
AnswerD

The protocol ensures only the most recent information is kept.

Why this answer

If the sequence number is the same, the router discards it. If newer, it updates; if older, it sends a copy of the newer one back to the sender.

31
MCQmedium

In a multi-access network, which PDU is responsible for the DIS election?

A.CSNP
B.LSP
C.IIH PDU
D.PSNP
AnswerC

IIH PDUs carry the priority information for DIS election.

Why this answer

The IIH (IS-IS Hello) PDU contains the priority field used for DIS election on broadcast segments.

32
MCQhard

You are troubleshooting a DIS election issue on a broadcast segment. What is the tie-breaker if the DIS priorities are equal?

A.The lowest System ID.
B.The lowest MAC address.
C.The highest MAC address.
D.The highest System ID.
AnswerC

The highest SNPA (MAC address) is the secondary tie-breaker.

Why this answer

If DIS priorities are equal, the router with the highest Subnetwork Point of Attachment (SNPA) address (usually the MAC address) wins.

33
Multi-Selectmedium

Which of the following are true regarding IS-IS Level 1/Level 2 routers? (Choose TWO)

Select 2 answers
A.They maintain both a Level 1 and a Level 2 database.
B.They set the ATT bit in their Level 1 LSPs.
C.They are always the DIS for the segment.
D.They only form Level 1 adjacencies.
E.They do not perform SPF calculations.
AnswersA, B

Required for inter-area routing.

Why this answer

L1/L2 routers act as bridges between areas and must maintain both databases.

34
Multi-Selectmedium

Which of the following scenarios would prevent an IS-IS adjacency from forming? (Choose TWO)

Select 2 answers
A.Mismatched authentication passwords
B.Incompatible area address (for L1)
C.Different MTU settings
D.Mismatched interface description
E.Mismatched hostname
AnswersA, B

This causes authentication failure.

Why this answer

Adjacencies fail if authentication keys don't match or if the area address is incompatible (for Level 1).

35
Multi-Selecteasy

Which TWO characteristics describe the behavior and properties of Level 1 and Level 2 routing in IS-IS? (Choose two)

Select 2 answers
A.Level 1 routers are strictly prohibited from connecting to Level 2 routers under any circumstances.
B.Level 1 routing requires the explicit configuration of a designated Area 0 backbone.
C.Level 2 routers form the backbone and can route traffic between different IS-IS areas.
D.Level 2 routers do not support wide metrics and only operate with narrow metrics.
E.Level 1 areas use intra-area routing and require all routers within the same area to share a common area address.
AnswersC, E

Level 2 routing constitutes the backbone, connecting different areas together.

Why this answer

Level 1 areas are responsible for intra-area routing, similar to OSPF non-backbone areas. Level 2 routers form the backbone network and route between different areas.

36
MCQeasy

Which of the following is a valid IS-IS PDU type?

A.Routing Update PDU
B.Database Description PDU
C.Link State PDU
D.Hello PDU
AnswerC

LSP is a valid PDU type.

Why this answer

IIH, LSP, CSNP, and PSNP are the four standard IS-IS PDU types.

37
MCQhard

How does an IS-IS router identify the DIS in its hello packets?

A.By a special flag in the header.
B.By the area address.
C.By the MAC address only.
D.By the router's System ID followed by a non-zero pseudonode ID.
AnswerD

The pseudonode ID makes the DIS unique for that segment.

Why this answer

The DIS is identified by the System ID and a pseudonode number (the 7th byte of the LSP ID).

38
MCQhard

You are observing that your IS-IS routers are not synchronizing their databases. You check the CSNP settings. What is the role of the CSNP on a broadcast segment?

A.To acknowledge individual LSPs.
B.To initiate the DIS election.
C.To request specific missing LSPs.
D.To provide a summary of the entire database to neighbors.
AnswerD

CSNPs summarize the database to maintain synchronization.

Why this answer

CSNPs (Complete Sequence Number PDUs) are sent by the DIS to ensure all routers have the same Link State Database.

39
Multi-Selecthard

Which of the following are valid ways to influence path selection in IS-IS? (Choose THREE)

Select 3 answers
A.Modifying interface cost
B.Configuring an export policy
C.Changing the area address
D.Using wide metrics
E.Changing the System ID
AnswersA, B, D

Directly influences path metric.

Why this answer

You can influence paths by modifying the interface cost, using wide metrics, or using policies to adjust metrics during redistribution.

40
Multi-Selecthard

Which of the following are true about CSNP and PSNP? (Choose THREE)

Select 3 answers
A.PSNPs are used to acknowledge LSPs.
B.CSNPs are used only by Level 1 routers.
C.PSNPs are used for partial updates.
D.CSNPs are used to request missing LSPs.
E.CSNPs are sent periodically by the DIS.
AnswersA, C, E

Used for specific ACK.

Why this answer

CSNPs are sent periodically by the DIS to ensure database consistency; PSNPs are used to request/ack specific missing LSPs.

41
MCQeasy

Which of the following is required for two routers to form a Level 2 adjacency?

A.Identical hostname configurations.
B.Matching Level 2 support.
C.Matching Area Addresses.
D.Identical System IDs.
AnswerB

Both routers must be configured to support Level 2.

Why this answer

For Level 2 adjacencies, the interfaces must be in the same level (or both be L1/L2) and share the same network segment.

42
MCQhard

When should you consider increasing the 'csnp-interval'?

A.To improve convergence time.
B.To increase the maximum LSP size.
C.To fix adjacency flapping.
D.To reduce control traffic overhead on slow links.
AnswerD

It optimizes bandwidth usage.

Why this answer

Increasing the interval is useful on slow or congested links to reduce the frequency of full database synchronization traffic.

43
MCQeasy

Which command displays the IS-IS interface parameters?

A.show isis configuration
B.show interfaces isis
C.show isis interface
D.show protocols isis interface
AnswerC

This command shows interface-specific IS-IS details.

Why this answer

'show isis interface' shows the configuration and state of IS-IS interfaces.

44
Multi-Selectmedium

Which of the following are valid IS-IS PDU types? (Choose THREE)

Select 3 answers
A.IIH PDU
B.LSP PDU
C.CSNP PDU
D.Hello ACK PDU
E.Routing Update PDU
AnswersA, B, C

Used for hello and adjacency.

Why this answer

The four PDU types are IIH, LSP, CSNP, and PSNP.

45
MCQmedium

A network engineer wants to verify IS-IS link-state database entries, specifically checking for TLVs that carry extended IP reachability information with wide metrics. Which Junos operational command should be used?

A.show isis adjacency extensive
B.show isis database detail
C.show ospf database
D.show route protocols isis
AnswerB

The 'show isis database detail' command provides granular output regarding LSPs, including extended IP reachability TLVs and wide metric values.

Why this answer

To view the IS-IS link-state database with detailed TLV and metric information on Junos devices, the command 'show isis database detail' is used.

46
MCQeasy

What is the default IS-IS metric for an interface in Junos?

A.1
B.10
C.0
D.100
AnswerB

10 is the default value.

Why this answer

The default IS-IS metric in Junos is 10.

47
Multi-Selectmedium

An engineer is troubleshooting IS-IS adjacency formation failures on a Junos device. Which THREE parameters must match or be compatible between neighboring routers to successfully establish an IS-IS adjacency? (Choose three)

Select 3 answers
A.Link-level MTU size, as oversized IIH packets may be dropped if they exceed the interface MTU.
B.Area addresses (at least one shared area address for Level 1 adjacencies)
C.Identical system IDs configured on both neighboring nodes
D.Authentication type and password (if authentication is enabled)
E.Identical DIS priority values on multi-access networks
AnswersA, B, D

If the MTU is mismatched and padding causes IIH packets to exceed the smaller MTU, adjacency formation will fail.

Why this answer

IS-IS adjacencies require matching area addresses (for Level 1), compatible link/network types, and correct authentication settings if configured. System IDs must be unique, and maximum transmission unit (MTU) mismatches can prevent IIH packet processing.

48
MCQhard

When using authentication in IS-IS, where can you apply the password?

A.At both the interface and global levels.
B.Only on the loopback interface.
C.Only at the global level.
D.Only at the interface level.
AnswerA

Junos allows authentication at either level.

Why this answer

IS-IS authentication can be applied to the interface level or the global level (area/domain).

49
Multi-Selecthard

Which of the following are true about pseudonode LSPs? (Choose THREE)

Select 3 answers
A.They are used in point-to-point links.
B.They represent the broadcast segment in the LSDB.
C.They are generated by the DIS.
D.They reduce the number of adjacencies tracked.
E.They are flooded by all routers.
AnswersB, C, D

This is their purpose.

Why this answer

Pseudonode LSPs are generated by the DIS, represent the broadcast segment, and effectively reduce the number of LSPs in the LSDB.

50
MCQhard

You need to redistribute OSPF routes into IS-IS. Where do you configure this?

A.Under the 'protocols isis export' hierarchy.
B.Under the OSPF configuration only.
C.It is not possible to redistribute OSPF into IS-IS.
D.Under the interface level.
AnswerA

This is where the export policy is applied.

Why this answer

Redistribution is configured under the 'policy-options' and applied under 'protocols isis export'.

51
MCQmedium

What is the function of the DIS in an IS-IS broadcast network?

A.To authenticate all neighbors.
B.To generate pseudonode LSPs.
C.To perform path calculation for all routers.
D.To act as the routing controller for the area.
AnswerB

This reduces the number of LSPs needed in the database.

Why this answer

The DIS (Designated Intermediate System) is responsible for generating pseudonode LSPs to represent the broadcast network.

52
MCQmedium

An engineer needs to configure a Junos device to operate in an IS-IS routing domain where the router should connect both Level 1 and Level 2 areas, forming a boundary between them. Which configuration command under the [edit protocols isis interface] hierarchy correctly enables dual-level operations on the interface?

A.set level 1-2 wide-metrics-only
B.set border-router level 1-2
C.set area-type l1-l2
D.set routing-level both
AnswerA

The command 'set level 1-2 wide-metrics-only' correctly enables both Level 1 and Level 2 operations on the interface and enforces the use of wide metrics.

Why this answer

To enable a Junos router interface to participate in both Level 1 and Level 2 IS-IS routing, you configure the level statement under the interface with 'level 1/2 wide-metrics-only' or specify the levels. By default, interfaces are configured for level 1 and level 2.

53
MCQhard

What is the purpose of the 'lsp-lifetime' command?

A.To define how often the DIS sends Hellos.
B.To set the duration for which an LSP is valid.
C.To limit the number of LSPs in the database.
D.To set how long the adjacency stays up.
AnswerB

This defines the expiration period.

Why this answer

The 'lsp-lifetime' command sets the duration after which an LSP is considered invalid if not refreshed.

54
MCQhard

A network administrator troubleshooting an IS-IS adjacency issue notices that two routers are failing to form an adjacency over a point-to-point link. One router has wide metrics enabled globally, while the other router has wide metrics disabled and only supports narrow metrics. Which parameter or feature must be matching or handled for IS-IS link-state PDUs to be successfully processed between these neighbors?

A.The DIS priority must be manually set to identical non-zero values on a point-to-point link.
B.The area addresses configured on both routers must be completely distinct from one another.
C.The metric-style configuration must be compatible (such as enabling wide metrics on both sides or using transition modes) to ensure LSAs containing TLVs 128/130 or 22/135 are understood.
D.The manual system ID must be identical across both routing nodes.
AnswerC

IS-IS uses different TLVs for narrow metrics (TLVs 128 and 130) versus wide metrics (TLVs 22 and 135). Mismatched metric styles prevent proper route calculation and database synchronization.

Why this answer

IS-IS supports narrow metrics (default in older implementations, max weight 63 per link) and wide metrics (supporting up to 2^24-1). If metric styles do not match or if compatibility modes (such as traffic-engineering metrics or metric-style transition settings) are not configured, routers may experience issues exchanging reachability, although point-to-point adjacencies can technically form, routing tables will not converge correctly without metric style alignment or wide-metrics configuration.

55
Multi-Selectmedium

Which of the following are true about IS-IS Level-1 and Level-2 areas? (Choose TWO)

Select 2 answers
A.Level 2 is for connecting Level 1 areas.
B.Level 1 and Level 2 are the same thing.
C.Level 1 routers can communicate directly with routers in other areas.
D.Level 2 is for local interface management only.
E.Level 1 is for intra-area routing.
AnswersA, E

Correct definition.

Why this answer

Level 1 areas are for intra-area routing, while Level 2 areas connect multiple Level 1 areas.

Ready to test yourself?

Try a timed practice session using only IS IS questions.