Hi fellow monks I am new to perl and i hope this question is too daft. I am try to monitor some cisco switches and want to create a simple html page for others to see the status of the switches. I am using snmp I can pull out the data. What I want to know is what is the best way to write the data from the array to a html page. I have posted the code just for the array, but I can post the rest if you think its necessary. Thanks in advance.
sub get_data { $hostkey = shift; for($if = 2; $if < 26; $if++) { $if_name{$hostkey}->{$if} = &get_snmp("$Cisco.$IfName.$if"); $hw_type{$hostkey}->{$if} = &get_snmp("$Cisco.$IfHwType.$if"); $if_desc{$hostkey}->{$if} = &get_snmp("$Generic.$ifDesc.$if"); $if_speed{$hostkey}->{$if} = &get_snmp("$Generic.$ifSpeed.$if"); $bw_in{$hostkey}->{$if} = &get_snmp("$Cisco.$IfInBitSec.$if"); $bw_out{$hostkey}->{$if} = &get_snmp("$Cisco.$IfOutBitSec.$if"); $if_lineprot{$hostkey}->{$if} = &get_snmp("$Cisco.$LineProto.$if") +; $vm_Vlan{$hostkey}->{$if} = &get_snmp("$Specific.$vmvlan.$if"); } return(0);

edited: Mon Jun 23 02:45:22 2003 by jeffa - title change (was: html question)


In reply to Generating HTML from SNMP data by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.