Zmiany pomiędzy wersją 1 and wersją 2 dla DeployerGuide/Security

Pokaż
Ignoruj:
Data i czas:
07/07/14 14:21:13 (10 years temu)
Autor:
mbielecki (IP: 87.207.11.179)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Security

    v1 v2  
    11= Zabezpieczanie systemu operacyjnego Linux na serwerze eDokumenty = 
    22 
     3== SSH == 
     4 
     5{{{ 
     6nano /etc/ssh/sshd_config 
     7}}} 
     8 
     9Zmiana portu i zablokowanie logowania jako użytkownik root 
     10 
     11{{{ 
     12# What ports, IPs and protocols we listen for 
     13Port 2134 
     14 
     15# Authentication: 
     16PermitRootLogin no 
     17}}} 
     18 
     19{{{ 
     20service ssh restart 
     21}}} 
     22 
     23== Opcje montowania == 
     24 
     25{{{ 
     26nano /etc/fstab 
     27}}} 
     28 
     29Dodanie opcji nodev,nosuid,noexec do punktu montowania dla /tmp 
     30 
     31{{{ 
     32/dev/mapper/vg0-tmp   /tmp    ext4    defaults,nodev,nosuid,noexec        1 2 
     33}}} 
     34 
     35{{{ 
     36mount -o remount /tmp 
     37}}} 
     38 
     39== MOTD == 
     40 
     41{{{ 
     42nano /etc/motd.tail 
     43}}} 
     44 
     45{{{ 
     46############################################################################### 
     47##                                                                           ## 
     48###                         Authorized Access Only!                         ### 
     49##                                                                           ## 
     50############################################################################### 
     51}}} 
     52 
     53== Firewall == 
     54 
     55{{{ 
     56iptables -A INPUT -i lo -j ACCEPT 
     57iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT 
     58iptables -A INPUT -m state --state NEW -p tcp --dport 2134 -s 213.227.67.33 -m comment --comment "BetaSoft"  -j ACCEPT 
     59iptables -A INPUT -m state --state NEW -p tcp --dport 443 -j ACCEPT 
     60iptables -A INPUT -p icmp --icmp-type 8 -j ACCEPT 
     61 
     62iptables -P INPUT DROP 
     63iptables -P FORWARD DROP 
     64}}} 
     65 
     66Zapisanie aktualnych reguł firewall'a do pliku 
     67 
     68{{{ 
     69iptables-save > /etc/iptables.rules 
     70}}} 
     71 
     72Wczytywanie reguł firewall'a z pliku 
     73 
     74{{{ 
     75nano /etc/network/interfaces 
     76}}} 
     77 
     78{{{ 
     79auto eth0 
     80iface eth0 inet static 
     81 
     82  pre-up iptables-restore < /etc/iptables.rules 
     83}}} 
     84