diff --git a/README.md b/README.md index 985aab2..e8f86f1 100644 --- a/README.md +++ b/README.md @@ -261,7 +261,7 @@ generate actually are visible to RPs, to monitor the full cycle. ``` $ ./rtrmon \ -primary.host tcp://rtr.rpki.cloudflare.com:8282 \ - -secondary.host https://console.rpki-client.org/vrps.json \ + -secondary.host https://console.rpki-client.org/rpki.json \ -secondary.refresh 30s \ -primary.refresh 30s ``` @@ -321,7 +321,7 @@ Use your own validator, as long as the JSON source follows the following schema: ``` * **Third-party JSON formatted VRP exports:** - * [console.rpki-client.org](https://console.rpki-client.org/vrps.json) (default, based on OpenBSD's `rpki-client`) + * [console.rpki-client.org](https://console.rpki-client.org/rpki.json) (default, based on OpenBSD's `rpki-client`) * [NTT](https://rpki.gin.ntt.net/api/export.json) (based on OpenBSD's `rpki-client`) By default, the session ID will be randomly generated. The serial will start at zero. diff --git a/cmd/stayrtr/stayrtr.go b/cmd/stayrtr/stayrtr.go index f36b502..d53e666 100644 --- a/cmd/stayrtr/stayrtr.go +++ b/cmd/stayrtr/stayrtr.go @@ -77,7 +77,7 @@ var ( TimeCheck = flag.Bool("checktime", true, "Check if JSON file isn't stale (disable by passing -checktime=false)") - CacheBin = flag.String("cache", "https://console.rpki-client.org/vrps.json", "URL of the cached JSON data") + CacheBin = flag.String("cache", "https://console.rpki-client.org/rpki.json", "URL of the Validated RPKI data in JSON format") Etag = flag.Bool("etag", true, "Control usage of Etag header (disable with -etag=false)") LastModified = flag.Bool("last.modified", true, "Control usage of Last-Modified header (disable with -last.modified=false)")