Giter Club home page Giter Club logo

snmp-agent's Introduction

SNMP Agent

Overview

This is a work in progress C# implementation of a Simple Network Management Protocol agent. The main target of this project is to recreate most of the agent's functions.

Description of the parts implemented so far

MIB-2 file parser

This part is responsible for reading the database structures and type definitions described using text files in ASN.1 and recreating them using .NET objects and types.

MIB tree

All IDs are then recreated in a form of a tree, while the data types are stored in a list. Navigating the tree is possible with methods implemented in the MIBTree class. Each node of the tree contains fields defining the structure of it's leafs and it's stored values:

private TreeNode currentNode;
private Dictionary<int, MIBTree> idDict;

BER encoder and decoder

A part responsible for encoding and decoding data so that it could be sent in the same form as SNMP through the network. The supported types are:

  • OBJECT IDENTIFIER
  • NULL
  • INTEGER
  • BOOLEAN
  • STRING
  • SEQUENCE

PDU encoder and decoder

The code written for this part is responsible for preparing the final form in which data is sent and received through the network. It uses the BER encoder to handle the types and adds information about the type of request that is being handled.

snmp-agent's People

Contributors

karolkob avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.