Difference between revisions of "IPv6 Kernel: Bagaimana mengakses /proc-filesystem"
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 70: | Line 70: | ||
==11.1.3. Values found in /proc-filesystems== | ==11.1.3. Values found in /proc-filesystems== | ||
− | + | Ada beberapa format yang dapat kita lihat di /proc-filesystem: | |
* BOOLEAN: simple a “0” (false) or a “1” (true) | * BOOLEAN: simple a “0” (false) or a “1” (true) | ||
− | |||
* INTEGER: an integer value, can be unsigned, too | * INTEGER: an integer value, can be unsigned, too | ||
− | + | more sophisticated lines with several values: sometimes a header line is displayed also, if not, have a look into the kernel source to retrieve information about the meaning of each value... |
Revision as of 10:43, 27 June 2013
Menggunakan “cat” dan “echo”
Menggunakan “cat” dan “echo” adalah cara yang paling sederhana untuk mengakses filesistem /proc, akan tetapi beberapa pra-syarat dibutuhkan agar itu bisa dilakukan,
- Filesistem /proc harus di enable di kernel, oleh karenanya waktu compile harus di set agar
CONFIG_PROC_FS=y
- Filesistem /proc harus di mount sebelumnya, dapat di test menggunakan
# mount | grep "type proc" proc on /proc type proc (rw,noexec,nosuid,nodev)
- Kita perlu ijin untuk read, dan kadang-kadang write (biasanya hanya root) ke filesistem /proc
Biasanya, hanya /proc/sys/* yang bisa di write, sementara lainnya biasanya readonly dan hanya bisa di baca informasinya saja.
Membaca Nilai
Nilai dari sebuah parameter dapat di baca menggunakan “cat”:
# cat /proc/sys/net/ipv6/conf/all/forwarding 0
Menset Nilai
Nilai baru dapat di set (jika parameter tersebut writeable) menggunakan “echo”:
# echo "1" >/proc/sys/net/ipv6/conf/all/forwarding
Menggunakan “sysctl”
Menggunakan program “sysctl” untuk mengakses switch kernel adalah cara modern yang digunakan sekarang.Kita dapat menggunakan cara tersebut jika filesystem /proc tidak di mount. Tapi kita hanya bisa mengakses /proc/sys/*!
Program “sysctl” termasuk dalam paket “procps” (di Red Hat Linux).
sysctl-interface harus di enble di kernel, artinya saat compile switch berikut harus di set
CONFIG_SYSCTL=y
Mengambil Nilai
Nilai dari parameter dapat di lihat sekarang:
# sysctl net.ipv6.conf.all.forwarding net.ipv6.conf.all.forwarding = 0
Menset Nilai
A new value can be set (if entry is writable):
# sysctl -w net.ipv6.conf.all.forwarding=1 net.ipv6.conf.all.forwarding = 1
Note: Don't use spaces around the “=” on setting values. Also on multiple values per line, quote them like e.g.
# sysctl -w net.ipv4.ip_local_port_range="32768 61000" net.ipv4.ip_local_port_range = 32768 61000
11.1.2.3. Additionals
Note: There are sysctl versions in the wild which displaying “/” instead of the “.”
For more details take a look into sysctl's manpage.
Hint: for digging fast into the settings, use the option “-a” (display all entries) in conjunction with “grep”.
11.1.3. Values found in /proc-filesystems
Ada beberapa format yang dapat kita lihat di /proc-filesystem:
- BOOLEAN: simple a “0” (false) or a “1” (true)
- INTEGER: an integer value, can be unsigned, too
more sophisticated lines with several values: sometimes a header line is displayed also, if not, have a look into the kernel source to retrieve information about the meaning of each value...