29 lines
995 B
Plaintext
29 lines
995 B
Plaintext
|
|
#GRE-Tunnel zu fff-gw-m3
|
|
#
|
|
#[Jan ?Kraus (mayosemmel)]
|
|
#mayosemmel@googlemail.com
|
|
#
|
|
#fff-gw-m3
|
|
# öffentlich:
|
|
# freifunk: 10.50.252.168
|
|
#fff-ab-01
|
|
# öffentlich: 5.189.177.88
|
|
# freifunk: 10.50.252.169
|
|
|
|
auto fff-gw-m3
|
|
iface fff-gw-m3 inet static
|
|
address 10.50.252.169
|
|
pre-up iptunnel add $IFACE mode gre local 5.189.177.88 remote <remote-IP> ttl 225
|
|
up ifconfig $IFACE multicast
|
|
pointopoint 10.50.252.168
|
|
post-up iptables -t mangle -A POSTROUTING -p tcp --tcp-flags SYN,RST SYN -o $IFACE -j TCPMSS --clamp-mss-to-pmtu
|
|
post-up ip rule add iif $IFACE table fff
|
|
post-up ip rule add from 10.50.0.0/16 table fff
|
|
post-up ip rule add to 10.50.0.0/16 table fff
|
|
post-down ip rule del iif $IFACE table fff
|
|
post-down ip rule del from 10.50.0.0/16 table fff
|
|
post-down ip rule del to 10.50.0.0/16 table fff
|
|
post-down iptables -t mangle -D POSTROUTING -p tcp --tcp-flags SYN,RST SYN -o $IFACE -j TCPMSS --clamp-mss-to-pmtu
|
|
post-down iptunnel del $IFACE
|