Recent content by Brzina

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. B

    Need help with iptables script

    Hi I'm new to Iptables as well and I just tried to implement this script and it didn't block nor do anything. We are definitely missing something here
  2. B

    Need help with iptables script

    Like this ? #!/bin/sh logger "firewall" "Applying nat-start rules" iptables -N SSHVSBFP -t nat -j DROP 87.87.87.7 iptables -A SSHVSBFP -t nat -m recent --set --name SSHVS --rsource iptables -A SSHVSBFP -t nat -m recent --update --seconds 60 --hitcount 5 --name SSHVS --rsource -j RETURN...
  3. B

    Need help with iptables script

    Hi All I need help with iptables script I have found this script but i need to tweak a little bit. The adjustment I need restriction to only certain IP to be able to connect so lets say Source IP is 87.87.87.7 and port 8000 Internal Destination will be 10.10.10.10 8005 #!/bin/sh logger...
Top