Hi Hawki,
You can enable ssh by executing "service sshd start".
If you want to start the service automatically everytime you reboot the machine, the execute "chkconfig --level 235 sshd on"
Security considerations when you enable ssh connections:
-Never allow root user logging by ssh, instead use a normal user and then do 'su -'. To restrict root login, edit /etc/ssh/sshd.config file and find the line that says "#PermitRootLogging yes" to "PermitRootLogging no" (look at the #, it must be removed).
-Change ssh default port (22) to other. Edit /etc/ssh/sshd.config and find the line "Port 22" and change it.
-Allow only connection with protocol 2. Edit /etc/ssh/sshd.config and find the line "#Protocol 2,1" and update to reflect "Protocol 2".
Good luck,