Displaying 1 result from an estimated 1 matches for "subnet_r".
Did you mean:
  subnet_t
  
2006 Sep 11
2
[HELP] Mutlicast over GRE tunnel
...8.50.250
RtrB interfaces:
eth0 192.168.20.98
eth1 192.168.60.1
HOSTB in LAN-B
eth0 192.168.60.250
Here is the setup script on RtrB:
      1 #!/bin/sh
      2
      3 END_L=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...