etc/config.sh, etc/hosts: Add satellite network.
[ssh-ca] / etc / config.sh
CommitLineData
a91e8fcb
MW
1### -*-sh-*-
2###
3### Configuration for ssh-ca.
4
5###--------------------------------------------------------------------------
6### General configuration.
7
8## General configuration defaults.
9keytypes="rsa:3072 dsa:1024"
10domain="distorted.org.uk"
11cacomment="ssh-ca@$domain"
a29775ac 12validity="-1h:+2d1h"
91c09d0a 13publish_target="stratocaster.distorted.org.uk:/var/www/ssh-ca/"
a91e8fcb
MW
14
15## GnuPG defaults.
16gnupg_key_type=RSA gnupg_key_length=3072
17gnupg_key_realname_prefix="distorted.org.uk "
18gnupg_key_email_domain="$domain"
19
20###--------------------------------------------------------------------------
21### Scope for the CA.
22
23## Domain name.
9a4c2b58 24scope="*.$domain,*.binswood.org.uk"
a91e8fcb
MW
25
26## IPv4 addresses.
27for i in 144 145 146 147 148 149; do scope=$scope,"62.49.204.$i"; done
28scope=$scope,"62.49.204.15?"
e03e9b8e
MW
29for i in 198 199; do scope=$scope,"172.29.$i.*"; done
30scope=$scope,"212.13.198.69,212.13.198.7?"
9a4c2b58 31scope=$scope,"10.165.27.*"
a91e8fcb
MW
32
33## IPv6 addresses.
e03e9b8e
MW
34scope=$scope,"2001:470:1f08:1b98::2,2001:470:1f09:1b98:*"
35scope=$scope,"2001:470:9740:*"
36scope=$scope,"2001:ba8:0:1d9:*,2001:ba8:1d9:*"
a91e8fcb
MW
37
38###----- That's all, folks --------------------------------------------------