Patch: wtls userguide
"Nikos Balkanas" <[email protected]>
| Newsgroups | gmane.comp.mobile.kannel.devel |
|---|---|
| Message-ID | <57B671735CD0451FAB984D06DE0B12B9@drwho> |
Hi Alex, A long overdue wtls section for the userguide. Adds another section for wtls and another Appendix for certificate generation. BR, Nikos
userguide.diff
(application/octet-stream, 4.2 KB)
Index: doc/userguide/userguide.xml =================================================================== --- doc/userguide/userguide.xml (revision 4912) +++ doc/userguide/userguide.xml (working copy) @@ -2235,7 +2235,68 @@ </chapter> +<chapter id="wtls"> +<title>Setting up wtls security</title> + <para>This chapter tells you how to set Kannel up to handle wtls traffic. + </para> + + <para>'wtls' group is optional and single. The prerequisites for this group + are to have defined a wapbox group, and a pair of SSL certificates + available. Instructions on how to create self-signed 1024-bit RSA + certificates are in Appendix B. + </para> + + + <para>The simplest working 'wtls' group looks like this: +<programlisting> +group = wtls +certificate-file = /etc/kannel/server.crt +privatekey-file = /etc/kannel/server.key +</programlisting> + + Can also be the same single combined pem file with both certificate and + privatekey parts. The complete variable list for the 'wtls' group is: + +<sect1> +<title>Wtls configuration</title> + <table frame="none"> + <title>Wtls Group Variables</title> + <tgroup cols="3"> + <thead> + <row> + <entry>Variable</entry> + <entry>Value</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row><entry><literal>group (m)</literal></entry> + <entry><literal>wtls</literal></entry> + <entry valign="bottom"> + This is mandatory variable + </entry></row> + + <row><entry><literal>certificate-file (m)</literal></entry> + <entry><literal>filename</literal></entry> + <entry valign="bottom"> + Public key SSL certificate. + </entry></row> + + <row><entry><literal>privatekey-file (m)</literal></entry> + <entry><literal>filename</literal></entry> + <entry valign="bottom"> + Private key SSL certificate. + </entry></row> + + <row><entry><literal>privatekey-password (o)</literal></entry> + <entry><literal>Phrase</literal></entry> + <entry valign="bottom"> + Optional. Needed only if private key was created with a passphrase. + </entry></row> +</sect1> +</chapter> + <chapter id="msisdn-provisioning"> <title>Setting up MSISDN provisioning for WAP gateway</title> @@ -8959,6 +9020,61 @@ </appendix> +<appendix id="certificates"> +<title>Certificate generation</title> + + <para>This appendix includes pertinent information about required SSL + certificate genaration, where needed. + </para> + +<sect1> + <title>Self-signed 1024-bit RSA SSL certificates using openssl</title> + <para> + <itemizedlist> + <listitem><para>1. Generate private key:</para> + <para><literal>openssl genrsa -des3 -out server.key 1024</literal> + </para> + <para>You will be asked for a passphrase.</para></listitem> + + <listitem><para>2. Generate a certificate request:</para> + <para><literal> + openssl req -new -key server.key -out server.csr + </literal></para> + <para>Several questions follow. At the end you may send server.csr + to a certificate authority, which in turn will sign it and + generate the certificate for you, or you can sign it yourself. + </para></listitem> + + <listitem><para>3. Remove passphrase from key:</para> + <para><literal>cp server.key server.key.org</literal> + </para> + <para><literal>openssl rsa -in server.key.org -out server.key + </literal></para> + <para><literal>rm server.key.org</literal></para> + </listitem> + + <listitem><para>4. Self-sign the certificate:</para> + <para>If you chose not to send the request to a Certificate + Authority, you will need to sign it yourself. This one is good + for 1 year:</para> + <para><literal>openssl x509 -req -days 365 -in server.csr -signkey + server.key -out server.crt</literal></para> + </listitem> + + <listitem><para>5. Move keys to desired location:</para> + <para><literal>mv server.crt /etc/kannel/public/server.crt</literal> + </para> + <para><literal>mv server.key /etc/kannel/private/server.key + </literal></para> + <para><literal>mv server.csr /etc/ianwap/private/ianwap.csr (key + request)</literal></para> + </listitem> + </itemizedlist> + </para> + <para>Update configuration accordingly</para> +</sect1> + +</appendix> <appendix> <title>Using the fake WAP sender</title>