summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSusant Sahani <susant@redhat.com>2014-05-10 04:48:12 (GMT)
committerThomas Haller <thaller@redhat.com>2014-06-16 14:59:16 (GMT)
commit11f9cc0914aef697c1f49bca7353117cb65fd318 (patch)
tree12134513d469f6e49883c49ca62d182c97481d96 /tests
parentcfc57ce3596cfe9dacf01219f118534fb2686137 (diff)
downloadlibnl-11f9cc0914aef697c1f49bca7353117cb65fd318.zip
libnl-11f9cc0914aef697c1f49bca7353117cb65fd318.tar.gz
libnl-11f9cc0914aef697c1f49bca7353117cb65fd318.tar.bz2
ip6tnl: introduce ip6 tunnel support
This patch adds support for ip6 tunnel that works with the ip6_tunnel kernel module. Signed-off-by: Susant Sahani <susant@redhat.com> Signed-off-by: Thomas Haller <thaller@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/.gitignore1
-rw-r--r--tests/Makefile.am1
-rw-r--r--tests/test-create-ip6tnl.c55
3 files changed, 57 insertions, 0 deletions
diff --git a/tests/.gitignore b/tests/.gitignore
index d9cee77..6b77cac 100644
--- a/tests/.gitignore
+++ b/tests/.gitignore
@@ -7,6 +7,7 @@
/test-complex-HTB-with-hash-filters
/test-create-bond
/test-create-bridge
+/test-create-ip6tnl
/test-create-ipgre
/test-create-ipip
/test-create-ipvti
diff --git a/tests/Makefile.am b/tests/Makefile.am
index acc4f93..255033d 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -24,6 +24,7 @@ check_PROGRAMS = \
test-create-vxlan \
test-create-veth \
test-create-bridge \
+ test-create-ip6tnl \
test-create-ipgre \
test-create-ipip \
test-create-ipvti \
diff --git a/tests/test-create-ip6tnl.c b/tests/test-create-ip6tnl.c
new file mode 100644
index 0000000..b36ab3d
--- /dev/null
+++ b/tests/test-create-ip6tnl.c
@@ -0,0 +1,55 @@
+#include <netlink/route/link/ip6tnl.h>
+#include <netlink-private/netlink.h>
+
+int main(int argc, char *argv[])
+{
+ struct nl_cache *link_cache;
+ struct rtnl_link *link;
+ struct in6_addr addr;
+ struct nl_sock *sk;
+ int err, if_index;
+
+ sk = nl_socket_alloc();
+ if ((err = nl_connect(sk, NETLINK_ROUTE)) < 0) {
+ nl_perror(err, "Unable to connect socket");
+ return err;
+ }
+
+ err = rtnl_link_alloc_cache(sk, AF_UNSPEC, &link_cache);
+ if ( err < 0) {
+ nl_perror(err, "Unable to allocate cache");
+ return err;
+ }
+
+ if_index = rtnl_link_name2i(link_cache, "ens33");
+ if (!if_index) {
+ fprintf(stderr, "Unable to lookup ens33");
+ return -1;
+ }
+
+ link = rtnl_link_ip6_tnl_alloc();
+ if(!link) {
+ nl_perror(err, "Unable to allocate link");
+ return -1;
+
+ }
+ rtnl_link_set_name(link, "ip6tnl-tun");
+ rtnl_link_ip6_tnl_set_link(link, if_index);
+
+ inet_pton(AF_INET6, "2607:f0d0:1002:51::4", &addr);
+ rtnl_link_ip6_tnl_set_local(link, &addr);
+
+ inet_pton(AF_INET6, "2607:f0d0:1002:52::5", &addr);
+ rtnl_link_ip6_tnl_set_remote(link, &addr);
+
+ err = rtnl_link_add(sk, link, NLM_F_CREATE);
+ if (err < 0) {
+ nl_perror(err, "Unable to add link");
+ return err;
+ }
+
+ rtnl_link_put(link);
+ nl_close(sk);
+
+ return 0;
+}