ClearOS offers Attack Detector but if you have have a fixed IP address, you can restrict SSH and / or Webconfig (the web-based admin panel) to a specific IP address.
Below is an example to remove SSH (usually port 22) and Webconfig (port 81) access from default Incoming Firewall (https://example.org:81/app/incoming_firewall) and replace by rules in the Custom Firewall
Be careful not to lock yourself out!
iptables -I INPUT -p tcp --dport 22 -j DROP
iptables -I INPUT -p tcp --source 203.0.113.0 --dport 22 -j ACCEPT
iptables -I INPUT -p tcp --dport 81 -j DROP
iptables -I INPUT -p tcp --source 203.0.113.0 --dport 81 -j ACCEPT