Skip to content

Commit

Permalink
Update /etc/default/stoneridge
Browse files Browse the repository at this point in the history
First, fix the comment to tell the ACTUAL story we need with the
maxburst and limit values. Second, add the values we use for umts and
gsm into the interface config, as well, so it's obvious what we're
doing.
  • Loading branch information
nwgh committed Mar 22, 2013
1 parent 15a7f5e commit a417a5c
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions linux/init/stoneridge
Expand Up @@ -18,22 +18,44 @@ MYDEV=eth1


### THESE ITEMS APPLY ONLY TO STONE RIDGE SERVERS ### THESE ITEMS APPLY ONLY TO STONE RIDGE SERVERS
# What data rate to shape the interface to # What data rate to shape the interface to
# Broadband:
RATE=10mbit RATE=10mbit
# UMTS:
#RATE=1mbit
# GSM:
#RATE=400kbit


# MAXBURST and LIMIT help to smooth traffic out over a full bucket period, # MAXBURST and LIMIT help to smooth traffic out over a full bucket period,
# to prevent things from being bursty. MAXBURST should be equal to RATE # to prevent things from being bursty. MAXBURST should be the either the rate
# while LIMIT should be MAXBURST*3 # reduced by an SI prefix (so 10mbit->10240) or 1600, whichever is larger.
# LIMIT should be MAXBURST*3
# Broadband:
MAXBURST=10240 MAXBURST=10240
LIMIT=30720 LIMIT=30720
# UMTS/GSM:
#MAXBURST=1600
#LIMIT=4800


# What sort of latency to have on the interface. # What sort of latency to have on the interface.
# Broadband:
LATENCY=90ms LATENCY=90ms
# UMTS:
#LATENCY=150ms
# GSM:
#LATENCY=300ms


# JITTER and CORRELATION control jitter on the interface. JITTER is the # JITTER and CORRELATION control jitter on the interface. JITTER is the
# average number of ms of jitter, while CORRELATION is how similar a packet's # average number of ms of jitter, while CORRELATION is how similar a packet's
# actual jitter will be to the previous packet's jitter # actual jitter will be to the previous packet's jitter
# Broadband:
JITTER= JITTER=
CORRELATION= CORRELATION=
# UMTS:
#JITTER=20ms
#CORRELATION="25%"
# GSM:
#JITTER=40ms
#CORRELATION="25%"


# What network configuration the above settings correspond to # What network configuration the above settings correspond to
NETCONFIG=broadband NETCONFIG=broadband
Expand Down

0 comments on commit a417a5c

Please sign in to comment.