# Sync Fast

## Find and choose enode

Choose enode near your local node: <https://validators.game.autonity.org/d/iaqkN61Vk/validators?orgId=1&refresh=30m>

## Config peer

Change: <mark style="color:red;">enode://e241431e49c1223fd90c2bba0e921bbd07cedc47465\@x.x.x.x:30303</mark>

```
configpeer=enode://2439c1223fd90c2bba0e921bbd07cedc47465@x.x.x.x:30303
```

Restart node with new peer

```
cd  $HOME

sudo systemctl stop autonityd
sudo systemctl disable autonityd
rm -rf /etc/systemd/system/autonityd.service

cd  $HOME

your_ip="$(curl ifconfig.me)"
sudo tee /etc/systemd/system/autonityd.service > /dev/null << EOF
[Unit]
Description=Autonityd Node
After=network-online.target
StartLimitIntervalSec=0
[Service]
User=$USER
Restart=always
RestartSec=3
LimitNOFILE=65535
ExecStart=autonity \
    --datadir ${HOME}/autonity-client/autonity-chaindata  \
    --piccadilly  \
    --http  \
    --http.addr 0.0.0.0 \
    --http.api aut,eth,net,txpool,web3,admin  \
    --http.vhosts \* \
    --ws  \
    --ws.addr 0.0.0.0 \
    --ws.api aut,eth,net,txpool,web3,admin  \
    --nat extip:$your_ip \
    --bootnodes $configpeer

[Install]
WantedBy=multi-user.target
EOF

sudo systemctl daemon-reload
sudo systemctl enable autonityd
sudo systemctl restart autonityd
sudo journalctl -u autonityd -f -o cat
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://services.nodesync.top/testnet-running/autonity/sync-fast.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
