-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
mrouted.conf
54 lines (44 loc) · 1.99 KB
/
mrouted.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# mrouted.conf,v 3.8 1995/11/29 22:40:47 fenner Rel
#
# This is the configuration file for "mrouted", an IP multicast router.
# mrouted looks for it in "/etc/mrouted.conf".
#
# NOTE: any phyint commands MUST precede any tunnel commands
# NOTE: the mask-len is the no. of leading 1's in the mask
# NOTE: rate_limit is in kilobits, and defaults to 500 for tunnels
#
# name <BOUNDNAME> <SCOPED-ADDR>/<LEN>
#name LOCAL 239.255.0.0/16
#name EE 239.254.0.0/16 # i.e. the EE dept wants local groups
# Life time in seconds for a graft, [60, ..], default 300.
#cache-lifetime 300
# Query interval can be [1,1024], default 125. Recommended not go below 10
#igmp-query-interval 125
# Last member query interval [1,1024], default 1. The igmp-robustness
# setting controls the last member query count.
#igmp-query-last-member-interval 1
# Robustness can be [2,10], default 2. Recommended to use 2
#igmp-robustness 2
# IP Option Router Alert is enabled by default
#no router-alert
# By default mrouted runs on all multicast capable interfaces. Use this
# command to disable all phyints by defaullt, and then the below form to
# selectively enable each interface to run on.
#no phyint
# phyint <IFNAME|LOCAL-ADDR> [enable | disable] [igmpv1 | igmpv2 | igmpv3]
# [metric <M>] [threshold <TTL>] [rate-limit <BPS>]
# [boundary (<BOUNDNAME>|<SCOPED-ADDR>/<LEN>)]
# [altnet (<SUBNET>/<LEN>|<SUBNET>)]
# [static-group <GROUP>] [join-group <GROUP>]
#
# Example of use of named boundary
#phyint le1 boundary EE # le1 is our interface to comp sci,
# # keep them away from our local groups
# tunnel <IFNAME|LOCAL-ADDR> <REMOTE-ADDR> [srcrt]
# [metric <M>] [threshold <TTL>] [rate-limit <BPS>]
# [boundary (<BOUNDNAME>|<SCOPED-ADDR>/<LEN>)]
#tunnel 128.4.0.77 128.4.0.8 metric 1 threshold 64 rate-limit 500 # <-- REPLACE
# boundary LOCAL
#
# You might want to specify a boundary on your tunnel to the outside world,
# as above.