Annotation of embedaddon/igmpproxy/igmpproxy.conf, revision 1.1.1.1

1.1       misho       1: ########################################################
                      2: #
                      3: #   Example configuration file for the IgmpProxy
                      4: #   --------------------------------------------
                      5: #
                      6: #   The configuration file must define one upstream
                      7: #   interface, and one or more downstream interfaces.
                      8: #
                      9: #   If multicast traffic originates outside the
                     10: #   upstream subnet, the "altnet" option can be
                     11: #   used in order to define legal multicast sources.
                     12: #   (Se example...)
                     13: #
                     14: #   The "quickleave" should be used to avoid saturation
                     15: #   of the upstream link. The option should only
                     16: #   be used if it's absolutely nessecary to
                     17: #   accurately imitate just one Client.
                     18: #
                     19: ########################################################
                     20: 
                     21: ##------------------------------------------------------
                     22: ## Enable Quickleave mode (Sends Leave instantly)
                     23: ##------------------------------------------------------
                     24: quickleave
                     25: 
                     26: 
                     27: ##------------------------------------------------------
                     28: ## Configuration for eth0 (Upstream Interface)
                     29: ##------------------------------------------------------
                     30: phyint eth0 upstream  ratelimit 0  threshold 1
                     31:         altnet 10.0.0.0/8 
                     32:         altnet 192.168.0.0/24
                     33: 
                     34: 
                     35: ##------------------------------------------------------
                     36: ## Configuration for eth1 (Downstream Interface)
                     37: ##------------------------------------------------------
                     38: phyint eth1 downstream  ratelimit 0  threshold 1
                     39: 
                     40: 
                     41: ##------------------------------------------------------
                     42: ## Configuration for eth2 (Disabled Interface)
                     43: ##------------------------------------------------------
                     44: phyint eth2 disabled
                     45: 
                     46: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>