Skip to content

Commit

Permalink
Merge pull request #385 from kmroz/tunnel-samples
Browse files Browse the repository at this point in the history
samples: xml config nodes for sit ipip and gre tunnels
  • Loading branch information
mtomaschewski committed Aug 28, 2014
2 parents 19c0ee9 + e7cbd3f commit 1cfea0d
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
19 changes: 19 additions & 0 deletions samples/wicked/gre1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<interface>
<name>gre1</name>

<gre>
<local-address>10.121.8.167</local-address>
<remote-address>10.121.0.48</remote-address>
<ttl>0</ttl>
<tos>0</tos>
<pmtudisc>false</pmtudisc>
</gre>

<ipv4:static>
<address>
<local>192.168.101.42/32</local>
<peer>192.168.101.1</peer>
</address>
</ipv4:static>

</interface>
19 changes: 19 additions & 0 deletions samples/wicked/ipip1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<interface>
<name>ipip1</name>

<ipip>
<local-address>10.121.8.167</local-address>
<remote-address>10.121.0.48</remote-address>
<ttl>0</ttl>
<tos>0</tos>
<pmtudisc>false</pmtudisc>
</ipip>

<ipv4:static>
<address>
<local>192.168.102.42/32</local>
<peer>192.168.102.1</peer>
</address>
</ipv4:static>

</interface>
13 changes: 13 additions & 0 deletions samples/wicked/sit1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<interface>
<name>sit1</name>

<sit>
<local-address>10.121.8.167</local-address>
<remote-address>10.121.0.48</remote-address>
<ttl>0</ttl>
<tos>0</tos>
<pmtudisc>true</pmtudisc>
<isatap>false</isatap>
</sit>

</interface>

0 comments on commit 1cfea0d

Please sign in to comment.