Interface Ipv6NdUtilService

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.RpcService
    All Known Implementing Classes:
    Ipv6NdUtilServiceImpl

    public interface Ipv6NdUtilService
    extends org.opendaylight.yangtools.yang.binding.RpcService
    Interface for implementing the following YANG RPCs defined in module ipv6-nd-util
     rpc send-neighbor-solicitation {
       input input {
         leaf target-ip-address {
           type inet:ipv6-address;
         }
         uses interfaces;
       }
     }
     rpc send-neighbor-solicitation-to-of-group {
       input input {
         leaf source-ipv6 {
           type inet:ipv6-address;
         }
         leaf target-ip-address {
           type inet:ipv6-address;
         }
         leaf source-ll-address {
           type yang:mac-address;
         }
         leaf dp-id {
           type uint64;
         }
         leaf of-group-id {
           type uint32;
         }
       }
     }