aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorrexxnor <rexxnor+gnunet@brief.li>2019-01-07 12:52:17 +0100
committerrexxnor <rexxnor+gnunet@brief.li>2019-01-24 23:45:02 +0100
commit17ab1cadb765bf6de88e2936abb460884e4aef53 (patch)
treecab088d8bca69281165251992bdd0175250d7de3 /README.md
parent499cda796e1bda84a4ddff60d78ae6448c9c2a71 (diff)
downloadascension-17ab1cadb765bf6de88e2936abb460884e4aef53.tar.gz
ascension-17ab1cadb765bf6de88e2936abb460884e4aef53.zip
renamed project to ascensionfix
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 14 insertions, 14 deletions
diff --git a/README.md b/README.md
index 3715d36..6ac54af 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
1# GNS Migrator 1# Ascension
2 2
3The main goal is to develop a tool to easily migrate existing DNS Zones to the 3The main goal is to develop a tool to easily migrate existing DNS Zones to the
4GNU Name System using (incremental) Zone Transfers. (AXFR/IXFR) 4GNU Name System using (incremental) Zone Transfers. (AXFR/IXFR)
5 5
6## How to install 6## How to install
7To install the gnsmigrator simply execute one of the following commands: 7To install the ascension simply execute one of the following commands:
8 8
9```bash 9```bash
10# System wide installation 10# System wide installation
@@ -25,20 +25,20 @@ python3 setup.py develop
25``` 25```
26 26
27## How to use 27## How to use
28If you have installed it, simply execute gnsmigrator with one of several options. 28If you have installed it, simply execute ascension with one of several options.
29You can also just run the file gnsmigrator.py itself directly. 29You can also just run the file ascension.py itself directly.
30 30
31Taken from the dosctring of the gnsmigrator.py file: 31Taken from the dosctring of the ascension.py file:
32``` 32```
33GNS Migrator 33Ascension
34 34
35Usage: 35Usage:
36 gnsmigrator.py <domain> [-d] 36 ascension.py <domain> [-d]
37 gnsmigrator.py <domain> -p <port> [-d] 37 ascension.py <domain> -p <port> [-d]
38 gnsmigrator.py <domain> -ns <transferns> [-d] 38 ascension.py <domain> -ns <transferns> [-d]
39 gnsmigrator.py <domain> -ns <transferns> -p <port> [-d] 39 ascension.py <domain> -ns <transferns> -p <port> [-d]
40 gnsmigrator.py -h | --help 40 ascension.py -h | --help
41 gnsmigrator.py -v | --version 41 ascension.py -v | --version
42 42
43Options: 43Options:
44 <port> Port for zone transfer 44 <port> Port for zone transfer
@@ -52,7 +52,7 @@ Options:
52Example use: 52Example use:
53``` 53```
54# Transfers the sy TLD from ns1.tld.sy. 54# Transfers the sy TLD from ns1.tld.sy.
55gnsmigrator sy -ns ns1.tld.sy. 55ascension sy -ns ns1.tld.sy.
56# Transfers the nu TLD from zonedata.iis.se with debug options enabled 56# Transfers the nu TLD from zonedata.iis.se with debug options enabled
57gnsmigrator nu -ns zonedata.iis.se. -d 57ascension nu -ns zonedata.iis.se. -d
58``` 58```