actube/ssl
7u83@mail.ru ad34954787 Changed days to days/10
FossilOrigin-Name: f3e5531615f44c27f85ae218462f9b11c387bef255abedf38f9c52fd9e80a400
2015-01-03 21:18:01 +00:00
..
README Spelling ... 2014-08-18 06:05:56 +00:00
mkcerts.sh Played around with different startdate and enddate. 2014-08-11 15:31:04 +00:00
mkciscoimport.sh Builds a script that can be pasted into a Cisco terminal to import the ca certificate. 2014-08-11 15:32:37 +00:00
mkclean.sh Initial commit 2015-01-03 19:41:06 +00:00
mkrootca.sh Changed days to days/10 2015-01-03 21:18:01 +00:00
openssl.cnf Changed hash algorithm to md5 so an cisco IOS 12.3-image can import certificate. 2014-08-10 10:21:03 +00:00

README

Create ssl certificates to test AC-Tube and it's WTP
====================================================

1. Create a root CA by executing: 

   ./mkrootca

   This creates the files root-ca.crt and root-ca.key.


2. Create client certificates for AC and WTP

   ./mkcerts

   This will create the files ac.key, ac.crt and  wtp.crt, wtp.key. 
   All .key files are protected with  the password you have chosen 
   in the certificate creation process. 

3. Put these entries into  ac.conf  located in  the    ac directory, 
   so AC-Tube wilil use the certificates:

   ssl_key=../../ssl/ac.key
   ssl_key_pass=your password 
   ssl_cert=../../ssl/ac.crt

   For WTP the certiciate's config entries for now are hard-coded.
   Now you can play around joining WTP to AC...

4. If you want to connect a Cisco 1130 series LAP to  AC-Tube you 
   have to install the CA file on the LAP. Therofore you can create 
   a terminal script by  executing:

   ./mkciscoimport.sh 	

   Paste the result into a terminal session when in enabled mode. 

   To ac.conf add the following entry:
   
   dtls_verify_peer = no

   Now your Cisco 1130 LAP will join to AC-Tube. Remember that the 
   Cisco LAP will lose the installed  certificate after rebooting. 


If you experience with other Cisco LAPs (e.g. 1141), please tell me.
7u83@mail.ru.