@Alexd1985. Thank you for the reply.
I have now created and running topologyUpdater.sh and getting the following log, where 45.79.161.84 is the relay node.
cat logs/topologyUpdater_lastresult.json
{ “resultcode”: “502”, “datetime”:“2021-07-06 20:49:08”, “clientIp”: “2600:3c03::f03c:92ff:fe85:f859”, “msg”: “invalid blockNo ” }
{ “resultcode”: “201”, “datetime”:“2021-07-06 20:55:26”, “clientIp”: “2600:3c03::f03c:92ff:fe85:f859”, “iptype”: 6, “msg”: “nice to meet you” }
{ “resultcode”: “504”, “datetime”:“2021-07-06 21:33:02”, “clientIp”: “2600:3c03::f03c:92ff:fe85:f859”, “iptype”: 6, “msg”: “one request per hour please” }
{ “resultcode”: “203”, “datetime”:“2021-07-06 22:33:02”, “clientIp”: “2600:3c03::f03c:92ff:fe85:f859”, “iptype”: 6, “msg”: “welcome to the topology” }
{ “resultcode”: “403”, “datetime”:“2021-07-06 23:33:02”, “clientIp”: “2600:3c03::f03c:92ff:fe85:f859”, “iptype”: 6, “msg”: “glad you want to stay with us, but please ensure to make your request from your IPv4 address (use curl -4 ...
)” }
{ “resultcode”: “201”, “datetime”:“2021-07-07 00:33:05”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “nice to meet you” }
{ “resultcode”: “203”, “datetime”:“2021-07-07 01:33:04”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “welcome to the topology” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 02:33:06”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 03:33:07”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 04:33:06”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 05:33:02”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 06:33:02”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 07:33:01”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 08:33:02”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 09:33:04”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 10:33:02”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 11:33:03”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
{ “resultcode”: “204”, “datetime”:“2021-07-07 12:33:08”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “glad you’re staying with us” }
However, I am still not getting INbound connections.
Furthermore, when I run the following to update the topology file, I get ‘IP is not (yet) allowed to fetch this list’.
curl -s -4 “https://api.clio.one/htopology/v1/fetch/?max=20&customPeers=173.255.226.250:4332:1|relays-new.cardano-testnet.iohkdev.io:3001:2”
{ “resultcode”: “402”, “datetime”:“2021-07-07 13:01:49”, “clientIp”: “45.79.161.84”, “iptype”: 4, “msg”: “IP is not (yet) allowed to fetch this list”, “Producers”: [ { “addr”: “173.255.226.250”, “port”: 4332, “valency”: 1 } ,
{ “addr”: “relays-new.cardano-testnet.iohkdev.io”, “port”: 3001, “valency”: 2 } , { “addr”: “relays-new.cardano-mainnet.iohk.io”, “port”: 3001, “valency”: 2 } ] }
Thank you