A DLCI is used to identify a virtual circuit in the carrier's network. What is the range of num bers used for DLCIs, and which ones are reserved? Also, briefly describe how DLCIs are used in Frame Relay networks

What will be an ideal response?

The range of DLCIs used is 0 to 1023 . 0 to 16 and 991 to 1023 are reserved. LMI extensions
reserve DLCI 0 for ANSI and ITU and 1023 for Cisco. DLCIs are assigned to each virtual cir
cuit and are configured on the corresponding DTE device. When a router sends a frame to a
FRAD, the router checks the packet's destination IP address and determines which DLCI to use
from its Frame Relay map. It then uses that DLCI when sending the frame to the FRAd. The
FRAD switches the frame to the appropriate destination (or next hop in the Frame Relay cloud)
based on the DLCI supplied by the router.

Computer Science & Information Technology

You might also like to view...

ICMP flood attacks and Ping of Death attacks are an example of which of the following?

A) Viruses B) DoS attacks C) IP spoofing attacks D) Trojans

Computer Science & Information Technology

The CalcEnd procedure is passed four Integer variables named intBegin, intSales, intPurchases, and intEnding. The procedure should calculate the ending inventory using the beginning inventory, sales, and purchase amounts passed to the procedure. The result should be stored in the intEnding variable. Which of the following procedure headers is correct?

a. Private Sub CalcEnd(ByVal intB As Integer, ByVal intS As Integer, ByVal intP As Integer, ByRef intFinal As Integer) b. Private Sub CalcEnd(ByVal intB As Integer, ByVal intS As Integer, ByVal intP As Integer, ByVal intFinal As Integer) c. Private Sub CalcEnd(ByRef intB As Integer, ByRef intS As Integer, ByRef intP As Integer, ByVal intFinal As Integer) d. Private Sub CalcEnd(ByRef intB As Integer, ByRef intS As Integer, ByRef intP As Integer, ByRef intFinal As Integer)

Computer Science & Information Technology