A pure java API for Infoblox DNS appliance.
Download the latest JAR or grab via Maven:
<dependency>
<groupId>com.oneops</groupId>
<artifactId>infoblox-java</artifactId>
<version>1.2.0</version>
</dependency>
InfobloxClient client = InfobloxClient.builder()
.endPoint("Infoblox Host")
.userName("Infoblox User")
.password("Infoblox Password")
.tlsVerify(false)
.build();
- For TLS verification, set the CA truststore using trustStore() & trustStorePassword() methods.
- Truststore should be of type PKCS#12 format.
- For loading the Truststore from classpath use,
classpath:/<your/truststore/path>.p12
- To enable http debugging for troubleshooting, set .debug(true) to the InfobloxClient.builder()
String fqdn = "test.xyz.com";
String ip = "10.11.12.13";
// CRUD operations
ARec aRec = client.createARec(fqdn, ip);
List<ARec> rec = client.getARec(fqdn);
List<ARec> aRecs = client.getARec(fqdn, ip);
List<ARec> modifedARec = client.modifyARec(fqdn, newFqdn);
List<String> delARec = client.deleteARec(fqdn);
String fqdn = "test.xyz.com";
String ipv6 = "fe80:0:0:0:f0ea:f6ff:fd97:5d51";
// CRUD operations
AAAA newAAAARec = client.createAAAARec(fqdn, ipv6);
List<AAAA> aaaaRec = client.getAAAARec(fqdn);
List<AAAA> modAAAARec = client.modifyAAAARec(fqdn, newFqdn);
List<String> delAAAARec = client.deleteAAAARec(fqdn);
String canonicalName = "test.xyz.com";
String alias = "app.xyz.com";
// CRUD operations
CNAME cname = client.createCNameRec(alias, canonicalName);
List<CNAME> rec = client.getCNameRec(alias);
List<CNAME> modCName = client.modifyCNameRec(alias, newAlias);
List<String> delCName = client.deleteCNameRec(alias);
Refer JavaDocs for all record types (MX, PTR, SRV, TXT etc) APIs
Set the following env variables and run ./mvnw clean test
to execute the unit tests.
export iba_host=<Infoblox Hostname>
export iba_user=<Infoblox Username>
export iba_password=<Infoblox Password>
export iba_domain=<Infoblox Zone>
- Add support for
SRV
,TXT
,PTR
,DNAME
records etc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.