한국어

네트워킹

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


https://www.digitalocean.com/community/tutorials/how-to-protect-ssh-with-fail2ban-on-debian-7


How To Protect SSH with fail2ban on Debian 7


Introduction

Having a server or computer connected to a network comes with a certain amount of risk. Any machine, including a VPS, connected to the internet is a potential target for malicious attacks.

While having a well-configured firewall will prevent many kinds of illegitimate access, you still need to open up certain services to allow yourself the ability to log in and administer the server. SSH is the service most commonly used to log into remote systems, and so it also is one of the most frequently targeted.

Fortunately, there is a tool available that can mitigate this attack vector, called fail2ban. This can be configured to allow legitimate logins using SSH, but ban IP addresses after they have failed to authenticate correctly after a set number of times.

We will be installing and configuring this software on a Debian 7 VPS.

Step One –– Install fail2ban

Debian includes fail2ban in its default repositories. We can download and install it with the following set of commands:

sudo apt-get update
sudo apt-get install fail2ban

This will not only install fail2ban, it will also start the service with the default settings.

Step Two –– Configure fail2ban

The fail2ban configuration is kept in the /etc/fail2ban directory. The configuration file that specifies the default banning rules is called jail.conf.

Because of the way that fail2ban updates its configuration files when the program has a new version, we should not edit the default configuration file.

Instead, we should copy it to a new location and edit it there:

cd /etc/fail2ban
sudo cp jail.conf jail.local
sudo nano jail.local

Here, we can change any settings that we do not like that were set in the default configuration.

Default Configuration

The section that begins [DEFAULT] configures defaults that may be overridden in more specific contexts later in the configuration. It is a good idea to have strong defaults.

Most of the settings that have been given are good selections for default options. However, there are some areas that would benefit from configuration.

Ban Defaults

We can configure the way that fail2ban implements its banning by modifying a few parameters. Here are some of the more important ones:

  • ignoreip: This parameter takes a list of IP addresses that should be excluded from fail2ban rules. The IP addresses or blocks listed here will not have restrictions placed on them, so choose them wisely and specifically.

    • IP addresses and ranges are separated by white space.
    • You should add your home or work IP address to the end of the list so that you won't be blocked if you are having trouble logging in.
    • This will look like: "ignoreip = 127.0.0.1/8 YOUR_IP_ADDRESS"
  • bantime: This lists the amount of time a ban will last if the client fails to authenticate correctly. It is given in seconds.

    • The default value bans clients for 10 minutes.
  • maxretry: This parameter specifies the number of attempts are allowed before a ban is instituted.

Define Ban Actions

When a ban is needed, fail2ban can procede in quite a few different ways. It decides on the necessary actions by looking at the following parameters:

  • banaction: This setting specifies the configuration file that will be used when a ban is needed.

    • The value of this parameter refers to a file in the /etc/fail2ban/action.d directory, which will handle the actual banning process.
    • The default value uses iptables (a firewall) to ban an IP on all ports when it fails authentication. We will look at the specific banning rules later.
  • action: This parameter specifies one of the action shortcuts that are listed above it. It basically calls a banaction script (as mentioned above), and then assigns appropriate information to variables and passes them to the script.

    • The default action is action_, which calls the script and passes the name, port, protocol, and chain to the script. It does not send an email address or log lines as some of the other actions do.

Configure Email Alerts

If you would like to configure fail2ban to email you when it institutes a ban, you can configure that in the default section as well.

If you have configured a mail server on your machine, you can configure fail2ban to send email to an external address. Otherwise, you can have it delivered to a local unix account.

There are two relevant parameters:

  • destemail: This option sets the email address that will be notified in the event of a banning.

    • The default value, "root@localhost", will deliver mail to the root account of the current computer.
    • If you have a mail server configured, feel free to change this to an external mailing address.
  • mta: This specifies the mail agent that will be used to deliver mail.

    • If you have a mail server configured with sendmail, leave the default option (sendmail), as is.
    • If you do not have a mail server configured, but want local mail delivered to a user account, you can change "sendmail" to "mail".

If you do wish to configure email, you will have to edit the action parameter as mentioned above. Change the action to either "actionmw" or "actionmwl" to have the email information passed to the banning script.

If you have configured local mail delivery, you can check the mail by typing:

sudo nano /var/mail/mail

Configure Application-Specific Jails

Further down in the file, you should see sections marked like this:

[application_name]

You should be able to decipher most of the parameters.

The filter parameter specifies a file within the /etc/fail2ban/filter.d directory. This tells fail2ban how to parse the log file of the program for failed authentication attemts.

The logpath variable holds the path to the service's log file, which fail2ban will parse for failures.

You can override any of the other default parameters here. For instance, the maxretry option is different for SSH than the dault option in a Debian install.

Step Three –– Configure iptables

We will not actually be doing much configuration of iptables, but we will take a look at the configuration file that implements its behavior. This will help us understand how fail2ban implements its banning policies.

Open the file that was specified in our jail configuration under the banaction parameter:

sudo nano /etc/fail2ban/action.d/iptables-multiport.conf

Here, we can see what actually happens when fail2ban calls to have an IP banned. It uses the iptables firewall software to implement rules.

When fail2ban begins, it calls these lines:

actionstart = iptables -N fail2ban-<name>
              iptables -A fail2ban-<name> -j RETURN   # questionable usefulness
              iptables -I <chain> -p <protocol> -m multiport --dports <port> -j fail2ban-<name>

This initializes the environment to pass traffic through a filtering chain.

The iptables software controls traffic based on "funnels", or "chains". Each of these funnels applies rules on all traffic that is given to it in order to decide if it is acceptable or not.

The first line, iptables -N fail2ban-<name>, creates a new chain named "fail2ban-" with the name of the service following. This will hold the rules that ban certain IP addresses.

The next line, iptables -A fail2ban-<name> -j RETURN, adds a rule to the chain we just created, which tells iptables to return control to the chain that called this chain.

The last line, iptables -I <chain> -p <protocol> -m multiport --dports <port> -j fail2ban-<name>, adds a rule to the INPUT chain (specified in our jail.local file) which immediately passes control to our new fail2ban chain.

So, the current flow is that incoming traffic is handled by our INPUT chain. At this point, it hits the rule passing control to the fail2ban chain. The first rule in this chain passes control back to the chain that called it, the INPUT chain.

So, at this point, control is just passed back and forth with nothing actually happening. However, we have set up a control flow that will accomodate additional rules. When we need to ban an IP address, we can add another rule to the fail2ban chain right above where it passes control back to the INPUT chain.

We can see the complementary actions for tearing down the fail2ban rules, for when the service stops, here:

actionstop = iptables -D <chain> -p <protocol> -m multiport --dports <port> -j fail2ban-<name>
             iptables -F fail2ban-<name>
             iptables -X fail2ban-<name>

This basically just reverses all of the rules that we've just built up.

When you ban a client, this rule is implemented:

actionban = iptables -I fail2ban-<name> 1 -s <ip> -j DROP

This tells iptables to drop any packets from that IP address, which effectively bans them from even attempting to authenticate again.

When the bantime has elapsed, this rule reverses the ban:

actionunban = iptables -D fail2ban-<name> -s <ip> -j DROP

If you would like to see which rules are implemented and which IP addresses are currently banned, you can check the current iptables rules by typing:

sudo iptables -L

If any clients are banned, they will be in the bottom chain.

Step Four –– Restart fail2ban

When you've made any changes to your configuration, you need to restart fail2ban to implement the new rules.

You can do this by typing this command:

sudo service fail2ban restart

To test your new rules, you can create another VPS instance and authenticate incorrectly on purpose enough times from that machine to trigger the ban rule. After that, your SSH call will not even return a password prompt.

If you look at the iptable rules on the host you configured, you will see a new rule:

sudo iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         
fail2ban-ssh  tcp  --  anywhere             anywhere             multiport dports ssh

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         

Chain fail2ban-ssh (1 references)
target     prot opt source               destination         
DROP       all  --  xxx-xxxxxxxx.dyn.xxxxxxxxx.net  anywhere            
RETURN     all  --  anywhere             anywhere

You can see the new rule second from the bottom.

Conclusion

You should now have some additional security by making your server a harder target to brute force. While this is a great start, a more complete solution would be disabling password authentication completely and allowing only key-based authentication.

By Justin Ellingwood
조회 수 :
121163
등록일 :
2017.09.12
20:30:28 (*.160.88.18)
엮인글 :
http://webs.co.kr/index.php?document_srl=3311870&act=trackback&key=764
게시글 주소 :
http://webs.co.kr/index.php?document_srl=3311870
List of Articles
번호 제목 글쓴이 날짜 조회 수
123 Tls ssl admin 2020-02-13 9798
122 Redis 소개와 설치 방법, 보안 설정 방법(ip 허용, 비밀번호 설정)등 빠르게 세팅하기 admin 2020-01-10 14790
121 debian Ubuntu 에서 Timezone 확인 및 변경하기 쉽게 간단하게 date time admin 2019-11-09 14481
120 Install Missing ifconfig Command on Debian ip address admin 2019-11-05 26401
119 데비안 vs 우분투 : 데스크탑과 서버로 비교 해외 글 과 댓글 admin 2019-10-31 25949
118 Debian vs Ubuntu: Compared as a Desktop and as a Server 데비안 vs 우분투 비교 admin 2019-10-31 15866
117 Error : unary operator expected – 쉘스크립트 타입관련 문법 admin 2019-09-14 22928
116 vi 에디터에서 ^M 문자 한번에 모두 지우기 ( ^M, ^L을 이해하자) admin 2019-06-20 14935
115 데비안 제시 jessie 소스리스트 sourcelist admin 2019-06-17 13776
114 File Descriptor (파일 디스크립터) 설명 무엇인가 사용방법 admin 2019-06-01 18348
113 Start / Stop and Restart Apache 2 Web Server Command 아파치 시작 스톱 명령어 admin 2019-04-08 36913
112 DebianPackageManagement admin 2019-04-08 12112
111 리눅스 우분투, 32비트 64비트 확인 명령어 admin 2019-01-06 16622
110 How to install a Debian 9 (Stretch) Minimal Server 데비안 9 설치 admin 2018-06-13 63520
109 Which is better, GCC or Clang? admin 2018-06-13 62947
108 고정ip설정, dns설정(데비안) linux 리눅스 admin 2018-06-13 19405
107 [리눅스] 부팅 시 자동 실행 프로그램 등록|작성자 나눔HN admin 2018-06-01 32628
106 리눅스 서버 유지보수 점검 메인터넌스 상황 파악 admin 2018-04-14 18420
105 Top 20 OpenSSH Server Best Security Practices 보안 대책 실제 적용 admin 2018-04-14 23378
104 Start Stop Restart Apache 2 Web Server Command Debian Ubuntu CentOS RHEL Fedora admin 2018-04-14 17859
103 리눅스 한글 2014 뷰어 다운로드 - hwpviewer admin 2018-03-28 19543
102 리눅스를 백업 복구 tar admin 2018-03-28 21706
101 zip 압축 파일 및 텍스트 파일의 한글 깨짐 해결 방법 admin 2018-03-28 30122
100 Lnux export how to admin 2017-12-17 23515
99 What's the difference between “adduser” and “useradd”? admin 2017-12-15 22235
98 useradd Command 리눅스 admin 2017-12-15 63608
97 How To Install Java with Apt-Get on Ubuntu 16.04 oracle java admin 2017-10-13 47245
96 우분투 Linux(Ubuntu)에 Java설치 및 환경 설정하는 방법 admin 2017-10-13 25490
95 우분투 다운로드 사이트 주소 ubuntu download 16.04.3 17.04 site link admin 2017-10-13 26139
94 How to install Java on linux with no Internet connectivity (using local repository) admin 2017-10-01 42112