Linux, windows, asterisk, vmware

I have been configured & testing the RSA SecureID and i’ve setup the servers, integrated into the LDAP directory etc, I have multiple hosts connected and working, however I have been running into the following issue.

1
2
3
4
shayne@db1 ~]$ sudo /opt/pam/bin/acetest
Enter USERNAME: shayne
Access denied. Name lock failed.
[shayne@db1 ~]$ sudo /opt/pam/bin/acetes

There is no information on the error ANYWHERE! *sigh*

Some people might find this funny, but I finally found an Authentication Monitor in the RSA Security Console, the whole thing is quite easy once you get your head around everything :-)

After starting the Real-Time Authentication Monitor It logged the following error..

1
Node secret mismatch: cleared on server but not on agent

Now at this point in time, I have not setup any node secret, the ACE Admin guide explains the following

Best Practices for Automatic Delivery
If you use Automatic Delivery, which is the default setting, the Authentication
Manager automatically creates and sends the node secret to the Agent Host in
response to the first successful authentication on the Agent Host. The transmission
containing the node secret is encrypted with a key derived from the user’s passcode in
combination with other information.
• Windows Agents with a version of 4.4.0 or later store the node secret file in the
system registry.
• Windows legacy Agents (other than 4.4.0) store the node secret file in the
%SYSTEMROOT%\system32 directory.
• All UNIX Agents store the node secret file in the in the ACEDATA directory.
The default name of the node secret file is securid.
In the case of Automatic Delivery, capture of the node secret is possible if you are not
careful to control the circumstances in which the first authentication on each Agent
Host occurs.

So, with that in mind, I did the following..

1
2
3
4
[root@db1 bin]# cd /var/ace/
[root@db1 ace]# ls
sdconf.rec  sdstatus.1 securid
[root@db1 ace]# rm securid

I went back and tested the authentication, and BAM, it now works. “Authentication method success”

You will notice that it’s now auto generated a new secureid file :-) It’s probably better that you create a new Node Secret file for each Agent, however i’m just in the testing phase right now, apart from a crap interface and confusing setup process, it handles it’s intended job very well. kudos to RSA.

Popularity: 7% [?]


Tags: , , , ,

Running dual screens within linux is awesome! Setup with Deal Head = Two seperate desktops across multiple monitors.

Note: Before starting this, please disable your current proprietary drivers (if in use) from ‘Hardware Drivers’ in the system menu

Card = ATI Radeon

Drivers = ati-driver-installer-9-4-x86.x86_64.run download from http://ati.amd.com/support/driver.HTML

Once download, open a terminal alt+F2 type in gnome-terminal

cd to the location downloaded, firefox default is the desktop.

cd ~/Desktop
sudo sh ./ati-driver-installer-9-4-x86.x86_64.run

This will run you through the setup, follow the prompts on the screen.

Here is the trick to get dual x sessions working correctly from the command line with little fuss.

sudo aticonfig –initial=dual-head –screen-layout=right

Change -screen-layout=right to the position of your second screen. e.g -screen-layout=left

Popularity: 11% [?]


Tags: , , ,

Aptana studio is platform indipendant, meaning it will confortably run using sun java on most platforms.

Without following the instructions below, you would receive an error in the .log file similar to below.

!MESSAGE Unable to find feature.xml in directory: /home/homdir/Aptana-Studio/features/com.aptana.ide.feature.professional_1.2.4.022837_200903111829.jar

Ubuntu 8.10 specific install instructions:

Aptana needs xulrunner 1.8 and sun-java installed to work.

Command: sudo apt-get install xulrunner

Command: sudo apt-get install sun-java-bin

I found launching Aptana from a bash script was the easiest work around.

Command: cd ~/

Command: nano ~/aptana.sh

copy and paste the below into your terminal window.

#!/bin/sh
MOZILLA_FIVE_HOME=/usr/lib/xulrunner
if [ $LD_LIBRARY_PATH ]; then
LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME:$LD_LIBRARY_PATH
else
LD_LIBRARY_PATH=$MOZILLA_FIVE_HOME
fi
export MOZILLA_FIVE_HOME LD_LIBRARY_PATH
~/Aptana-Studio/AptanaStudio -os linux /usr/lib/jvm/java-6-sun/jre/bin/java

NOTE: change the path ~/Aptana-Studio/ to the same directory that you extracted Aptana to from the downoaded package.

Launch Aptana

Command: ./aptana.sh

Popularity: 4% [?]


Tags:

Powered by Wordpress
Theme © 2005 - 2009 FrederikM.de
BlueMod is a modification of the blueblog_DE Theme by Oliver Wunder

80 views