Frames from different customers can have the same DLCI. With the 10 bit field, you can have a maximum of 1024 DLCIs per physical circuit. The combination of a physical interface/port and the DLCI ensures that the circuit is unique. Here is some sample cfg of a cisco router acting as a frame switch. The frame-relay route commands are doing layer two routing. They tell the frame switch "Hey, when you see DLCI XYZ on interface PDQ, send it to interface IOU and make it DLCI DFG". bb1#sh frame route Input Intf Input Dlci Output Intf Output Dlci Status Serial0/0 102 Serial0/1 201 inactive Serial0/1 201 Serial0/0 102 inactive bb1#sh run int s0/0 Building configuration... Current configuration : 189 bytes ! interface Serial0/0 description Connected to R1 no ip address encapsulation frame-relay clockrate 64000 frame-relay intf-type dce frame-relay route 102 interface Serial0/1 201 end bb1#sh run int s0/1 Building configuration... Current configuration : 236 bytes ! interface Serial0/1 description Connected to R2 no ip address encapsulation frame-relay clockrate 64000 frame-relay intf-type dce frame-relay route 201 interface Serial0/0 102 end In this config, each physical interface (circuit) has one DLCI. S0/0 is announcing dlci 201 and s0/1 is announcing dlci 102. Again, this is a sample frameswitch config -- no the near/far end router. In this config, I could have used the same DLCI number on both sides such as: bb1#sh frame route Input Intf Input Dlci Output Intf Output Dlci Status Serial0/0 18 Serial0/1 18 inactive Serial0/1 18 Serial0/0 18 inactive bb1#sh run int s0/0 Building configuration... Current configuration : 189 bytes ! interface Serial0/0 description Connected to R1 no ip address encapsulation frame-relay clockrate 64000 frame-relay intf-type dce frame-relay route 18 interface Serial0/1 18 end bb1#sh run int s0/1 Building configuration... Current configuration : 236 bytes ! interface Serial0/1 description Connected to R2 no ip address encapsulation frame-relay clockrate 64000 frame-relay intf-type dce frame-relay route 18 interface Serial0/0 18 end The combination of a the physical interface and the DLCI is what does the magic and makes it work.