hardware:gretunnel

**This is an old revision of the document!** ----

A PCRE internal error occured. This might be caused by a faulty plugin

On the gateway machine <code> ip tunnel add gre1 mode gre remote 192.168.2.99 local 192.168.2.81 ttl 255 ip link set gre0 up ip link set gre1 up ip addr add 10.10.10.81/24 dev gre1 </code> Confirm the route is present <code> ip route 10.10.10.0/24 dev gre1 proto kernel scope link src 10.10.10.99 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 192.168.2.0/24 dev enp2s0 proto kernel scope link src 192.168.2.99 </code> Use IPTables to NAT to the remote GRE <code> iptables -t nat -A PREROUTING -p udp --dport 5111 -j DNAT --to-destination 10.10.10.99:5111 </code> On the Trisul probe machine ip tunnel add gre1 mode gre remote 192.168.2.81 local 192.168.2.99 ttl 255 ip link set gre1 up ip addr add 10.10.10.99/24 dev gre1

hardware/gretunnel.1546690295.txt.gz · Last modified: 2019/01/05 12:11 by veera