From d982c4fd9e8b456f92ca06f155ca491e7768bf8f Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Mon, 11 Aug 2014 15:32:37 +0000 Subject: [PATCH] Builds a script that can be pasted into a Cisco terminal to import the ca certificate. The script must be started in enabled mode. After rebooting the LAP the importet cert is lost. FossilOrigin-Name: c4ae8fdbd8d929c8d72e0313eb986dfc9b02643475fc82e0c4d7561303da1be5 --- ssl/mkciscoimport.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 ssl/mkciscoimport.sh diff --git a/ssl/mkciscoimport.sh b/ssl/mkciscoimport.sh new file mode 100755 index 00000000..0c9a2bf6 --- /dev/null +++ b/ssl/mkciscoimport.sh @@ -0,0 +1,21 @@ +#!/bin/sh +echo clock set $(date "+%H:%M:%S %d %b %Y") +echo debug capwap console cli +echo configure terminal +echo crypto ca profile enrollment ACTube +echo authentication terminal +echo enrollment terminal +echo exit +echo crypto ca trustpoint ACTube +echo enrollment profile ACTube +echo revocation-check none +echo exit +echo crypto ca authenticate ACTube +cat root-ca.crt +echo +echo y +echo +echo exit +echo + +