You could try, and this is just a suggestion, a firewall rule.
Now this depends on your setup of course but something like this in your iptables file (mine is /etc/sysconfig/iptables)
-A RH-Firewall-1-INPUT -p tcp --dport 22 -s 192.168.0.2 -j ACCEPT
As you can see I am running a version of redhat/fedora but there will be existing rules there so you should be able to adapt that to your particular firewall.
That rule basically says to only allow/accpet connections to port 22 (the default port for ssh) from the source ip address of 192.168.0.2.
Restart iptables with /etc/init.d/iptables restart and you should be cooking

The other really good security measure you can use, it not already, is to turn off password authentication and to use the key system. Have a look at
http://www.g-loaded.eu/2005/11/10/ssh-with-keys/and
http://sial.org/howto/openssh/publickey-auth/Good luck
Thomas Inglis