rneter 0.4.3

SSH connection manager for network devices with intelligent state machine handling
Documentation
//! Juniper JunOS device template.

use crate::device::{DeviceHandler, DeviceHandlerConfig, input_rule, prompt_rule, transition_rule};
use crate::error::ConnectError;
use std::collections::HashMap;

/// Exports the underlying handler configuration for Juniper JunOS devices.
pub fn juniper_config() -> DeviceHandlerConfig {
    DeviceHandlerConfig {
        prompt: vec![
            prompt_rule("Config", &[r"^\S+@\S+#\s*$"]),
            prompt_rule("Enable", &[r"^\S+@\S+>\s*$"]),
        ],
        write: vec![input_rule(
            "Save",
            false,
            "yes",
            true,
            &[r"Exit with uncommitted changes\? \[yes,no\] \(yes\) "],
        )],
        more_regex: vec![r"---\(more.*\)---".to_string()],
        error_regex: vec![
            r".*unknown command.*".to_string(),
            r"syntax error.*".to_string(),
            r"error:.+".to_string(),
            r".+not found.*".to_string(),
            r"invalid value .+".to_string(),
            r"invalid ip address .+".to_string(),
            r".*invalid prefix length .+".to_string(),
            r"prefix length \S+ is larger than \d+ .+".to_string(),
            r"number: \S+: Value must be a number from 0 to 255 at \S+".to_string(),
            r"\s+\^$".to_string(),
        ],
        edges: vec![
            transition_rule("Enable", "system-view", "Config", false, false),
            transition_rule("Config", "exit", "Enable", true, false),
        ],
        dyn_param: HashMap::new(),
        ..Default::default()
    }
}

/// Returns a `DeviceHandler` configured for Juniper JunOS devices.
pub fn juniper() -> Result<DeviceHandler, ConnectError> {
    juniper_config().build()
}