It is still working for me.
Netconf is configured on Juniper ( set system services netconf ssh )
and in my code
nc = new NetConfClient(ip, "admin", pw);
nc.AutomaticMessageIdHandling = false;
nc.OperationTimeout = new TimeSpan(0, 0, 60);
try {
catch (System.Exception ex)
{
...
Netconf is configured on Juniper ( set system services netconf ssh )
and in my code
nc = new NetConfClient(ip, "admin", pw);
nc.AutomaticMessageIdHandling = false;
nc.OperationTimeout = new TimeSpan(0, 0, 60);
try {
nc.Connect();
}catch (System.Exception ex)
{
...
}...