RouterOS version 5.0beta3
The connection is success, but it can not disable the pppoe-client on number 0. Need help~
code:
if (!(mk.Login(username, password)))
{
System.Console.Out.Write("Login failed!");
mk.Close();
return;
}
else {
System.Console.Out.WriteLine("Login success!");
}
mk.Send("/interface/pppoe-client/disable");
mk.Send("=numbers=0", true);
System.Console.In.ReadLine();
mk.Close();