nikitavbv / Mikrotik-rust

Mikrotik API for Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Router Os

Mikrotik API for Rust

This is a fork of Mikrotik-rust crate by woowe. login has been fixed to work post-v6.43: Mikrotik API links

TODO: support both old and new login methods.

This API gives you the ability to connect to your mikrotik router over a tcp connection.

Build Status Latest Version

Installation

Add router_os via your Cargo.toml:

[dependencies]
routeros_rust = "*"

or

[dependencies.routeros_rust]
git = "https://github.com/Wooowe/mikrotik-rust"

Usage

extern crate router_os;

use router_os::ApiRos;
use std::net::TcpStream;

fn main() {
    let mut stream = TcpStream::connect("192.168.1.1:8728").unwrap();

    let mut apiros = ApiRos::new(&mut stream);
    apiros.login("admin".to_string(), "".to_string());

    apiros.write_sentence(vec!["/ip/address/print".to_string()]);

    loop {
        let reply = apiros.read_sentence();

        if reply.len() == 0 {
            continue;
        }

        if reply[0] == "!done" {
            break;
        }
    }
}

About

Mikrotik API for Rust


Languages

Language:Rust 100.0%