generic ssh
[configmanager.git] / lib / cisco.plugin.php
1 <?php 
2
3 $HOST_TYPE["cisco"]["name"] = "Cisco";
4 $HOST_TYPE["cisco"]["configform"] = "somefuntion";
5 $HOST_TYPE["cisco"]["postfunction"] = "somefuntion";
6
7 function cisco_getConfig($istest)
8 {
9         genericssh_ssh($host, $username, $password, "show running");
10 }
11
12 ?>