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.11.4
Show newest version
module natservice-config {
    yang-version 1;
    namespace "urn:opendaylight:netvirt:natservice:config";
    prefix "natservice-config";

    description
        "Configuration for nat-serviceImpl.";

    revision "2017-02-06" {
        description
                "Initial revision.";
    }

    container natservice-config {
        config true;
        leaf nat-mode {
            type enumeration {
                enum "controller";
                enum "conntrack";
            }
            default "controller";
        }
        leaf snat-punt-timeout {
            description "hard timeout value for learnt flows for snat punts in seconds.
                To turn off the rate limiting and installation of learnt flows, it should be set to 0,";
            type uint32;
            default 5;
        }
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy