diff --git a/pages/builders/node-operators/configuration/consensus-config.mdx b/pages/builders/node-operators/configuration/consensus-config.mdx
index 577cb7a86..d437e4937 100644
--- a/pages/builders/node-operators/configuration/consensus-config.mdx
+++ b/pages/builders/node-operators/configuration/consensus-config.mdx
@@ -95,8 +95,8 @@ Address of L1 Beacon-node HTTP endpoint to use.
`--l1.beacon=`
- `--l1.beacon="127.0.0.1:3500"`
- `OP_NODE_L1_BEACON="127.0.0.1:3500"`
+ `--l1.beacon="http://127.0.0.1:3500"`
+ `OP_NODE_L1_BEACON="http://127.0.0.1:3500"`
### l1.beacon.fetch-all-sidecars
@@ -211,7 +211,7 @@ Trust the L1 RPC, sync faster at risk of malicious/buggy RPC providing bad or in
### l2
-Address of L2 Engine JSON-RPC endpoints to use (engine and eth namespace required).
+Address of L2 Engine JSON-RPC endpoints to use (engine and eth namespace required). This is referred to as `authrpc` by Geth and Reth.
`--l2=`
diff --git a/pages/builders/node-operators/tutorials/mainnet.mdx b/pages/builders/node-operators/tutorials/mainnet.mdx
index 820edbb08..1a71f40ed 100644
--- a/pages/builders/node-operators/tutorials/mainnet.mdx
+++ b/pages/builders/node-operators/tutorials/mainnet.mdx
@@ -126,9 +126,9 @@ Once you've started `op-geth`, you can start `op-node`.
Set the following environment variables:
```bash
- export L1_RPC_URL=... # URL for the L1 node to sync from
+ export L1_RPC_URL=... # URL for the L1 node to sync from. If your L1 RPC is a local node, the most common URL is http://127.0.0.1:8545
export L1_RPC_KIND=... # RPC type (alchemy, quicknode, infura, parity, nethermind, debug_geth, erigon, basic, any)
- export L1_BEACON_URL=... # URL address for the L1 Beacon-node HTTP endpoint to use.
+ export L1_BEACON_URL=... # URL address for the L1 Beacon-node HTTP endpoint to use. If your L1 Beacon is a local node, the most common URL is http://127.0.0.1:3500
```
{Start op-node
}
diff --git a/pages/builders/node-operators/tutorials/testnet.mdx b/pages/builders/node-operators/tutorials/testnet.mdx
index ba4dcf45a..4d97bf849 100644
--- a/pages/builders/node-operators/tutorials/testnet.mdx
+++ b/pages/builders/node-operators/tutorials/testnet.mdx
@@ -124,9 +124,9 @@ cp /path/to/jwt.txt .
Set the following environment variables:
```bash
-export L1_RPC_URL=... # URL for the L1 node to sync from
+export L1_RPC_URL=... # URL for the L1 node to sync from. If your L1 RPC is a local node, the most common URL is http://127.0.0.1:8545
export L1_RPC_KIND=... # RPC type (alchemy, quicknode, infura, parity, nethermind, debug_geth, erigon, basic, any)
-export L1_BEACON_URL=... # URL address for the L1 Beacon-node HTTP endpoint to use.
+export L1_BEACON_URL=... # URL address for the L1 Beacon-node HTTP endpoint to use. If your L1 Beacon is a local node, the most common URL is http://127.0.0.1:3500
```
{Start op-node
}