Skip to content

theiyappan/OmniView_SNMP

Repository files navigation

OMNIVIEW_SNMP

last-commit repo-top-language repo-language-count

Built with the tools and technologies:

java


Table of Contents


Overview

OmniView_SNMP is a robust, portable Java application designed for network administrators and developers to interact with SNMP agents. Unlike traditional heavy Network Management Systems (NMS), OmniView is MIB-less, meaning it relies on an internal dictionary and smart formatting rather than requiring external .mib files to be loaded.

It is specifically engineered to handle SNMPv3 complexity, featuring a custom Manual Engine ID Injection mechanism that solves common "Unknown User Name" and discovery timeout errors often encountered when connecting to Net-SNMP agents.


Features

  • Protocol Support: Full support for SNMP v1, v2c, and v3.
  • Advanced Security: Implements SNMPv3 USM with support for:
    • noAuthNoPriv (Level 1)
    • authNoPriv (Level 2 - MD5)
    • authPriv (Level 3 - MD5/SHA + DES)
  • MIB-less Browsing: Instantly view OID trees without configuring external MIB files, using a built-in OidDictionary.
  • Manual Engine ID: Bypasses unstable discovery phases by allowing hardcoded authoritative Engine IDs.
  • Smart Formatting: Automatically detects and converts OctetStrings (Hex vs. ASCII) into human-readable text.
  • Operations: Supports WALK, GET, GET_NEXT, GET_BULK, and SET.

Project Structure

└── OmniView_SNMP/
    ├── README.md
    ├── bin
    │   └── com
    ├── lib
    │   └── snmp4j-3.8.2.jar
    ├── manifest.txt
    ├── pom.xml
    └── src
        └── main

Project Index

OMNIVIEW_SNMP/
__root__
manifest.txt ❯ REPLACE-ME
src
main
java
com
omniview
Main.java ❯ REPLACE-ME
model
SnmpResult.java ❯ REPLACE-ME
utils
OidDictionary.java ❯ REPLACE-ME
SmartFormatter.java ❯ REPLACE-ME
service
ScanWorker.java ❯ REPLACE-ME
ui
MainFrame.java ❯ REPLACE-ME
TreeHelper.java ❯ REPLACE-ME
SnmpTreeCellRenderer.java ❯ REPLACE-ME

Getting Started

Prerequisites

Before getting started with OmniView_SNMP, ensure your runtime environment meets the following requirements:

  • Programming Language: Java

Installation

Install OmniView_SNMP using one of the following methods:

Build from source:

  1. Clone the OmniView_SNMP repository:
❯ git clone https://github.com/theiyappan/OmniView_SNMP
  1. Navigate to the project directory:
cd OmniView_SNMP
  1. Install Net-Snmp for detailed testing(using choco):

Windows:

❯ choco install net-snmp

For manual installing for windows, visit:https://sourceforge.net/projects/net-snmp/files/net-snmp%20binaries/

Linux:

❯ sudo apt-get update
❯ sudo apt-get install snmp snmpd libsnmp-dev

Mac:

❯ brew install net-snmp

Usage

Run OmniView_SNMP by running the .bat file

Contributing

Contributing Guidelines
  1. Fork the Repository: Start by forking the project repository to your github account.
  2. Clone Locally: Clone the forked repository to your local machine using a git client.
    git clone https://github.com/theiyappan/OmniView_SNMP
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear message describing your updates.
    git commit -m 'Implemented new feature x.'
  6. Push to github: Push the changes to your forked repository.
    git push origin new-feature-x
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
  8. Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages