Displaying 2 results from an estimated 2 matches for "gretun".
Did you mean:
retun
2006 Sep 11
2
[HELP] Mutlicast over GRE tunnel
...=192.168.20.98
4 END_R=192.168.20.100
5 GRE_L=10.0.0.4
6 GRE_R=10.0.0.3
7 MGROUP=224.0.55.55
8 SUBNET_R=192.168.50.0/24
9
10 /usr/sbin/iptables -F
11 /usr/sbin/iptables -F -t nat
12 /usr/sbin/iptables -P FORWARD ACCEPT
13
14 ip tunnel del gretun
15 ip tunnel add gretun mode gre remote $END_R local $END_L ttl 255
16 ip link set gretun up multicast on
17 ip addr add $GRE_L peer $GRE_R/24 dev gretun
18
19 ip route del $SUBNET_R via $GRE_R
20 ip route add $SUBNET_R via $GRE_R
21
22 /usr/sbin/smcroute -k...
2007 Jun 21
5
GRE tunnel
I am trying to setup GRE between two CentOS 4.5 boxes. I have tried
several variations of what''s listed below, but none of them work.
box1:
modprobe ip_gre
ip link set gre0 up
ip tunnel add gretun mode gre local 66.1.1.161 remote 66.1.2.161 ttl 20 dev
eth0
ip addr add dev gretun 10.253.253.1 peer 10.253.253.2/24
ip link set dev gretun up
ip route add 10.2.0.0/16 via 10.253.253.2
box2:
modprobe ip_gre
ip link set gre0 up
ip tunnel add gretun mode gre local 66.1.2.161 remote 66.1.1.161 ttl 20...