Interface BgpNeighborTransportConfig

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    Config, State

    public interface BgpNeighborTransportConfig
    extends org.opendaylight.yangtools.yang.binding.DataObject
    Configuration parameters relating to the transport protocol used by the BGP session to the peer

    This class represents the following YANG schema fragment defined in module openconfig-bgp

     grouping bgp-neighbor-transport_config {
       leaf tcp-mss {
         type uint16;
       }
       leaf mtu-discovery {
         type boolean;
         default false;
       }
       leaf passive-mode {
         type boolean;
         default false;
       }
       leaf local-address {
         type union {
           type inet:ip-address;
           type string;
         }
       }
     }
     
    The schema path to identify an instance is openconfig-bgp/bgp-neighbor-transport_config
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        Class<? extends BgpNeighborTransportConfig> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getTcpMss

        org.opendaylight.yangtools.yang.common.Uint16 getTcpMss()
        Sets the max segment size for BGP TCP sessions.
        Returns:
        org.opendaylight.yangtools.yang.common.Uint16 tcpMss, or null if not present
      • isMtuDiscovery

        Boolean isMtuDiscovery()
        Turns path mtu discovery for BGP TCP sessions on (true) or off (false)
        Returns:
        java.lang.Boolean mtuDiscovery, or null if not present
      • isPassiveMode

        Boolean isPassiveMode()
        Wait for peers to issue requests to open a BGP session, rather than initiating sessions from the local router.
        Returns:
        java.lang.Boolean passiveMode, or null if not present
      • getLocalAddress

        BgpNeighborTransportConfig.LocalAddress getLocalAddress()
        Set the local IP (either IPv4 or IPv6) address to use for the session when sending BGP update messages. This may be expressed as either an IP address or reference to the name of an interface.
        Returns:
        org.opendaylight.yang.gen.v1.http.openconfig.net.yang.bgp.rev151009.BgpNeighborTransportConfig.LocalAddress localAddress, or null if not present