Shell Script Example to Add Multiple IP Addresses to an FQDN
- Last Updated: December 11, 2024
- 1 minute read
- LoadMaster
- LoadMaster LTSF
- Documentation
The following example adds multiple IP addresses to an FQDN:
for var in "${@:5}"do curl -k "https://$2:$3@$1/access/addmap?fqdn=$4&ip=$var"done