Skip to content

Commit 92dec75

Browse files
authored
Merge pull request #2 from ruby-snmp/update-content
Update content
2 parents 965948b + 96ce3c1 commit 92dec75

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

docs/index.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4+
<meta charset="utf-8" />
55
<title>SNMP Library for Ruby</title>
6-
<style type="text/css">
6+
<style>
77
body {
88
margin:0;
99
padding:0;
@@ -80,7 +80,7 @@
8080
</style>
8181
</head>
8282
<body>
83-
<a href="http://github.com/ruby-snmp/ruby-snmp/"><img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" /></a>
83+
<a href="https://github.com/ruby-snmp/ruby-snmp/"><img style="position: absolute; top: 0; right: 0; border: 0;" loading="lazy" decoding="async" width="149" height="149" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_red_aa0000.png" class="attachment-full size-full" alt="Fork me on GitHub"></a>
8484
<div id="wrap">
8585
<img src="rubysnmp.gif" alt="Ruby SNMP" width="290" height="50"/>
8686
<div id="main">
@@ -92,11 +92,11 @@ <h2>Network Management the Ruby Way</h2>
9292
<h2>Getting Started</h2>
9393

9494
<h3>Install</h3>
95-
<p>Using <a href="http://rubygems.org/">RubyGems</a> all you need to do is:</p>
95+
<p>Using <a href="https://rubygems.org/">RubyGems</a> all you need to do is:</p>
9696
<p><code>gem install snmp</code></p>
9797

9898
<h3>Import MIBs</h3>
99-
<p>If you are using standard <a href="http://www.ietf.org/">IETF</a> MIBs then you're ready to go. Most of the IETF MIBs have been included for you with Ruby SNMP. Just list the MIBs that you need when you open your SNMP session and you will have full symbolic access to all of the OIDs.</p>
99+
<p>If you are using standard <a href="https://www.ietf.org/">IETF</a> MIBs then you're ready to go. Most of the IETF MIBs have been included for you with Ruby SNMP. Just list the MIBs that you need when you open your SNMP session and you will have full symbolic access to all of the OIDs.</p>
100100

101101
<pre><code>
102102
SNMP::Manager.open(:MibModules =&gt; ["DOCS-IF-MIB"]) do |snmp|
@@ -106,13 +106,13 @@ <h3>Import MIBs</h3>
106106

107107
<p>If you don't provide a MIB list then the default MIBs are loaded: SNMPv2-MIB, IF-MIB, IP-MIB, TCP-MIB, UDP-MIB</p>
108108

109-
<p>If you want to import custom MIBs, then have a look at the <a href="doc/index.html">documentation</a> for the <code>SNMP::MIB</code> class. If you use the <code>import_module</code> method, you will need to install <a href="http://www.ibr.cs.tu-bs.de/projects/libsmi/">libsmi</a> first, or create the required YAML file manually.</p>
109+
<p>If you want to import custom MIBs, then have a look at the <a href="https://www.rubydoc.info/gems/snmp/">documentation</a> for the <code>SNMP::MIB</code> class. If you use the <code>import_module</code> method, you will need to install <a href="https://www.ibr.cs.tu-bs.de/projects/libsmi/">libsmi</a> first, or create the required YAML file manually.</p>
110110

111111
<h3>Start Coding</h3>
112112

113-
<p>Have a look at the <a href="doc/index.html">documentation</a> for the <code>SNMP::Manager</code> class. This class provides the main interface for sending and receiving SNMP PDUs.</p>
113+
<p>Have a look at the <a href="https://www.rubydoc.info/gems/snmp/">documentation</a> for the <code>SNMP::Manager</code> class. This class provides the main interface for sending and receiving SNMP PDUs.</p>
114114

115-
<p>Here's an example to get you started. You can find plenty more in the <a href="doc/index.html">README</a> file</p>
115+
<p>Here's an example to get you started. You can find plenty more in the <a href="https://www.rubydoc.info/gems/snmp/">README</a> file</p>
116116
<pre><code>
117117
require 'snmp'
118118

@@ -128,16 +128,16 @@ <h2>Useful SNMP Tools</h2>
128128

129129
<h3>libsmi</h3>
130130

131-
<p>The <a href="http://www.ibr.cs.tu-bs.de/projects/libsmi/">libsmi</a> distribution includes some very useful tools for checking, analyzing, converting, and comparing MIBs. It also contains a complete archive of IETF and IANA MIBs which saves you from having to find and download them yourself.</p>
131+
<p>The <a href="https://www.ibr.cs.tu-bs.de/projects/libsmi/">libsmi</a> distribution includes some very useful tools for checking, analyzing, converting, and comparing MIBs. It also contains a complete archive of IETF and IANA MIBs which saves you from having to find and download them yourself.</p>
132132

133133
<h3>Net-SNMP</h3>
134134

135-
<p><a href="http://net-snmp.sourceforge.net/">Net-SNMP</a> includes SNMP libraries for implementing SNMP agents and managers in C and a set of SNMP tools for setting and getting information from SNMP agents.</p>
135+
<p><a href="https://net-snmp.sourceforge.io/">Net-SNMP</a> includes SNMP libraries for implementing SNMP agents and managers in C and a set of SNMP tools for setting and getting information from SNMP agents.</p>
136136

137137
</div>
138138
<div id="sidebar">
139-
<h3><a href="doc/index.html">Documentation &raquo;</a></h3>
140-
<h3><a href="http://rubygems.org/gems/snmp/">Download &raquo;</a></h3>
139+
<h3><a href="https://www.rubydoc.info/gems/snmp/">Documentation &raquo;</a></h3>
140+
<h3><a href="https://rubygems.org/gems/snmp/">Download &raquo;</a></h3>
141141
<h3>Happy Users</h3>
142142
<div id="quotes">
143143
<p>&ldquo;I'd like to thank you for such a fantastic library.&rdquo;</p>
@@ -151,7 +151,7 @@ <h3>What is SNMP?</h3>
151151

152152
<h3>What is Ruby?</h3>
153153
<p>Ruby is the interpreted scripting language for quick and easy object-oriented programming. It has many features to process text files and to do system management tasks (as in Perl). It is simple, straight-forward, extensible, and portable.</p>
154-
<p>Find out more at <a href="http://www.ruby-lang.org/en/">www.ruby-lang.org</a>.</p>
154+
<p>Find out more at <a href="https://www.ruby-lang.org/en/">www.ruby-lang.org</a>.</p>
155155
<p>&nbsp;</p>
156156

157157
</div>

0 commit comments

Comments
 (0)