added junos, updated screenos
[configmanager.git] / lib / junos.plugin.php
1 <?php 
2 $HOST_TYPE["junos"]["name"] = "Juniper JunOS Devices";
3 $HOST_TYPE["junos"]["getconfig"] = "jos_getConfig";
4 $HOST_TYPE["junos"]["needsenable"] = false;
5
6
7
8 function jos_getConfig($host, $username, $password, $enable)
9 {
10         return genericssh_ssh($host, $username, $password, "cli show configuration");
11 }
12 ?>