FIX: Check Point Endpoint Security unable to connect


UPDATE: it would appear this bug has since been resolved in the E80 release of the CheckPoint client.

Since my recent upgrade to OS X Mountain Lion I’ve been suffering a very frustrating issue with Checkpoint’s endpoint security client. For no reason at all it would frequently refuse to connect. Stating an error: “Connectivity with the Check Point Endpoint Security service is lost”
Despite trying countless things with the client I found the only fix each time was to reinstall the client.

That was until now at least, after further investigation it looks like the issue only occurs when the Trac.config file had been zeroed. Now, I’m still trying to figure out what’s happening to the file. But I found in the meantime if you kill the checkpoint client then perform the following in terminal:

$ cd “/Library/Application Support/Checkpoint/Endpoint Connect”
$ sudo cp Trac.config.bak Trac.config

Then client the starts working as expected. Alternatively you can download a compiled AppleScript from here to do just that!
NB:You will be prompted for your admin credentials when either executing the command, or the script.

If you’ve found an alternative solution, please let me know in the comments below.

Read More

Stop SecureClient automatically starting (Max OS X)

SecureClientUpon install Check Point SecureClient on my Mac OS X 10.6 MacBook Pro I found it was starting automatically on boot up. Which normally isn’t a problem, but because of the way it secures the network adapters it prevents essential traffic on my home network, because of this I am found shutting it down each time I logon. Which is a little frustrating!

The SecureClient doesn’t show up in the normal list of applications, but it can still be disabled using the terminal. (Utilities > Terminal)
  1. Change to root.
  2. Run:
    tcsh
    source /opt/CPsrsc-50/.cshrc
    StartupItemsMgr remove $SRDIR/bin/SecureClient.app
Upon running the above in your terminal window you should find the SecureClient will no longer run on boot up. To run the application in future just launch it from the Applications finder window.

Read More

Yes – You CAN make SecureClient work in Snow Leopard

CheckPointOne of the requirements of my new laptop was that it had to be able to connect into the remote sites I often connect onto. One of the applications I use for connecting to the networks is Check Points SecureClient..

Imagine my disappointed when I found out a Snow Leopard compatible version had not yet been released!!
However, I have managed to solve this little problem with the help of a blog post over at sysadmins-world.com

1. The Checkpoint installer refuses to install

The installer checks up for the Darwin Kernel version 9. In Snow Leopard we have version 10. So two files need to be edit within the installer package.

  1. just right click on the installer and select Show Package Contents. This opens finder within the package.
  2. go to Contents/Resources.
  3. open TextEdit, use vi in a shell or whatever you prefer to edit a simple file
  4. on file “InstallationCheck” change the number 9 in line 8 to number 10: if  [ “$MAJOR” != “10” ]; then
  5. same on file “postinstall “ change the number 9 in line 84 to number 10

That’s it. Just install it and reboot. Changes need to make afterwards in order to have it starting.

In the words of the mere cat… Simplez!

Read More