All Downloads are FREE. Search and download functionalities are using the official Maven repository.

[email protected] Maven / Gradle / Ivy

There is a newer version: 0.19.1
Show newest version
module lldp-speaker {
    yang-version 1;
    namespace "urn:opendaylight:params:xml:ns:yang:openflow:applications:lldp-speaker";
    prefix "lldp-speaker";

    description
        "Application that send LLDPDU frames to all Openflow switch ports.";

    revision "2014-10-23" {
        description
            "Initial revision";
    }

    typedef oper-status {
        type enumeration {
            enum STANDBY {
                description "go to stand by mode";
            }
            enum RUN {
                description "go to fully operational mode";
            }
        }
    }

    rpc change-operational-status {
        input {
            leaf operational-status {
                type oper-status;
                description "Change operational status of LLDP speaker.";
            }
         }
    }
    rpc get-operational-status {
        output {
            leaf operational-status {
                type oper-status;
                description "Change operational status of LLDP speaker.";
            }
         }
    }
    rpc set-lldp-flood-interval {
        input {
            leaf interval {
               type int64;
               description "Set LLDP_FLOOD_PERIOD";
            }
        }
    }
    rpc get-lldp-flood-interval {
        output {
            leaf interval {
               type int64;
               description "Get LLDP_FLOOD_PERIOD";
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy