সংক্ষিপ্ত সংস্করণ :
সমস্ত অবরুদ্ধ আইপিএস তালিকা:
fail2ban-client status | grep "Jail list:" | sed "s/ //g" | awk '{split($2,a,",");for(i in a) system("fail2ban-client status " a[i])}' | grep "Status\|IP list"
নিষিদ্ধ একটি আইপি:
fail2ban-client set postfix-mail unbanip 111.222.333.444
দীর্ঘ সংস্করণ :
যদি আপনি এটি করতে "অফিসিয়াল" উপায়টি সন্ধান করেন তবে ব্যর্থতা 2 https://www.fail2ban.org/wiki/index.php/Commands এর জন্য একটি কমান্ড লাইন ক্লায়েন্ট রয়েছে :
~ # fail2ban-client status
Status
|- Number of jail: 8
`- Jail list: roundcube, sshd, sogo, postfix-sasl, postfix-mail, dovecot, ssh, sshd-ddos
তাহলে আপনি চালাতে পারেন
~ # fail2ban-client status roundcube
Status for the jail: roundcube
|- filter
| |- File list: /var/log/mail.log
| |- Currently failed: 0
| `- Total failed: 12
`- action
|- Currently banned: 1
| `- IP list: 111.222.333.444
`- Total banned: 1
অথবা আপনি আমার কমান্ডটি ব্যবহার করতে পারেন যা বিদ্যমান বিদ্যমান জেলগুলির উপরে পুনরাবৃত্তি করে:
fail2ban-client status | grep "Jail list:" | sed "s/ //g" | awk '{split($2,a,",");for(i in a) system("fail2ban-client status " a[i])}' | grep "Status\|IP list"
কোন ফলাফল:
Status for the jail: roundcube
| `- IP list:
Status for the jail: sshd
| `- IP list:
Status for the jail: sogo
| `- IP list:
Status for the jail: postfix-sasl
| `- IP list:
Status for the jail: postfix-mail
| `- IP list:
Status for the jail: dovecot
| `- IP list:
Status for the jail: ssh
| `- IP list:
Status for the jail: sshd-ddos
| `- IP list:
sudo iptables -L -n
?