From 3497867cd2b6b86d352bceaaa361335f6fb5563e Mon Sep 17 00:00:00 2001 From: root Date: Fri, 8 Jan 2016 11:10:53 +0000 Subject: [PATCH 1/4] gitignore: add server binary --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index daf913b..273ca1d 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ _testmain.go *.exe *.test *.prof + +whois42d From 0767a370289e3ef0b894a1dbae6f2bdbbfd6e3f2 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 8 Jan 2016 11:11:12 +0000 Subject: [PATCH 2/4] add systemd unit files --- whois42d.service | 6 ++++++ whois42d.socket | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 whois42d.service create mode 100644 whois42d.socket diff --git a/whois42d.service b/whois42d.service new file mode 100644 index 0000000..65bce75 --- /dev/null +++ b/whois42d.service @@ -0,0 +1,6 @@ +[Unit] +Description=Whois dn42 daemon + +[Service] +ExecStart=/usr/local/bin/whois42d -registry /var/lib/whois42d/registry +User=nobody diff --git a/whois42d.socket b/whois42d.socket new file mode 100644 index 0000000..a983866 --- /dev/null +++ b/whois42d.socket @@ -0,0 +1,8 @@ +[Unit] +Description=Whois dn42 daemon socket + +[Socket] +ListenStream=43 + +[Install] +WantedBy=sockets.target From b9d7461e45cfb27484b81f1df89eb3e255b27869 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 8 Jan 2016 11:13:01 +0000 Subject: [PATCH 3/4] add todo list --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 208d2ea..b13e6cb 100644 --- a/README.md +++ b/README.md @@ -89,3 +89,8 @@ it run as user nobody, who cannot bind to port 43 itself. # route-set $ whois -h RS-DN42-NATIVE + +## TODO + +- [ ] Support for filtering +- [ ] Match multiple objects by inverse index From 4146fc60c0ccd8a36d1ae73f06f83c7d9f0ffaad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 8 Jan 2016 12:20:20 +0100 Subject: [PATCH 4/4] README.md: compact query types --- README.md | 60 ++++++++++++++----------------------------------------- 1 file changed, 15 insertions(+), 45 deletions(-) diff --git a/README.md b/README.md index b13e6cb..8aea9b4 100644 --- a/README.md +++ b/README.md @@ -43,52 +43,22 @@ it run as user nobody, who cannot bind to port 43 itself. ## Supported Queries - # mntner - $ whois -h HAX404-MNT +- mntner: `$ whois -h HAX404-MNT` +- person: `$ whois -h HAX404-DN42` +- aut-num: `$ whois -h AS4242420429` +- dns: `$ whois -h hax404.dn42` +- inetnum: `$ whois -h 172.23.136.0/23` or `$ whois -h 172.23.136.1` +- inet6num: `$ whois -h fd58:eb75:347d::/48` +- route: `$ whois -h 172.23.136.0/23` +- route6: `$ whois -h fdec:1:1:dead::/64` +- schema: `$ whois -h PERSON-SCHEMA` +- organisation: `$ whois -h ORG-C3D2` +- tinc-keyset: `$ whois -h SET-1-DN42-TINC` +- tinc-key: `$ whois -h AS4242422703` +- as-set: `$ whois -h 4242420000_4242423999` +- as-block: `$ whois -h AS-FREIFUNK` +- route-set: `$ whois -h RS-DN42-NATIVE` - # person - $ whois -h HAX404-DN42 - - # aut-num - $ whois -h AS4242420429 - - # dns - $ whois -h hax404.dn42 - - # inetnum - $ whois -h 172.23.136.0/23 - # or - $ whois -h 172.23.136.1 - - # inet6num - $ whois -h fd58:eb75:347d::/48 - - # route - $ whois -h 172.23.136.0/23 - - # route6 - $ whois -h fdec:1:1:dead::/64 - - # schema - $ whois -h PERSON-SCHEMA - - # organisation - $ whois -h ORG-C3D2 - - # tinc-keyset - $ whois -h SET-1-DN42-TINC - - # tinc-key - $ whois -h AS4242422703 - - # as-set - $ whois -h 4242420000_4242423999 - - # as-block - $ whois -h AS-FREIFUNK - - # route-set - $ whois -h RS-DN42-NATIVE ## TODO