summaryrefslogtreecommitdiff
path: root/src/network/networkd-network.c
diff options
context:
space:
mode:
authorSusant Sahani <susant@redhat.com>2014-05-23 12:07:46 +0530
committerTom Gundersen <teg@jklm.no>2014-06-02 16:20:44 +0200
commita613382bbf4357ce13f17c988713b80172e091fb (patch)
tree52bf7572ed5fca075f856e1b32c17e2661808c4d /src/network/networkd-network.c
parenta9f434cf00d1d36d9a013b9739efe69653dd7279 (diff)
networkd: introduce vti tunnel
This patch enables vti tunnel support. example conf: file : vti.netdev [NetDev] Name=vti-tun Kind=vti MTUBytes=1480 [Tunnel] Local=X.X.X.X Remote=X.X.X.X file: vti.network [Match] Name=em1 [Network] Tunnel=vti-tun TODO: Add more attributes for vti tunnel IFLA_VTI_IKEY IFLA_VTI_OKEY
Diffstat (limited to 'src/network/networkd-network.c')
-rw-r--r--src/network/networkd-network.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/networkd-network.c b/src/network/networkd-network.c
index a6cbee2397..f42fc171bd 100644
--- a/src/network/networkd-network.c
+++ b/src/network/networkd-network.c
@@ -363,7 +363,8 @@ int config_parse_tunnel(const char *unit,
if (netdev->kind != NETDEV_KIND_IPIP &&
netdev->kind != NETDEV_KIND_SIT &&
- netdev->kind != NETDEV_KIND_GRE) {
+ netdev->kind != NETDEV_KIND_GRE &&
+ netdev->kind != NETDEV_KIND_VTI) {
log_syntax(unit, LOG_ERR, filename, line, EINVAL,
"NetDev is not a tunnel, ignoring assignment: %s", rvalue);
return 0;