internal/lglass.md
... ...
@@ -6,7 +6,24 @@ lglass is a Python software package designed for Internet Registries like the DN
6 6
7 7
lglass provides an event-based whois daemon with internal caching, which was written in Python. It is very simple to run an instance:
8 8
9
- $ ./bin/lglass-whoisd -D $PATH_TO_DATA_DIR -H $HOST -P $PORT
9
+ $ ./bin/lglass-whoisd -H $HOST -P $PORT
10
+
11
+.
12
+
13
+ usage: lglass-whoisd [-h] [-4] [-6] [--host HOST] [--port PORT]
14
+ [--cidr] [--no-cidr] [--inverse] [--no-inverse]
15
+
16
+ optional arguments:
17
+ -h, --help show this help message and exit
18
+ -4 Listen on IPv4
19
+ -6 Listen on IPv6
20
+ --host HOST, -H HOST Listen on host
21
+ --port PORT, -p PORT Listen on port
22
+ --cidr, -c Perform CIDR matching on queries
23
+ --no-cidr Do not perform CIDR matching on queries
24
+ --inverse, -i Perform inverse matching on queries
25
+ --no-inverse Do not perform inverse matching on queries
26
+
10 27
11 28
## Generate zone files
12 29