Debian/基本設定
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(Debian/基本設定);
*目次 [#z761f011]
#contents
*関連ページ [#obc06251]
-[[Debian]]
*参考情報 [#o3dc4db0]
*概要 [#s83b902d]
-Debian 8をミニマルでインストールした場合を想定。
※ミニマルインストールというオプションは存在しないので、「...
*最初に行う設定 [#t4ff30e9]
-LANGを変更。「export LANG=C」を追加。
nano .bashrc
-ミニマルインストールだとsudoコマンドがインストールされて...
apt-get install sudo
-[[sudo]]の設定を行う。
-shをdashからbashへ変更。デフォルトシェルとしてdashを使用...
dpkg-reconfigure dash
*ネットワーク設定 [#r119ebbe]
-さくらのVPSの場合インストール時に設定される?
- /etc/network/interfacesを編集し、固定IPを割り当てる。
#pre{{
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.0.45
netmask 255.255.255.0
gateway 192.168.0.1
}}
-再起動
sudo /sbin/ifdown eth0
sudo /sbin/ifup eth0
-/etc/resolv.confにDNSサーバーの設定も追加しておく。
*SELinux [#o643445e]
-Debianの場合SELinuxは最初から無効なのでそのままでよい。
*iptablesを使用する [#o201c2f7]
-[[Debian上でのiptablesの設定方法 - インターネッツの砂浜...
-Debianの場合最初からiptablesがインストールされている。
-iptables-persistentをインストールして自動起動などを行う...
sudo aptitude install iptables-persistent
-以下の2つの設定ファイルを編集する
/etc/iptables/rules.v4
/etc/iptables/rules.v6
-rules.v4の編集。[[iptables - Debian Wiki:https://wiki.de...
#pre{{
*filter
# Allows all loopback (lo0) traffic and drop all traffic ...
-A INPUT -i lo -j ACCEPT
-A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT
# Accepts all established inbound connections
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
# Allows all outbound traffic
# You could modify this to only allow certain traffic
-A OUTPUT -j ACCEPT
# Allows HTTP and HTTPS connections from anywhere (the no...
-A INPUT -p tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 443 -j ACCEPT
# Allows SSH connections
# The --dport number is the same as in /etc/ssh/sshd_config
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT
# Now you should read up on iptables rules and consider w...
# for everyone is really desired. Most likely you will on...
# Allow ping
# note that blocking other types of icmp packets is cons...
# remove -m icmp --icmp-type 8 from this line to allow a...
# https://security.stackexchange.com/questions/22711
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
# log iptables denied calls (access via 'dmesg' command)
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "ipta...
# Reject all other inbound - default deny unless explicit...
-A INPUT -j REJECT
-A FORWARD -j REJECT
COMMIT
}}
-rules.v6の設定。[[Debian 8(jessie)をインストールすると...
#pre{{
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT DROP [0:0]
COMMIT
}}
-ルール確認。iptablels-persistentコマンドは存在しない。ne...
netfilter-persistent start
iptables -L
*Exim [#de77fc81]
-デフォルトのMTAはExim。
-ローカル配送のみで設定されている。
*サービス管理 [#z2ca21a3]
-[[Debian 8 (Jessie) - サービスの管理! - mk-mode BLOG:ht...
-[[Debian 8 JessieをCUIで起動する方法:http://note.kurodig...
-[[Debian jessieでLEMP環境を整える - 気まぐれ:https://blo...
-基本的にsystemdを使って管理できるようだが、対応していな...
終了行:
&tag(Debian/基本設定);
*目次 [#z761f011]
#contents
*関連ページ [#obc06251]
-[[Debian]]
*参考情報 [#o3dc4db0]
*概要 [#s83b902d]
-Debian 8をミニマルでインストールした場合を想定。
※ミニマルインストールというオプションは存在しないので、「...
*最初に行う設定 [#t4ff30e9]
-LANGを変更。「export LANG=C」を追加。
nano .bashrc
-ミニマルインストールだとsudoコマンドがインストールされて...
apt-get install sudo
-[[sudo]]の設定を行う。
-shをdashからbashへ変更。デフォルトシェルとしてdashを使用...
dpkg-reconfigure dash
*ネットワーク設定 [#r119ebbe]
-さくらのVPSの場合インストール時に設定される?
- /etc/network/interfacesを編集し、固定IPを割り当てる。
#pre{{
#iface eth0 inet dhcp
iface eth0 inet static
address 192.168.0.45
netmask 255.255.255.0
gateway 192.168.0.1
}}
-再起動
sudo /sbin/ifdown eth0
sudo /sbin/ifup eth0
-/etc/resolv.confにDNSサーバーの設定も追加しておく。
*SELinux [#o643445e]
-Debianの場合SELinuxは最初から無効なのでそのままでよい。
*iptablesを使用する [#o201c2f7]
-[[Debian上でのiptablesの設定方法 - インターネッツの砂浜...
-Debianの場合最初からiptablesがインストールされている。
-iptables-persistentをインストールして自動起動などを行う...
sudo aptitude install iptables-persistent
-以下の2つの設定ファイルを編集する
/etc/iptables/rules.v4
/etc/iptables/rules.v6
-rules.v4の編集。[[iptables - Debian Wiki:https://wiki.de...
#pre{{
*filter
# Allows all loopback (lo0) traffic and drop all traffic ...
-A INPUT -i lo -j ACCEPT
-A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT
# Accepts all established inbound connections
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
# Allows all outbound traffic
# You could modify this to only allow certain traffic
-A OUTPUT -j ACCEPT
# Allows HTTP and HTTPS connections from anywhere (the no...
-A INPUT -p tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 443 -j ACCEPT
# Allows SSH connections
# The --dport number is the same as in /etc/ssh/sshd_config
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT
# Now you should read up on iptables rules and consider w...
# for everyone is really desired. Most likely you will on...
# Allow ping
# note that blocking other types of icmp packets is cons...
# remove -m icmp --icmp-type 8 from this line to allow a...
# https://security.stackexchange.com/questions/22711
-A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
# log iptables denied calls (access via 'dmesg' command)
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "ipta...
# Reject all other inbound - default deny unless explicit...
-A INPUT -j REJECT
-A FORWARD -j REJECT
COMMIT
}}
-rules.v6の設定。[[Debian 8(jessie)をインストールすると...
#pre{{
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT DROP [0:0]
COMMIT
}}
-ルール確認。iptablels-persistentコマンドは存在しない。ne...
netfilter-persistent start
iptables -L
*Exim [#de77fc81]
-デフォルトのMTAはExim。
-ローカル配送のみで設定されている。
*サービス管理 [#z2ca21a3]
-[[Debian 8 (Jessie) - サービスの管理! - mk-mode BLOG:ht...
-[[Debian 8 JessieをCUIで起動する方法:http://note.kurodig...
-[[Debian jessieでLEMP環境を整える - 気まぐれ:https://blo...
-基本的にsystemdを使って管理できるようだが、対応していな...
ページ名: