You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -92,11 +92,11 @@ <h2>Network Management the Ruby Way</h2>
92
92
<h2>Getting Started</h2>
93
93
94
94
<h3>Install</h3>
95
-
<p>Using <ahref="http://rubygems.org/">RubyGems</a> all you need to do is:</p>
95
+
<p>Using <ahref="https://rubygems.org/">RubyGems</a> all you need to do is:</p>
96
96
<p><code>gem install snmp</code></p>
97
97
98
98
<h3>Import MIBs</h3>
99
-
<p>If you are using standard <ahref="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 <ahref="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>
100
100
101
101
<pre><code>
102
102
SNMP::Manager.open(:MibModules => ["DOCS-IF-MIB"]) do |snmp|
@@ -106,13 +106,13 @@ <h3>Import MIBs</h3>
106
106
107
107
<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>
108
108
109
-
<p>If you want to import custom MIBs, then have a look at the <ahref="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 <ahref="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 <ahref="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 <ahref="https://www.ibr.cs.tu-bs.de/projects/libsmi/">libsmi</a> first, or create the required YAML file manually.</p>
110
110
111
111
<h3>Start Coding</h3>
112
112
113
-
<p>Have a look at the <ahref="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 <ahref="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>
114
114
115
-
<p>Here's an example to get you started. You can find plenty more in the <ahref="doc/index.html">README</a> file</p>
115
+
<p>Here's an example to get you started. You can find plenty more in the <ahref="https://www.rubydoc.info/gems/snmp/">README</a> file</p>
116
116
<pre><code>
117
117
require 'snmp'
118
118
@@ -128,16 +128,16 @@ <h2>Useful SNMP Tools</h2>
128
128
129
129
<h3>libsmi</h3>
130
130
131
-
<p>The <ahref="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 <ahref="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>
132
132
133
133
<h3>Net-SNMP</h3>
134
134
135
-
<p><ahref="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><ahref="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>
<p>“I'd like to thank you for such a fantastic library.”</p>
@@ -151,7 +151,7 @@ <h3>What is SNMP?</h3>
151
151
152
152
<h3>What is Ruby?</h3>
153
153
<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 <ahref="http://www.ruby-lang.org/en/">www.ruby-lang.org</a>.</p>
154
+
<p>Find out more at <ahref="https://www.ruby-lang.org/en/">www.ruby-lang.org</a>.</p>
0 commit comments