Interface AllowedAddressPairs

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<AllowedAddressPairs>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.ChildOf<PortAttributes>, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Identifiable<AllowedAddressPairsKey>

    public interface AllowedAddressPairs
    extends org.opendaylight.yangtools.yang.binding.ChildOf<PortAttributes>, org.opendaylight.yangtools.yang.binding.Augmentable<AllowedAddressPairs>, org.opendaylight.yangtools.yang.binding.Identifiable<AllowedAddressPairsKey>
    Allowed address pairs for this port. For example: neutron port-create net1 --allowed-address-pairs type=dict list=true mac_address=<mac_address>,ip_address=<ip_cidr> Setting an allowed-address-pair that matches the mac_address and ip_address of a port is prevented. This is because that would have no effect since traffic matching the mac_address and ip_address is already allowed to pass through the port

    This class represents the following YANG schema fragment defined in module neutron-ports

     list allowed-address-pairs {
       key "mac-address ip-address";
       leaf mac-address {
         type yang:mac-address;
       }
       leaf ip-address {
         type types:ip-prefix-or-address;
       }
     }
     
    The schema path to identify an instance is neutron-ports/port-attributes/allowed-address-pairs

    To create instances of this class use AllowedAddressPairsBuilder.

    See Also:
    AllowedAddressPairsBuilder, AllowedAddressPairsKey
    • Field Detail

      • QNAME

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

      • implementedInterface

        default Class<AllowedAddressPairs> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getMacAddress

        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress getMacAddress()
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress macAddress, or null if not present
      • getIpAddress

        IpPrefixOrAddress getIpAddress()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.types.rev160517.IpPrefixOrAddress ipAddress, or null if not present