* fix indenting
[mirror/dsa-wiki.git] / input / howto / new-machine.creole
1 == setup/integrate a new machine ==
2
3 Note: this is partially obsolete now that we have [[puppet|howto/puppet-setup]].  We should probably update/rework some parts.
4
5 ** Warning: This procedure has not been tested since being moved to the wiki.  Beware. **
6
7 * install ssh if it isn't there already
8 {{{
9     apt-get install ssh
10 }}}
11
12 * make apt sane
13 {{{
14     echo 'Acquire::PDiffs "false";' > /etc/apt/apt.conf.d/local-pdiff
15     echo 'APT::Install-Recommends 0;' > /etc/apt/apt.conf.d/local-recommends
16 }}}
17
18 * sane locales:
19
20  make sure there is _no_ locale defined in /etc/environment and /etc/default/locale
21
22 {{{
23    echo "" > /etc/environment
24    echo "" > /etc/default/locale
25 }}}
26
27 * make debconf the same on every host: - dialog, - high
28 {{{
29     echo "debconf debconf/priority        select  high" | debconf-set-selections
30     echo "debconf debconf/frontend        select  Dialog" | debconf-set-selections
31 }}}
32
33 * add db.d.o to sources.list:
34 {{{
35     cat > /etc/apt/sources.list.d/debian.org.list << EOF
36 deb     http://db.debian.org/debian-admin lenny main
37 deb-src http://db.debian.org/debian-admin lenny main
38 EOF
39
40     apt-key add - << EOF
41 -----BEGIN PGP PUBLIC KEY BLOCK-----
42 Version: GnuPG v1.4.9 (GNU/Linux)
43
44 mQGiBEf4BP0RBACfXnRhBb9HKiA3h5A1tDnluVwfkSuDX4ZXdVAuMZapdOm8r9ug
45 9zE/dDGWPWja+DArAPZ/i3BFvlMewmden/IFbQKtXluQVIC4GL1RBMwrtWsZzo0g
46 picl3CYWDAYjRdg4WppUc9FawwGw081FlLGDv7eYRO3+8uGUHfr+SD7CwwCgxJK6
47 SvDX6M2Ifuq8WmgWWrVFyakD/ipdxd3NPIcnl1JTO2NjbOJYKpZMl6v0g+1OofSq
48 CAKTO8ymc0z6SF1j/4mWe1W76wvTpOhOUgn2WO7SQHZaujb/3z+yAJedfbCDgq0S
49 H/T2qbQTzv+woAjyR/e2Zpsc2DRfqO/8aCw1Jx8N3UbH9MBPYlYlyCnSra1OAyXW
50 VvC0A/9nT/k6VIFBF0Oq2WwmzOLptOqg61WrnxBr3GIe503++p88tOwlCJlL0uZZ
51 k68m3m5t7WDtQK4fHQwLramb9AqtBPhiEaXU5bXk77RYE54EeEH9Z4H4YSMMkdYU
52 gLG5CZI2jprxAZew1mHKROv+15jxYd+BZCrORmpWn5g7N+TC5rQeZGIuZGViaWFu
53 Lm9yZyBhcmNoaXZlIGtleSAyMDA4iGYEExECACYCGwMGCwkIBwMCBBUCCAMEFgID
54 AQIeAQIXgAUCSdlA9AUJA8JvcwAKCRC+p88QvSsO4AoeAJ0dY+rDwxNVR6HPs8JZ
55 xLceOYU/hgCeNW1KkOXrSt2Lv8PVWXnr5jHNZSo=
56 =4LFD
57 -----END PGP PUBLIC KEY BLOCK-----
58 EOF
59 }}}
60
61 * in /etc/ssh/sshd_config:
62 ** disable the DSA hostkey, so that it only does RSA
63 ** remove old host keys: <BR>{{{
64     cd /etc/ssh/ && rm ssh_host_dsa_key ssh_host_dsa_key.pub ssh_host_key ssh_host_key.pub
65 }}}
66 ** disable X11 forwarding
67 ** Tell it to use alternate authorized_keys locations
68 {{{
69     | HostKey /etc/ssh/ssh_host_rsa_key
70     | X11Forwarding no
71     | AuthorizedKeysFile /etc/ssh/userkeys/%u
72     | AuthorizedKeysFile2 /var/lib/misc/userkeys/%u
73
74     vi /etc/ssh/sshd_config
75     (cd / && env -i /etc/init.d/ssh restart)
76 }}}
77
78   * maybe link root's auth key there:
79 {{{
80     mkdir -p /etc/ssh/userkeys && ln -s /root/.ssh/authorized_keys /etc/ssh/userkeys/root
81 }}}
82
83
84 * install userdir-ldap
85 {{{
86     apt-get update && apt-get install userdir-ldap
87 }}}
88
89
90 * on draghi, add the host to /home/sshdist/.ssh/authorized_keys and generate.conf
91 (you want the host's rsa host key there: {{{cat /etc/ssh/ssh_host_rsa_key.pub}}})
92 {{{
93     : :: draghi :: && sudo vi /home/sshdist/.ssh/authorized_keys
94     : :: draghi :: && sudo vi /etc/userdir-ldap/generate.conf
95 }}}
96 * run generate, or wait until cron runs it for you
97 {{{
98     : :: draghi :: && sudo -u sshdist ud-generate
99 }}}
100
101 * fix nsswitch for ud fu.
102 {{{
103     sed -i -e 's/^passwd:\[[:space:]]\+compat$/passwd:         compat db/;
104               s/^group:\[[:space:]]\+compat$/group:          db compat/;
105               s/^shadow:\[[:space:]]\+compat$/shadow:         compat db/' \
106         /etc/nsswitch.conf
107 }}}
108
109 (you might have to restart sshd here:
110 {{{
111     (cd / && env -i /etc/init.d/ssh restart)
112 }}}
113 )
114
115 * on the host, run ud-replicate
116 {{{
117     echo draghi.debian.org,draghi,db.debian.org,db,82.195.75.106,::ffff:82.195.75.106 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAy1mAS0xIOZH9OrJZf1Wv9qYORv5Z5fmpF0o8Y4IMdS+ZzTjN1Sl8M77jaFTJbumJNs+n2CMcX8CoMemQEPBoRe20a5t3dExPQ3c7FNU0z+WIVFbu/oTTkAWGp5gCDwF3pg2QxUjqYc0X4jpv6pkisyvisij6V/VJ5G1hsIMuKqrCKYyyyiJJytfzSfRrBx2QvB5ZWQxhYeSYDoLDvuF31qUy4TLZ/HR3qZQ1cBrP9dCh5d+GQxdY9LuO6zjlnSyU64GHkyjYt3p03AKG4plD7WHX01bD0DQQ/NOFVwFhOZ63mePyridPuqBMFW39jBf4jSsewV95RE5VbY04+MY4XQ== root@draghi >> /etc/ssh/ssh_known_hosts &&
118     ud-replicate
119 }}}
120
121 * check if it worked:
122 {{{
123     id weasel
124 }}}
125
126 * add pam_mkhomedir to common-session:
127 {{{
128     grep pam_mkhomedir /etc/pam.d/common-session || \
129     echo "session optional        pam_mkhomedir.so skel=/etc/skel umask=0022" >> /etc/pam.d/common-session
130 }}}
131
132 * install debian.org which brings you shells and much other fun
133 {{{
134     apt-get install debian.org
135 }}}
136
137 * try to login using your user and ssh key.  you should get a homedir.
138
139 * make ca-certificates sane:  (choose to *not* trust new certs, and we only want the spi cert activated)
140 {{{
141     echo "ca-certificates ca-certificates/trust_new_crts  select  no" | debconf-set-selections
142     sed -i -e 's/^[^#!].*/!&/; s#^!spi-inc.org/spi-cacert-2008.crt#spi-inc.org/spi-cacert-2008.crt#' /etc/ca-certificates.conf
143     dpkg-reconfigure ca-certificates
144 }}}
145
146 * Add debian-admin@debian.org to root in /etc/aliases
147
148 * sane default editor
149 {{{
150     apt-get install vim && update-alternatives --set editor /usr/bin/vim.basic
151 }}}
152
153 * setup sudo
154 {{{
155     grep '^%adm' /etc/sudoers || echo '%adm    ALL=(ALL) ALL' >> /etc/sudoers
156     grep '^%adm.*apt-get' /etc/sudoers || echo '%adm    ALL=(ALL) NOPASSWD: /usr/bin/apt-get update, /usr/bin/apt-get dist-upgrade, /usr/bin/apt-get clean, /usr/sbin/samhain -t check -i -p err -s none -l none -m none' >> /etc/sudoers
157
158     apt-get install libpam-pwdfile
159     cat > /etc/pam.d/sudo << EOF
160 #%PAM-1.0
161
162 auth [authinfo_unavail=ignore success=done ignore=ignore default=die] pam_pwdfile.so pwdfile=/var/lib/misc/thishost/sudo-passwd
163 auth required pam_unix.so nullok_secure try_first_pass
164 #@include common-auth
165 @include common-account
166
167 session required pam_permit.so
168 session required pam_limits.so
169 EOF
170 }}}
171
172 * OPEN A NEW SHELL - DO _NOT_ LOG OUT OF THIS ONE:<BR>
173   test that the dedicated sudo password works.  if not, undo the pam sudo config.
174   (comment out the auth lines and include common-auth again)
175
176 * setup ldap.conf:
177 {{{
178     grep '^URI.*db.debian.org' /etc/ldap/ldap.conf || cat >> /etc/ldap/ldap.conf << EOF
179
180 URI             ldap://db.debian.org
181 BASE            dc=debian,dc=org
182
183 TLS_CACERT      /etc/ssl/certs/spi-cacert-2008.pem
184 TLS_REQCERT     hard
185 EOF
186 }}}
187
188 * add to munin on spohr
189 {{{
190     : :: spohr :: && sudo vi /etc/munin/munin.conf
191 }}}
192
193
194 * add host to nagios config
195
196 * disable password auth with ssh, once you verified you can log in
197   and become root using keys.
198 {{{
199     vi /etc/ssh/sshd_config
200       | PasswordAuthentication no
201     (cd / && env -i /etc/init.d/ssh restart)
202 }}}
203
204 * if it is a HP Proliant, or has other management fu, read [[howto/ilo-https]]
205
206 * setup [[puppet|howto/puppet-setup]]
207
208 * add to nagios
209
210 -- weasel, Wed, 04 Jun 2008 20:52:56 +0200