Skip to content

Instantly share code, notes, and snippets.

@michaelcoyote
Created August 27, 2014 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelcoyote/e253cbf2eaba1654f192 to your computer and use it in GitHub Desktop.
Save michaelcoyote/e253cbf2eaba1654f192 to your computer and use it in GitHub Desktop.
sysctl recomendations for NetWorker servers & storage nodes
## sysctl.conf recommendations for NetWorker
#
# These are from the NetWorker Performance Optimization Planning Guide
# these are current as of NW 8.1. Please check the guide to insure
# that these settings are what you want on your server
#
# add the following parameters to the /etc/sysctl.conf file
# and run the /sbin/sysctl -p command
#
#
## For high-speed network interfaces, increase size of TCP send/receive buffers
net.core.rmem_default = 262144
net.core.wmem_default = 262144
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_rmem = 8192 524288 16777216
net.ipv4.tcp_wmem = 8192 524288 16777216
#
## Set the recommended RPC value
sunrpc.tcp_slot_table_entries = 64
#
## Another method is to enable dynamic TCP window scaling.
## This requires compatible equipment in the data path
# net.ipv4.tcp_window_scaling=1
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment