Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Infoblox Dns Helperscripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
Infoblox Dns Helperscripts
Commits
82d0b513
Commit
82d0b513
authored
2 years ago
by
Hahn Axel (hahn)
Browse files
Options
Downloads
Patches
Plain Diff
update readme
parent
0d6fecc1
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+25
-9
25 additions, 9 deletions
README.md
with
25 additions
and
9 deletions
README.md
+
25
−
9
View file @
82d0b513
...
...
@@ -110,14 +110,6 @@ written to STDERR. To hide them add a 2>/dev/null to hide the comments.
[]
```
### dns-api.sh
Low level command to access the api. It is called from ./dns-search.sh too - but can be started manually for custom api urls.
`dns-api.sh [METHOD] URL`
This script is used by dns-search.sh ans show_ttls.sh.
### show_ttls.sh
This helper searches for all
**host**
entries that override the default
...
...
@@ -155,3 +147,27 @@ host2.example.com
Between the json data are lines starting with a semikolon - these are comments
written to STDERR. To hide them add a 2>/dev/null to hide the comments.
### dns-api.sh
This is a low level command to access the api.
This script is used by dns-search.sh ans show_ttls.sh.
But it can be started manually for custom api urls.
`dns-api.sh [METHOD] URL`
Example:
As an additional information for show_ttl.sh: how to get the default TTL?
```
txt
./dns-api.sh GET '/zone_auth?fqdn=example.com&_return_fields=soa_default_ttl,use_grid_zone_timer'
; === DNS API :: GET /zone_auth?fqdn=example.com&_return_fields=soa_default_ttl,use_grid_zone_timer
[
{
"_ref": "zone_auth/RFID:example.com/default",
"soa_default_ttl": 28800,
"use_grid_zone_timer": false
}
]
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment