Change ipsecctrl Tunnel up and down.

This commit is contained in:
Arne Fitzenreiter
2010-04-22 07:41:28 +02:00
parent 525793ac7d
commit 331699d576
2 changed files with 7 additions and 16 deletions

View File

@@ -62,7 +62,6 @@
* cacti-0.8.7e
* calamaris-2.59
* capi4k-utils-2005-07-18
* ccache-2.4
* ccache-3.0pre0
* cdrtools-2.01.01
* centerim-4.22.1

View File

@@ -138,33 +138,25 @@ int decode_line (char *s,
void turn_connection_on (char *name, char *type) {
char command[STRING_SIZE];
safe_system("/usr/sbin/ipsec whack --rereadsecrets >/dev/null");
safe_system("/usr/sbin/ipsec whack --rereadall >/dev/null");
memset(command, 0, STRING_SIZE);
snprintf(command, STRING_SIZE - 1,
"/usr/sbin/ipsec auto --replace %s >/dev/null", name);
"/usr/sbin/ipsec down %s >/dev/null", name);
safe_system(command);
memset(command, 0, STRING_SIZE);
snprintf(command, STRING_SIZE - 1,
"/usr/sbin/ipsec up %s >/dev/null", name);
safe_system(command);
if (strcmp(type, "net") == 0) {
memset(command, 0, STRING_SIZE);
snprintf(command, STRING_SIZE - 1,
"/usr/sbin/ipsec whack --asynchronous --name %s --initiate >/dev/null", name);
safe_system(command);
}
}
/*
issue ipsec commmands to turn off connection 'name'
*/
void turn_connection_off (char *name) {
char command[STRING_SIZE];
memset(command, 0, STRING_SIZE);
snprintf(command, STRING_SIZE - 1,
"/usr/sbin/ipsec whack --name %s --terminate >/dev/null", name);
"/usr/sbin/ipsec down %s >/dev/null", name);
safe_system(command);
memset(command, 0, STRING_SIZE);
snprintf(command, STRING_SIZE - 1,
"/usr/sbin/ipsec whack --delete --name %s >/dev/null", name);
safe_system(command);
safe_system("/usr/sbin/ipsec whack --rereadsecrets >/dev/null");
}