public interface NatTraversal extends ChildOf<LispAddress>, Augmentable<NatTraversal>
This class represents the following YANG schema fragment defined in module ietf-lisp-address-types
container nat-traversal { when "../address-type = 'laddr:nat-traversal-lcaf'" { } leaf ms-udp-port { type uint16; } leaf etr-udp-port { type uint16; } leaf global-etr-rloc { type simple-address; } leaf ms-rloc { type simple-address; } leaf private-etr-rloc { type simple-address; } leaf-list rtr-rlocs { type simple-address; } }The schema path to identify an instance is ietf-lisp-address-types/lisp-address/address/nat-traversal/nat-traversal
To create instances of this class use NatTraversalBuilder
.
NatTraversalBuilder
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable Integer |
getEtrUdpPort()
ETR UDP port.
|
@Nullable SimpleAddress |
getGlobalEtrRloc()
Global ETR RLOC address.
|
@Nullable SimpleAddress |
getMsRloc()
Map-Server RLOC address.
|
@Nullable Integer |
getMsUdpPort()
Map-Server UDP port (set to 4342).
|
@Nullable SimpleAddress |
getPrivateEtrRloc()
Private ETR RLOC address.
|
@Nullable List<SimpleAddress> |
getRtrRlocs()
List of RTR RLOC addresses.
|
getImplementedInterface
augmentation
@Nullable Integer getMsUdpPort()
java.lang.Integer
msUdpPort
, or null
if not present@Nullable Integer getEtrUdpPort()
java.lang.Integer
etrUdpPort
, or null
if not present@Nullable SimpleAddress getGlobalEtrRloc()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105.SimpleAddress
globalEtrRloc
, or null
if not present@Nullable SimpleAddress getMsRloc()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105.SimpleAddress
msRloc
, or null
if not present@Nullable SimpleAddress getPrivateEtrRloc()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.lisp.address.types.rev151105.SimpleAddress
privateEtrRloc
, or null
if not present@Nullable List<SimpleAddress> getRtrRlocs()
java.util.List
rtrRlocs
, or null
if not presentCopyright © 2019 OpenDaylight. All rights reserved.