sysctl命令详解

  sysctl设置和显示在/proc/sys目录中的内核参数.能用sysctl来设置或重新设置连网功能,如IP转发、IP碎片去除及源路由检查等。用户只需要编辑/etc/sysctl.conf文件,即可手工或自动执行由sysctl控制的功能。
命令格式:
sysctl [-n] [-e] -w variable=value
sysctl [-n] [-e] -p  (default /etc/sysctl.conf)
sysctl [-n] [-e] -a
 
常用参数的意义:
-w   临时改动某个指定参数的值,如
sysctl -w net.ipv4.ip_forward=1
-a   显示所有的系统参数
-p   从指定的文件加载系统参数,如不指定即从/etc/sysctl.conf中加载
如果仅仅是想临时改动某个系统参数的值,能用两种方法来实现,例如想启用IP路由转发功能:
1) #echo 1 > /proc/sys/net/ipv4/ip_forward
2) #sysctl -w net.ipv4.ip_forward=1
以上两种方法都可能即时开启路由功能,但如果系统重启,或执行了
# service network restart
命令,所设置的值即会丢失,如果想永久保留设置,能修改/etc/sysctl.conf文件
将 net.ipv4.ip_forward=0改为net.ipv4.ip_forward=1

**********************
sysctl man page
NAME
sysctl - configure kernel parameters at runtime
SYNOPSIS
sysctl [-n] [-e] variable ...
sysctl [-n] [-e] [-q] -w variable=value ...
sysctl [-n] [-e] [-q] -p 
sysctl [-n] [-e] -a
sysctl [-n] [-e] -A
DESCRIPTION
sysctl  is used to modify kernel parameters at runtime.    The parameters
available are those listed under /proc/sys/.  Procfs  is     required  for
sysctl(8)  support  in  Linux.    You can use sysctl(8) to both read and
write sysctl data.
PARAMETERS
variable
The name of a key to read from.  An  example  is    kernel.ostype.
The ’/’ separator is also accepted in place of a ’.’.
variable=value
To set a key, use the form variable=value, where variable is the
key and value is the value to set it to.    If the value  contains
quotes or characters which are parsed by the shell, you may need
to enclose the value in double quotes.   This  requires  the  -w
parameter to use.
-n     Use  this option to disable printing of the key name when print-
ing values.
-e     Use this option to ignore errors about unknown keys.
-N     Use this option to only print the names. It may be  useful  with
shells that have programmable completion.
-q     Use this option to not display the values set to stdout.
-w     Use this option when you want to change a sysctl setting.
-p     Load   in      sysctl   settings   from   the   file     specified  or
/etc/sysctl.conf if none given.  Specifying - as filename     means
reading data from standard input.
-a     Display all values currently available.
-A     Display all values currently available in table form.
EXAMPLES
/sbin/sysctl -a
/sbin/sysctl -n kernel.hostname
/sbin/sysctl -w kernel.domainname="example.com"
/sbin/sysctl -p /etc/sysctl.conf
FILES
/proc/sys /etc/sysctl.conf
SEE ALSO
sysctl.conf(5)
BUGS
The -A parameter behaves just as -a does.
AUTHOR
George Staikos, 
21 Sep 1999                 SYSCTL(8) 
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值