我正在尝试使用 SSH.Net 将用户 Wifi mac 地址添加到 Aruba Wifi 控制器,所以我正在运行这些命令:
//connect to the remove server
SshClient sshclient = new SshClient(hostIP, userName, password);
sshclient.Connect();
//enter the "enable" command and press enter
SshCommand enable = sshclient.CreateCommand("enable");
enable.Execute();
//the "enable" command prompts for admin password, so enter the password and press enter
SshCommand pwd = sshclient.CreateCommand(enablePassword);
pwd.Execute();
//enter "cofigure t" command and press enter
SshCommand config = sshclient.CreateCommand("configure t");
config.Execute();
SshCommand aaa = sshclient.CreateCommand("aaa derivation-rules user ManagersDevices");
aaa.Execute();
SshCommand set = sshclient.CreateCommand("set role condition macaddr equals \"my mac address\" set-value guest description \"test\"");
set.Execute();
SshCommand save = sshclient.CreateCommand("write memory");
save.Execute();
但是什么也没发生,用户没有被添加......