리눅스 + sysctl.conf 구성

리눅스 + sysctl.conf 구성

#파일의 주석 처리된 행이 정확합니까 sysctl.conf?

댓글라인이 읽혀질지 모르겠어서 여쭤봅니다.

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

답변1

발췌 man sysctl.conf:

주석은 줄 시작 부분에 "#"으로 표시됩니다.

관련 정보