Platon Technologies
not logged in Login Registration
EnglishSlovak
open source software development celebrating 10 years of open source development! Tuesday, March 19, 2024

Diff for scripts/shell/firewall/fw-universal.sh between version 2.116 and 2.117

version 2.116, 2018/06/28 23:13:42 version 2.117, 2018/08/23 04:34:58
Line 22 
Line 22 
 # Licensed under terms of GNU General Public License.  # Licensed under terms of GNU General Public License.
 # All rights reserved.  # All rights reserved.
 #  #
 # $Platon: scripts/shell/firewall/fw-universal.sh,v 2.115 2018/06/28 22:46:00 nepto Exp $  # $Platon: scripts/shell/firewall/fw-universal.sh,v 2.116 2018/06/28 23:13:42 nepto Exp $
 #  #
 # Changelog:  # Changelog:
 # 2003-10-24 - created  # 2003-10-24 - created
Line 767  do_ban_single_ip()
Line 767  do_ban_single_ip()
                 if [ "X$XEN_MODE" = "Xon" ]; then                  if [ "X$XEN_MODE" = "Xon" ]; then
                         print_info -ne " XEN_MODE ";                          print_info -ne " XEN_MODE ";
                 else                  else
                         $IPTABLES -A FORWARD -s $banned_ip -j DROP;                          # This does immediate connection termination, but it must be
                           # inserted (not appended) into chain, otherwise connection
                           # will still remain alive -- Nepto [2018-08-23]
                           $IPTABLES -I FORWARD -s $banned_ip -j DROP;
                 fi                  fi
         done          done
 } # }}}  } # }}}

Legend:
Removed from v.2.116  
changed lines
  Added in v.2.117

Platon Group <platon@platon.org> http://platon.org/
Copyright © 2002-2006 Platon Group
Site powered by Metafox CMS
Go to Top