run "sudo make"
[ssh-dyndns.git] / README.rst
1 **********
2 ssh-dyndns
3 **********
4 Update DNS records by simply SSH'ing into a server.
5
6 The idea is to create a separate "dyndns" user on the DNS server.
7 It gets the ``ssh-dyndns`` script as login shell, so that no other programs
8 may be executed.
9 SSH provides secure, password-less key-based authentication.
10
11 Upon login, the remote IP is used to create/update a tinydns file with the
12 DNS record for a hostname given by the SSH client.
13
14 tinydns is part of the dbjdns/dbndns package.
15
16
17 =====
18 Setup
19 =====
20
21 1. Clone ssh-dyndns into a sensible location, e.g. ``/usr/local/src/ssh-dyndns``::
22
23     $ cd /usr/local/src/ && git clone git://git.cweiske.de/ssh-dyndns.git
24
25 2. Create a user with ``ssh-dyndns`` as login shell::
26
27     $ useradd -g nogroup -m -N -s /usr/local/src/ssh-dyndns dyndns
28
29 3. Setup password-less ssh keys for the dyndns user::
30
31     $ su - dyndns -s /bin/bash
32     $ mkdir ~/.ssh
33     $ cat /path/to/key.pub >> ~/.ssh/authorized_keys
34
35 4. Prevent showing login messages::
36
37     $ su - dyndns -s /bin/bash
38     $ touch ~/.hushlogin
39
40    Alternatively, you may commend out the "motd" lines in ``/etc/pam.d/sshd``
41 5. Configure ssh-dyndns as root::
42
43     $ cp /usr/local/src/ssh-dyndns/ssh-dyndns.sh.config-dist /etc/ssh-dyndns.sh
44     $ nano /etc/ssh-dyndns.sh
45
46 6. Allow ssh-dyndns to run "sudo make" without password
47
48    FIXME
49
50
51 Configuration
52 =============
53 The configuration file template ``ssh-dyndns.sh.config-dist`` may be copied
54 to either ``/etc/ssh-dyndns.sh`` or ``~/.config/ssh-dyndns.sh``.
55
56 The system-wide config file is loaded first, the user-specific one after that.
57
58 The configuration file may define the following variables:
59
60 ``data_dir``
61     Path to the tinydns zone files, e.g. ``/etc/tinydns/root/``
62 ``file_pattern``
63     File name template. ``%DOMAIN%`` will be replaced with the actual
64     domain name.
65
66     Default: ``data-dyndns-%DOMAIN%``
67 ``timeout``
68     DNS entry TTL (time to live) in seconds
69
70     Default: 300
71 ``domain_patterns``
72     Defines patterns for domains that may be dynamically changed.
73     If the domain name does not match the pattern, the script aborts.
74
75     You may use several patterns by separating them with a space.
76     Shell wildcards are supported (``*`` and ``?``).
77
78     Default: ``home.example.org *.home.example.org``
79
80
81 =====
82 Usage
83 =====
84 Simply ssh into the server and pass the hostname as parameter::
85
86     $ ssh dyndns@example.org home.example.org
87
88 This will start the ``ssh-dyndns`` script on the remote server, generate
89 the tinydns zone file and run ``make`` in the ``data_dir`` directory to
90 compile the ``data.cdb`` file.
91 tinydns will automatically pick up the change.
92
93
94 ====
95 Bugs
96 ====
97 - IPv6 is not supported yet
98
99
100 =======
101 License
102 =======
103 ssh-dyndns is licensed under the `AGPL v3`__ or later.
104
105 __ http://www.gnu.org/licenses/agpl.html
106
107
108 ======
109 Author
110 ======
111 Written by Christian Weiske, cweiske@cweiske.de