Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  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. # upstream = modem interface, red0.8 for vlan tagging (new infrastructure), ppp0 for red0.7 (vlan tagging, old infrastructure), red0 (no vlan tagging)
  26. phyint red0.8 upstream ratelimit 0 threshold 1
  27. altnet 239.35.0.0/8;
  28. altnet 217.0.119.194/16;
  29. altnet 193.158.35.0/24;
  30. altnet 192.168.220.198/32; #durch die IP der eigenen reciever ersetzen
  31. # lan interface of ipfire interacting with the iptv-device
  32. phyint green0 downstream ratelimit 0 threshold 1
  33. altnet 192.168.220.198/32; # durch die IP des eigenen Recievers ersetzen
  34.  
  35. #
  36. # disable all unused interfaces, especially the connectet to the dsl modem
  37. phyint lo disable
  38. phyint red0 disable
  39. phyint blue0 disable
  40. phyint orange0 disable
  41. phyint tun0 disable
  42. phyint ppp0 disable
  43. phyint imq0 disable
  44. phyint mast0 disable
  45.  
  46.  
  47. ##------------------------------------------------------
  48. ## Configuration for eth0 (Upstream Interface)
  49. ##------------------------------------------------------
  50. #phyint eth0 upstream ratelimit 0 threshold 1
  51. # altnet 10.0.0.0/8
  52. # altnet 192.168.0.0/24
  53.  
  54.  
  55. ##------------------------------------------------------
  56. ## Configuration for eth1 (Downstream Interface)
  57. ##------------------------------------------------------
  58. #phyint eth1 downstream ratelimit 0 threshold 1
  59.  
  60.  
  61. ##------------------------------------------------------
  62. ## Configuration for eth2 (Disabled Interface)
  63. ##------------------------------------------------------
  64. #phyint eth2 disabled
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement