davenull wrote: » the key is the 'frame-relay route' command. What it says is "if I receive DLCI 403 on this interface, I'll switch it to interface Serial4/1 and I'll retag it as DLCI 304". It's that simple.
TWX wrote: » Maybe I'll set up one of my routers as a Frame Relay Switch and play with that. Might be easier.
TWX wrote: » I'm reviewing Data Link Connection Identifier and Frame Relay, and if I understand it correctly, DLCI as an L2 concept does not identify nodes, it identifies links, ie, between the customer equipment and first hop to the ISP. Since at Layer 2 it's literally a point-to-point connection there is no need to identify the host at the opposite end of the link.... Where Ethernet allows for multiple nodes on a given collision domain... Frame Relay does not need most of those mechanisms.
davenull wrote: » Frame Relay becomes much easier to understand once you see the configuration of a Frame Relay Switch. There's no magic involved, really: SW#show running-config Building configuration... <output omitted> ! hostname SW ! <output omitted> ! frame-relay switching ! interface Serial4/1 no ip address encapsulation frame-relay clockrate 64000 frame-relay intf-type dce frame-relay route 304 interface Serial4/3 403 ! interface Serial4/3 no ip address encapsulation frame-relay clockrate 64000 frame-relay intf-type dce frame-relay route 403 interface Serial4/1 304 the key is the 'frame-relay route' command. What it says is "if I receive DLCI 403 on this interface, I'll switch it to interface Serial4/1 and I'll retag it as DLCI 304". It's that simple. And yes, like others mentioned, IP addresses are irrelevant because Frame Relay is a layer 2 protocol.
Mooseboost wrote: » Setting it up all the way through for me was the best way to learn it.