Mithrilhall ✭✭✭✭✭

Comments

  • Did you install this with admin rights? Are you running it with admin rights?
  • Could you provide an example? Equipment being used? OID? Have you tried doing a manual get/walk of the OID? If so what did you get?
  • Open the 'Orion System Manager'. When setting up Alerts you should see the option to suppress alerts. This is where you can set the when/why to suppress.
  • If you answered 'No' would you consider installing it if you could get a resource for Orion that would show a switch's mac-address-table via NodeDetails? VLAN MAC Address Port Description IP Address 71 00:00:23:10:70:00 1/e3 xyz 172.16.136.114 90 00:00:23:10:70:00 1/e48 xyz 10.150.125.10 90 00:00:23:10:70:00 1/g1 xyz…
  • How about: copy 172.16.3.96/<file_name> Try it from a command window. In Cirrus you'll have to hit enter to accept the default as in the example below: copy ftp://172.16.3.95/home.html flash:c2800nm-adventerprisek9-mz.124-3g.bin <enter> -- needed in Cirrus <enter> -- needed in Cirrus
  • I believe the Solarwinds team is aware of the problem. I have since uninstalled and reinstalled the latest build and it has been working without any problems (knock on wood) but it still takes about 20 mintutes for the System Manager to open. They sent me some debugging files to replace some of my existing files to help…
  • Orion should have a link to the device on the Nodes Details page. Can't you just click the Web Browse link and turn the plugs on/off? That's how we do it. Last Boot Friday, April 27, 2007 09:14 AM Operating System IOS Image Telnet telnet://xxx.xxx.xxx.xxx Web Browse http://xxx.xxx.xxx
  • Couldn't you just create a script for Cirrus that does something like this? [code language="vbscript"] copy flash:vlan.dat tftp://xxx.xxx.xxx.xxx/vlan.dat
  • This might come in handy for those making cutomizations to Orion. www.maani.us/.../index.php I really like the look of these graphs.
  • As far as I know either Solarwinds will contact you or you need to contact them. Just give their support people a call, I'm sure they'll be able to assist you.
  • Thanks Isaac...I'll give it a shot and post back the code.
  • Isaac...nice UpTime addition and it works great.
  • This is what I'm currently working on. I don't think I'll be able to do the actual mouseover on the hyperlink shown. I think I'll have to create a custom link and do the mouseover on that instead.
  • save.php is just a page that opens a telnet connection to the device and issues a copy run start command to save the configuration. I'm going to rewrite save.php to use snmp rather than a telnet connection, which should speed things up.
  • The code was posted a few threads up. If you still want the code via email just let me know.
  • Here is the 'db_connection2.php' page: <?php $myServer = "127.0.0.1"; $myUser = "xxxxx"; $myPass = "xxxxx"; $myDB = "NetPerfMon"; $myTable = "Interfaces"; if (isset($_GET['NID'])) { $NID = $_GET['NID']; } else { $NID = 0; } $s = @mssql_connect($myServer, $myUser, $myPass) or die("Couldn't connect to SQL Server on $myServer…
  • I'll send you an email soon with the code.
  • Here is a custom page I wrote not to long ago. I'm going to be re-coding it soon though. This is a Dell PowerConnect switch but I'm sure with a little modifications it will work with other vendor's. Basically this page allows our support staff to turn ports on/off and save the running config to the startup config.
  • I couldn't agree more. I've made some custom changes and wouldn't mind sharing them at all.
  • 13,000 + elements (about 500+ volumes) on a single polling engine. I actually have Orion and MS SQL on the same box (I'm hoping to fix that soon and get another polling engine).
  • This is what I use to call my pages (from the picture posted earilier): <script language="javascript" type="text/javascript"> <!-- if(document.images) { pics = new Array(); pics[1] = new Image(24,24); pics[1].src = "">asm2/.../saveu.jpg"; pics[2] = new Image(24,24); pics[2].src = "">asm2/.../saved.jpg"; pics[3] = new…
  • Here is the PHPTelnetX.php file (I didn't write this...it is available on the web...I just modified it where I needed to): <?php /* PHPTelnet 1.0 by Antone Roundy adapted from code found on the PHP website public domain */ class PHPTelnet { var $use_usleep=0; // change to 1 for faster execution // don't change to 1 on…
  • Here is the DB_Connection.php file: <?php $myServer = "127.0.0.1"; $myUser = "Database_UserName"; $myPass = "Password"; $myDB = "NetPerfMon"; $myTable = "nodes"; if (isset($_GET['NID'])) { $NID = $_GET['NID']; } else { $NID = 0; } $s = @mssql_connect($myServer, $myUser, $myPass) or die("Couldn't connect to SQL Server on…
  • Sorry about using quote on this but it screwed up the page format if I used the code tag.quote: <?php require_once 'db_connection.php'; require_once "PHPTelnetx.php"; $tmp = ""; global $ccount; $ccount = 0; function alpha($telnet,$tmp, $ccount) { $telnet->DoCommand(' ', $result); $working = explode("\n", $result); for…
  • Hi Mike. The "Show Bridge Address-Table" page I wrote in PHP. As you can see, SolarWinds wrote the pages of Orion in ASP. You could easily re-write the page in ASP. If you want the code I'll be happy to post it.
  • Are you looking for the Dot3StatsTable(EtherLike-MIB:dot3StatsDuplexStatus)? BTW I installed PHPv5 on my Orion box(Windows 2000 Server) and added a custom section to our Orion pages. See image below:
  • My Suggestion... Write your own page using PHP. It has built in snmp support and it works great. I've written some custom pages for our Orion install in PHP so we can turn ports on/off on our switches. I'm also in the process of writing a custom page in PHP that will display the switches MAC table so we know what MAC…
  • Passing credentials in the URL isn't secure though.
  • Integrated Windows Authentication (IIS 6.0) www.microsoft.com/.../523ae943-5e6a-4200-9103-9808baa00157.mspx Or a simple google search on IIS and Active Directory authentication www.google.com/search