]> granicus.if.org Git - libnl/commitdiff
ipvlan: add a testcase for ipvlan
authorCong Wang <xiyou.wangcong@gmail.com>
Wed, 10 Jun 2015 04:53:10 +0000 (21:53 -0700)
committerThomas Haller <thaller@redhat.com>
Fri, 19 Jun 2015 16:03:59 +0000 (18:03 +0200)
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: Thomas Haller <thaller@redhat.com>
tests/Makefile.am
tests/test-create-ipvlan.c [new file with mode: 0644]

index 8d1da5969f7f98565a6f7f928a056ccf1dc0bf30..edf2ee58930dfab91e9c7578bd426cfb2ea350cc 100644 (file)
@@ -35,6 +35,7 @@ check_PROGRAMS = \
        test-create-ipip \
        test-create-ipvti \
        test-create-macvlan \
+       test-create-ipvlan \
        test-create-sit \
        test-create-ifb \
        test-delete-link \
diff --git a/tests/test-create-ipvlan.c b/tests/test-create-ipvlan.c
new file mode 100644 (file)
index 0000000..dd61b80
--- /dev/null
@@ -0,0 +1,45 @@
+#include <netlink/netlink.h>
+#include <netlink/route/link.h>
+#include <netlink/route/link/ipvlan.h>
+
+int main(int argc, char *argv[])
+{
+       struct rtnl_link *link;
+       struct nl_cache *link_cache;
+       struct nl_sock *sk;
+       int err, master_index;
+
+       sk = nl_socket_alloc();
+       if ((err = nl_connect(sk, NETLINK_ROUTE)) < 0) {
+               nl_perror(err, "Unable to connect socket");
+               return err;
+       }
+
+       if ((err = rtnl_link_alloc_cache(sk, AF_UNSPEC, &link_cache)) < 0) {
+               nl_perror(err, "Unable to allocate cache");
+               return err;
+       }
+
+       if (!(master_index = rtnl_link_name2i(link_cache, "eth0"))) {
+               fprintf(stderr, "Unable to lookup eth0");
+               return -1;
+       }
+
+       if (!(link = rtnl_link_ipvlan_alloc())) {
+               fprintf(stderr, "Unable to allocate link");
+               return -1;
+       }
+
+       rtnl_link_set_link(link, master_index);
+       rtnl_link_ipvlan_set_mode(link, rtnl_link_ipvlan_str2mode("l2"));
+
+       if ((err = rtnl_link_add(sk, link, NLM_F_CREATE)) < 0) {
+               nl_perror(err, "Unable to add link");
+               return err;
+       }
+
+       rtnl_link_put(link);
+       nl_close(sk);
+
+       return 0;
+}