回答:
最も簡単な方法は、再起動することです(以下が機能しない場合は、再起動して、変更されたかどうかを確認してください)。
2番目に簡単な方法は、iptables構成を使用してデーモンを再起動することです(google:restart daemon ubuntu)。
例(構成によって異なります):
/etc/init.d/iptables restart
/etc/init.d/networking restart
/etc/init.d/firewall restart
通常、ファイアウォールルールは設定ファイルにあります /etc/iptables.firewall.rules
ファイルで定義されたルールをアクティブにするには、それらを送信する必要がありますiptables-restore
(必要に応じて別のファイルを使用できます)。
sudo iptables-restore < /etc/iptables.firewall.rules
そして、あなたはそれらがアクティブになっていることを確認できます:
sudo iptables -L
コンピューターを起動するたびに同じルールを有効にする場合は、次のファイルを作成します。
sudo nano /etc/network/if-pre-up.d/firewall
このコンテンツでは:
#!/bin/sh
/sbin/iptables-restore < /etc/iptables.firewall.rules
そして、実行の許可を与えます。
sudo chmod +x /etc/network/if-pre-up.d/firewall
それがあなたを助けることを願っています=)
のサンプルファイル/etc/iptables.firewall.rules
:
*filter
# Allow all loopback (lo0) traffic and drop all traffic to 127/8 that doesn't use lo0
-A INPUT -i lo -j ACCEPT
-A INPUT -d 127.0.0.0/8 -j REJECT
# Accept all established inbound connections
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
# Allow all outbound traffic - you can modify this to only allow certain traffic
-A OUTPUT -j ACCEPT
# Allow HTTP and HTTPS connections from anywhere (the normal ports for websites and SSL).
-A INPUT -p tcp --dport 80 -j ACCEPT
-A INPUT -p tcp --dport 443 -j ACCEPT
# Allow SSH connections
#
# The -dport number should be the same port number you set in sshd_config
#
-A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT
# Allow ping
-A INPUT -p icmp -j ACCEPT
# Log iptables denied calls
-A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7
# Drop all other inbound - default deny unless explicitly allowed policy
-A INPUT -j DROP
-A FORWARD -j DROP
COMMIT
/etc/iptables.firewall.rules
が、sudo iptables-restore < /etc/iptables/rules.v4
私のために働きました。
ルールを実行した場合、ルールはすでに実行されており、リロードは不要です。構成ファイルはあるが、これまで見た中で最良の方法で実行されていない場合は、使用することですiptables-apply
(iptables拡張機能)。
iptables-apply -t 60 your_rules_file
これにより、ルールが60秒間(デフォルトでは10秒間)適用され、確認しない場合は元に戻されます。これにより、ルールのためにシステムから追い出された場合(例:sshを使用して操作している場合)であなたを救います。
代替として次を使用できます。
iptables-restore < your_rules_file; sleep 60; iptables-restore < clean_rules
IPtablesをリロードして、行った変更を検証する場合。以下のコマンドラインを使用してApacheを再起動することもできます。
/etc/init.d/apache2 stop
/etc/init.d/apache2 start
これらのコマンドは、Ubuntuのフレーバー、および以前に行われた最終的な変更によって異なる場合があります。
お役に立てれば。
ピエール