소스 검색

Removed some data from variables

Allen 1 주 전
부모
커밋
5660e1316c
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      resetfirewall.sh

+ 4 - 4
resetfirewall.sh

@@ -1,10 +1,10 @@
 #!/bin/bash
 #
 
-BADGUYS_FILE="/root/ci-badguys.txt"
-CHAIN_NAME="CINSARMY_IPS"
-FIREWALL="/sbin/iptables"
-ETH="eth1"
+BADGUYS_FILE=""  # The location (full path) where you want to download the list
+CHAIN_NAME="CINSARMY_IPS"  # The firewall chain to hold the cinsarmy rules
+FIREWALL="/sbin/iptables"  # The path to iptables
+ETH=""  # The name of the ethernet port you'd like to apply these rules to. Example: eth1
 
 echo "Clearing firewall."
 $FIREWALL -P INPUT ACCEPT