22 Ekim 2016 Cumartesi

hosts.deny dosyası

Giriş
Bu dosya artık pek kullanılmıyor. Yani deprecated olarak kabul edilebilir. İçi şöyle. Sisteme bağlanmasına izin verilmeyen IP'ler belirtilir.
ALL: 192.168.1.2
ALL: example.org
Bu dosyanın kardeşi hosts.allow dosyasıdır.

hosts.allow dosyası

Giriş
Bu dosya artık pek kullanılmıyor. Yani deprecated olarak kabul edilebilir. İçi şöyle. Sisteme bağlanmasına izin verilen IP'ler belirtilir.
# /etc/hosts.allow: list of hosts that are allowed to access the system.
#                   See the manual pages hosts_access(5) and hosts_options(5).
#
# Example:    ALL: LOCAL @some_netgroup
#             ALL: .foobar.edu EXCEPT terminalserver.foobar.edu
#
# If you're going to protect the portmapper use the name "rpcbind" for the
# daemon name. See rpcbind(8) and rpc.mountd(8) for further information.
#

ALL: 192.168.1.2
Bu dosyanın kardeşi hosts.deny dosyasıdır.

14 Ekim 2016 Cuma

iptables tcpmss

Giriş
Açıklaması şöyle
tcpmss match options:
[!] --mss value[:value] Match TCP MSS range.
                (only valid for TCP SYN or SYN/ACK packets)

5 Ekim 2016 Çarşamba

alternatives komutu

Komut şu dizinde
/usr/sbin/alternatives
install seçeneği
Şöyle yaparız.
alternatives --install /usr/bin/java java /usr/java/default/bin/java 20000


zcat komutu

Giriş
gzip dosyalarının içini gösterir. 
Örnek
Şöyle yaparız.
zcat myfile.gz
Örnek
Şöyle yaparız. Bir dosyayı zipleyip daha sonra içine gösteririz. Bu çıktıyı tal ile kırparız ve  tekrar zipleriz. 
gzip file && zcat file.gz | tail -n +300000001 | gzip > newFile.gz

4 Ekim 2016 Salı

ifup komutu

ifdown komutunu tersini yapar.

Şöyle yaparız.
ifup eth0

ifdown komutu

ifup komutunun tersini yapar.

Şöyle yaparız
ifdown eth0

interfaces dosyası

Giriş
Debian tabanlı sistemlerde kullanılır. Şu dizindedir.
/etc/network/interfaces
İskeleti şöyledir.
# The loopback network interface
auto lo
iface lo inet loopback

# The eth0 network interface
auto eth0
iface eth0 inet dhcp
static ip
Şöyle yaparız.
auto eth0
iface eth0 inet static
address 192.168.1.100
gateway 192.168.1.1
netmask 255.255.255.0