The API would have to be called for each of the domains you want to add. Let's say you have a master server at IP 1.2.3.4 and four domains:
https://acc.rollernet.us/api/api.php?u= ... om|1.2.3.4
https://acc.rollernet.us/api/api.php?u= ... om|1.2.3.4
https://acc.rollernet.us/api/api.php?u= ... om|1.2.3.4
https://acc.rollernet.us/api/api.php?u= ... om|1.2.3.4
You'd have to call the API 4 times by hand, or somehow through a browser, but that's difficult if you have a lot of domains. If you have access to a Linux/BSD host with wget, you can use this bash-ism to loop through a text file containing one line per API URL you want to call:
Code: Select all
while read line; \
do wget -q -O /dev/null "${line}"; \
done < <(cat file.lst)
I don't know how to do this on Windows so easily, but if someone would like to contribute a script, they're welcome to do so. =)