Plesk has the disadvantage that everything is done through thedatabase. So we can’t just modify Bind’s Zone files.To add an A record of a subdomain you have to do the following:/usr/local/psa/bin/dns -a domain.tld -a subdomain -ip 127.0.0.1the first -a is for add to zone which is why it must specify the toplevel domen, the second is for A record, and must not contain the fulldomain only the subdomain. If you use the full domainsubdomain.domain.tld you will end up with a record likesubdomain.domain.tld.domain.tld because plesk does not allow you toterminate with a .. Thank you plesk for a shitty interface. The recordthis create’s looks likesubdomain.domain.tld. IN A 127.0.0.1To delete this record you would use the following/usr/local/psa/bin/dns -d domain.tld -a subdomain -ip 127.0.0.1you’ll note that it’s the exact same thing except you replace thefirst -a which is for add, with -d for delete.– This work by Caleb Cushing is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.