verify.sh.j2 390 B

12345678910111213
  1. #!/bin/bash
  2. # This file is managed by ansible, don't make changes here - they will be overwritten.
  3. # Implementierung einer Fastd Blacklist
  4. # Das Script wird aus Fastd beim Aufbau einer Verbidung aufgerufen
  5. # Die geblockten Keys werden in der Datei blacklist aufgeführt
  6. PEER_KEY=$1
  7. if /bin/grep -Fq $PEER_KEY /var/gateway-ffms/fastd/blacklist; then
  8. exit 1
  9. else
  10. exit 0
  11. fi