|
CONFIG_PROC_FS=y
# mount | grep "type proc" none on /proc type proc (rw)
# cat /proc/sys/net/ipv6/conf/all/forwarding 0
# echo "1" >/proc/sys/net/ipv6/conf/all/forwarding
CONFIG_SYSCTL=y
# sysctl net.ipv6.conf.all.forwarding net.ipv6.conf.all.forwarding = 0
# sysctl -w net.ipv6.conf.all.forwarding=1 net.ipv6.conf.all.forwarding = 1
Not | |
---|---|
Değer atarken "=" den önce veya sonra boşluk kullanmayın. Bir satırda çoklu değer atanacak ise bu aşağıdaki gibi yapılmalıdır:
# sysctl -w net.ipv4.ip_local_port_range="32768 61000" net.ipv4.ip_local_port_range = 32768 61000 |
İpucu | |
---|---|
Ayarlara hızlıca göz atmak için -a (tüm kayıtları göster) seçeneğini grep ile birlikte kullanın.
|
|