knotctl/README.md

210 lines
6.1 KiB
Markdown
Raw Normal View History

2022-10-24 09:10:09 +00:00
# knotctl
2022-10-25 08:44:19 +02:00
This is a commandline tool for knotapi: https://gitlab.nic.cz/knot/knot-dns-rest
2022-10-24 13:28:51 +02:00
2022-10-25 08:44:19 +02:00
## Build and install
2024-06-27 11:26:12 +02:00
To install using pip, run the following command in a virtual envrionment.
2022-10-25 08:44:19 +02:00
```
2024-06-27 11:26:12 +02:00
python -m pip install "knotctl @ git+https://code.smolnet.org/micke/knotctl
2022-10-25 08:44:19 +02:00
```
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
To build and install as a deb-package
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
```
sudo apt install python3-stdeb
2022-10-25 08:44:19 +02:00
git clone https://code.smolnet.org/micke/knotctl
cd knotctl
python3 setup.py --command-packages=stdeb.command bdist_deb
2022-11-10 12:53:44 +00:00
sudo dpkg -i deb_dist/knotctl_*_all.deb
2022-10-25 08:44:19 +02:00
```
2022-10-25 09:10:39 +00:00
A prebuilt deb-package is also available from the release page: https://code.smolnet.org/micke/knotctl/releases/
2022-10-25 08:44:19 +02:00
## Shell completion
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
For bash: add this to .bashrc
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
```
source <(knotctl completion)
2022-10-25 08:44:19 +02:00
```
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
For fish, run:
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
```
knotctl completion --shell fish > ~/.config/fish/completions/knotctl.fish
2022-10-25 08:44:19 +02:00
```
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
For tcsh: add this to .cshrc
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
```
complete "knotctl" 'p@*@`python-argcomplete-tcsh "knotctl"`@' ;
```
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
For zsh: add this to .zshrc
2024-06-27 11:26:12 +02:00
2022-10-25 08:44:19 +02:00
```
autoload -U bashcompinit
bashcompinit
source <(knotctl completion)
2022-10-25 08:44:19 +02:00
```
2022-10-24 13:28:51 +02:00
## Usage
2024-06-27 11:26:12 +02:00
2022-10-24 13:28:51 +02:00
```
usage: knotctl [-h] [--json | --no-json] {add,completion,config,delete,list,update} ...
Manage DNS records with knot dns rest api:
* https://gitlab.nic.cz/knot/knot-dns-rest
2022-10-24 17:55:33 +02:00
positional arguments:
{add,completion,config,delete,list,update}
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
--json, --no-json
The Domain Name System specifies a database of information
elements for network resources. The types of information
elements are categorized and organized with a list of DNS
record types, the resource records (RRs). Each record has a
name, a type, an expiration time (time to live), and
type-specific data.
The following is a list of terms used in this program:
----------------------------------------------------------------
| Vocabulary | Description |
----------------------------------------------------------------
| zone | A DNS zone is a specific portion of the DNS |
| | namespace in the Domain Name System (DNS), |
| | which a specific organization or administrator |
| | manages. |
----------------------------------------------------------------
| name | In the Internet, a domain name is a string that |
| | identifies a realm of administrative autonomy, |
| | authority or control. Domain names are often |
| | used to identify services provided through the |
| | Internet, such as websites, email services and |
| | more. |
----------------------------------------------------------------
| rtype | A record type indicates the format of the data |
| | and it gives a hint of its intended use. For |
| | example, the A record is used to translate from |
| | a domain name to an IPv4 address, the NS record |
| | lists which name servers can answer lookups on |
| | a DNS zone, and the MX record specifies the |
| | mail server used to handle mail for a domain |
| | specified in an e-mail address. |
----------------------------------------------------------------
| data | A records data is of type-specific relevance, |
| | such as the IP address for address records, or |
| | the priority and hostname for MX records. |
----------------------------------------------------------------
This information was compiled from Wikipedia:
* https://en.wikipedia.org/wiki/DNS_zone
* https://en.wikipedia.org/wiki/Domain_Name_System
* https://en.wikipedia.org/wiki/Zone_file
2022-10-24 13:28:51 +02:00
```
2024-06-27 11:26:12 +02:00
2022-10-24 17:55:33 +02:00
### ADD
2024-06-27 11:26:12 +02:00
2022-10-24 13:28:51 +02:00
```
2022-11-10 12:50:18 +01:00
usage: knotctl add [-h] -d DATA -n NAME -r RTYPE [-t TTL] -z ZONE
2022-10-24 17:55:33 +02:00
Add a new record to the zone.
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
-d DATA, --data DATA
-n NAME, --name NAME
-r RTYPE, --rtype RTYPE
-t TTL, --ttl TTL
-z ZONE, --zone ZONE
2022-10-24 13:28:51 +02:00
```
2024-06-27 11:26:12 +02:00
### COMPLETION
2024-06-27 11:26:12 +02:00
2022-10-24 19:13:24 +02:00
```
usage: knotctl completion [-h] [-s SHELL]
2022-10-24 19:13:24 +02:00
Generate shell completion script.
2022-10-24 19:13:24 +02:00
options:
-h, --help show this help message and exit
-s SHELL, --shell SHELL
```
2024-06-27 11:26:12 +02:00
2022-10-24 17:55:33 +02:00
### CONFIG
2024-06-27 11:26:12 +02:00
2022-10-24 13:28:51 +02:00
```
usage: knotctl config [-h] [-b BASEURL] [-c CONTEXT] [-p PASSWORD] [-u USERNAME]
Configure access to knot-dns-rest-api.
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
-b BASEURL, --baseurl BASEURL
-c CONTEXT, --context CONTEXT
2022-10-24 17:55:33 +02:00
-p PASSWORD, --password PASSWORD
-u USERNAME, --username USERNAME
2022-10-24 13:28:51 +02:00
```
2024-06-27 11:26:12 +02:00
2022-10-24 17:55:33 +02:00
### DELETE
2024-06-27 11:26:12 +02:00
2022-10-24 13:28:51 +02:00
```
2022-10-24 17:55:33 +02:00
usage: knotctl delete [-h] [-d DATA] [-n NAME] [-r RTYPE] -z ZONE
Delete a record from the zone.
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
-d DATA, --data DATA
-n NAME, --name NAME
-r RTYPE, --rtype RTYPE
-z ZONE, --zone ZONE
2022-10-24 13:28:51 +02:00
```
2024-06-27 11:26:12 +02:00
2022-10-24 17:55:33 +02:00
### LIST
2024-06-27 11:26:12 +02:00
2022-10-24 13:28:51 +02:00
```
usage: knotctl list [-h] [-d DATA] [-n NAME] [-r RTYPE] -z ZONE
List records in the zone.
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
-d DATA, --data DATA
-n NAME, --name NAME
-r RTYPE, --rtype RTYPE
-z ZONE, --zone ZONE
2022-10-24 13:28:51 +02:00
```
2024-06-27 11:26:12 +02:00
2022-10-24 17:55:33 +02:00
### UPDATE
2024-06-27 11:26:12 +02:00
2022-10-24 13:28:51 +02:00
```
2022-10-27 15:51:08 +02:00
usage: knotctl update [-h] -a [ARGUMENT ...] -d DATA -n NAME -r RTYPE [-t TTL]
-z ZONE
Update a record in the zone. The record must exist in the zone.
In this case --data, --name, --rtype and --ttl switches are used
for searching for the appropriate record, while the --argument
switches are used for updating the record.
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
-a [KEY=VALUE ...], --argument [KEY=VALUE ...]
2022-10-27 15:51:08 +02:00
Specify key - value pairs to be updated:
name=dns1.example.com. or data=127.0.0.1 for example.
--argument can be repeated
2022-10-24 17:55:33 +02:00
-d DATA, --data DATA
-n NAME, --name NAME
-r RTYPE, --rtype RTYPE
-t TTL, --ttl TTL
-z ZONE, --zone ZONE
Available arguments are:
data: New record data.
name: New record domain name.
rtype: New record type.
ttl: New record time to live (TTL).
2022-10-24 13:28:51 +02:00
```