diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-07-04 21:40:25 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-07-04 21:40:25 +0200 |
commit | d9cdab9249c885b7e5eac50e74ceddbda58dd8d0 (patch) | |
tree | 0ff088fa5d314bf8fa022917a33013c1c5db9230 /testing | |
parent | 956759533ff1488c251af55081db3c29daf34dab (diff) | |
download | strongswan-d9cdab9249c885b7e5eac50e74ceddbda58dd8d0.tar.bz2 strongswan-d9cdab9249c885b7e5eac50e74ceddbda58dd8d0.tar.xz |
added ITA Scanner IMC/IMV pair which detects open server ports on TNC clients
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 10 | ||||
-rwxr-xr-x | testing/testing.conf | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 03ef748fc..75fe5c69f 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -227,6 +227,16 @@ then echo -n " --enable-imv-test" >> $INSTALLSHELL fi +if [ "$USE_IMC_SCANNER" = "yes" ] +then + echo -n " --enable-imc-scanner" >> $INSTALLSHELL +fi + +if [ "$USE_IMV_SCANNER" = "yes" ] +then + echo -n " --enable-imv-scanner" >> $INSTALLSHELL +fi + if [ "$USE_SQL" = "yes" ] then echo -n " --enable-sql --enable-sqlite" >> $INSTALLSHELL diff --git a/testing/testing.conf b/testing/testing.conf index 075f43cf1..aff92bdd7 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -53,6 +53,8 @@ USE_TNCCS_20="yes" USE_TNCCS_DYNAMIC="yes" USE_IMC_TEST="yes" USE_IMV_TEST="yes" +USE_IMC_SCANNER="yes" +USE_IMV_SCANNER="yes" USE_SQL="yes" USE_MEDIATION="yes" USE_OPENSSL="yes" |