linux + configuração sysctl.conf

0

É correto comentar a linha com # no arquivo sysctl.conf ?

Eu pergunto porque não tenho certeza se as linhas de comentário seriam lidas ou não.

more /etc/sysctl.conf

#net.core.rmem_default = 1048576
#net.core.rmem_max = 4194304
#net.core.wmem_default = 1048576
#net.core.wmem_max = 4194304


net.ipv4.tcp_timestamps=0
net.ipv4.tcp_sack=1
net.core.netdev_max_backlog=250000
net.core.rmem_max=4194304
net.core.wmem_max=4194304
net.core.rmem_default=4194304
net.core.wmem_default=4194304
net.core.optmem_max=4194304
net.ipv4.tcp_rmem=4096 87380 4194304
net.ipv4.tcp_wmem=4096 65536 4194304
    
por yael 17.04.2016 / 08:53

1 resposta

2

Um trecho de man sysctl.conf :

Comments are denoted by a "#" at the beginning of a line.

    
por 17.04.2016 / 09:01