# Using eth.limo with IPFS (Kubo)

The most popular IPFS client, [Kubo](https://github.com/ipfs/go-ipfs) (formally go-ipfs) can be configured to use eth.limo DNS for native ENS resolution by running the following command:

```shell
$ ipfs config --json DNS.Resolvers '{"eth.": "https://dns.eth.limo/dns-query"}'
```

Verify that the changes have been saved:

```shell
$ cat ~/.ipfs/config | jq .DNS
{
  "Resolvers": {
    "eth.": "https://dns.eth.limo/dns-query"
  }
}

```

In order for the changes to take effect, you must restart the IPFS process.

ENS names must be prefixed with `/ipns/` in order to successfully resolve them:

```shell
$ ipfs resolve -r /ipns/vitalik.eth
/ipfs/QmUWvM2pXSMk8kFMDqDnskMnURePtayXUECMYfwUJYgbks
```


---

# 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://eth-limo.gitbook.io/documentation/intermediate/using-eth.limo-with-ipfs-kubo.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.
