Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
f39b4fb3
Commit
f39b4fb3
authored
Jan 21, 2004
by
Robert Ricci
Browse files
Up the buffer sizes for UNIX domain sockets to help syslogd scale
better.
parent
6e61de18
Changes
2
Hide whitespace changes
Inline
Side-by-side
doc/UPDATING
View file @
f39b4fb3
...
...
@@ -6,6 +6,14 @@ This file is in the same format at the FreeBSD UPDATING file, whis is
to say, in reverse chronological order, with the date of the change
in YYYYMMDD format.
20040120:
Bumped up the sizes on some buffers to help network performance.
Add the following two lines to /etc/sysctl.conf:
net.local.dgram.maxdgram=65536
net.local.dgram.recvspace=65536
20040112:
Big change to bootinfo sequence.
...
...
install/boss-install.in
View file @
f39b4fb3
...
...
@@ -85,6 +85,8 @@ my $RNDC_KEY = "/usr/local/etc/rndc.key";
my
$LOADER_CONF
=
"
/boot/loader.conf
";
my
$SYSCTL_CONF
=
"
/etc/sysctl.conf
";
#
# Some directories we care about
#
...
...
@@ -546,6 +548,14 @@ Phase "loader.conf", "Setting up $LOADER_CONF", sub {
);
};
Phase
"
sysctl.conf
",
"
Setting up
$SYSCTL_CONF
",
sub
{
DoneIfEdited
(
$SYSCTL_CONF
);
AppendToFileFatal
(
$SYSCTL_CONF
,
"
net.local.dgram.maxdgram=65536
",
"
net.local.dgram.recvspace=65536
"
);
};
print
"
----------------------------------------------------------------------
\n
";
print
"
Installation completed succesfully!
\n
";
print
"
Please reboot this machine before proceeding with boss setup
\n
";
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment