Forum Discussion
Leo
Nimbostratus
Jun 30, 2011Clearing the cache
Hi everyone, sorry for the newbie question :)
I'm managing a
BIG-IP 9.4....
Leo
Nimbostratus
Aug 21, 2011Could've used that a couple of months ago 🙂 I simply use external program for the SSH so it makes it easy:
using System;
using System.Diagnostics;
class Program
{
static void Main()
{
RunScript(@"-ssh -pw PASS root@IP /var/tmp/ClearCache.sh");
}
static void RunScript(string f)
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "plink.exe";
startInfo.Arguments = f;
Process.Start(startInfo);
}
}
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects