Index: /branches/rel_ag_9_4_5/ui/backend/sys_cmd.c
===================================================================
--- /branches/rel_ag_9_4_5/ui/backend/sys_cmd.c	(revision 20511)
+++ /branches/rel_ag_9_4_5/ui/backend/sys_cmd.c	(working copy)
@@ -2770,15 +2770,6 @@
 }
 
 const char *supported_ciphers[] = {
-    "aes128-cbc",
-    "3des-cbc",
-    "blowfish-cbc",
-    "cast128-cbc",
-    "arcfour128",
-    "arcfour256",
-    "arcfour",
-    "aes192-cbc",
-    "aes256-cbc",
     "aes128-ctr",
     "aes192-ctr",
     "aes256-ctr",
@@ -2802,7 +2793,8 @@
     char *token;
 
     if (ciphersuite == NULL || ciphersuite[0] == '\0') {
-        return 1;
+        ui_printf("cipher suite cannot be empty\n");
+        return 0;
     }
 
     strncpy(tmp, ciphersuite, sizeof(tmp));
Index: /branches/rel_ag_9_4_5/ui/generator/commands.pm
===================================================================
--- /branches/rel_ag_9_4_5/ui/generator/commands.pm	(revision 20511)
+++ /branches/rel_ag_9_4_5/ui/generator/commands.pm	(working copy)
@@ -18843,9 +18843,9 @@
 		function_args => [ {
 								type => "STRING",
 								name => "ciphersuite",
-								help_string => "Supported cipher suite. (aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128,arcfour256,arcfour,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr)",
-								optional => "YES",
-								default_value => "\"\"",
+								help_string => "Supported cipher suite. (aes128-ctr,aes192-ctr,aes256-ctr)",
+								optional => "NO",
+								default_value => "\"aes128-ctr,aes192-ctr,aes256-ctr\"",
 								length => ["0", "512"],
 								}, ],
 	},
