added tcpdumpcount function from NATT guys

added possibility to mount the strongswan tree into all UMLs
added script for installing from shared tree in all UMLs
added script to shut down all UMLs properly
This commit is contained in:
Martin Willi
2006-07-13 12:43:52 +00:00
parent be247b817b
commit 1279eda042
5 changed files with 106 additions and 3 deletions
+13
View File
@@ -314,6 +314,19 @@ do
printf("echo \"%s# cat /tmp/tcpdump.log | grep \047%s\047 [%s]\"; ", host, pattern, hit)
printf("ssh root@\044ipv4_%s cat /tmp/tcpdump.log | grep \"%s\"; ", host, pattern)
}
else if (command == "tcpdumpcount")
{
printf("if [ \044TDUP_%s == \"true\" ]; then stop_tcpdump %s; fi; \n", host, host)
printf("echo -e \"%s# [ \\\\140cat /tmp/tcpdump.log | grep \047%s\047 | tee -a /dev/stderr | wc -l\\\\140 -eq %s ] [YES]\"; ", host, pattern, hit)
printf("tcpdumpcount=\`ssh root@\044ipv4_%s cat /tmp/tcpdump.log | grep \"%s\" | tee -a /dev/stderr | wc -l\`; ", host, pattern)
printf("[ \044tcpdumpcount -eq %s ]; ", hit)
hit="YES"
}
else if (command == "cmd")
{
printf("echo \"%s# %s [%s]\"; ", host, pattern, hit)
printf("ssh root@\044ipv4_%s %s; ", host, pattern)
}
else
{
printf("echo \"%s# %s | grep \047%s\047 [%s]\"; ", host, command, pattern, hit)