This screenshot looks like an output of the OpenSSH client (https://www.openssh.org), started without parameters.
What have you configured and what are you trying to achieve?
What have you configured and what are you trying to achieve?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menufunction GetTree(nodeID)
{
obj = FindObject(nodeID);
if (obj == null) return;
children = obj.children;
for (n : children)
{
if (classof(n) == "Node")
{
ifaces = n.interfaces;
for (iface : ifaces)
{
if (iface.description ~= "WAN")
{
println("Node: " .. n.name .. ", Interface: " .. iface.name .. ", Description: " .. iface.description .. ", IP: " .. iface.ipAddr);
}
}
}
// Рекурсия ВЫНЕСЕНА за пределы условия - обходим все контейнеры
GetTree(n.id);
}
}
GetTree(2);