1 Where is your repeater?

Pick the area your repeater covers. If you connected a companion node above, use its suggestion instead.

Click a dot for a local area, or a county for a county-wide scope. County lines are real boundaries; local areas are a community convention with no official shape, so they're marked as points.

or browse

Tick everywhere this repeater covers

How the region tree works

region def walks a chain: each token becomes a child of the one before it. So region def west nv sounev cla lasveg builds this, top to bottom:

*
└─ west          Western US
   └─ nv         Nevada
      └─ sounev  Southern Nevada
         └─ cla   Clark County
            └─ lasveg   Las Vegas

Your repeater now carries all five names. Traffic scoped prb stays in North County. Traffic scoped slo covers the whole county. Traffic scoped west reaches every repeater in the western US that follows this convention.

Region matching is per name, not per level β€” a repeater that only has slo and not cc will not forward cc-scoped traffic. That is why every node defines the whole chain from west down, even though it only physically sits in one spot.

region def arrived in firmware 1.16. Before that the same tree is built one name at a time with region put <name> [parent]. On 1.15 that is all you need β€” regions are flood-allowed as they're created. On 1.14 and older each one also needs an explicit region allowf <name>. Switch the firmware version above and you'll get the right form; the resulting tree is identical either way.

Things worth knowing