|
I want to use two factor auth for my vpn users. You know, the secureid kind of thing where they have a changing number from a keyfob to enter.
I got the free demo kit from secureid and... scary looking! It looked really involved to set up and evaluate...
Started by samsmith on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
There are some instructions here: http://code.google.com/p/yubico-pam/wiki/YubikeyAndRadiusViaPAM
Mobile-OTP + FreeRADIUS or XTRadius... .
Yubikey? I haven't tried to install it in conjunction with a RADIUS server, but the token is much easier on end user .
|
|
How do I set up SSH so I don't have to type my password when connecting to a host?
Started by Richard Hoskins on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at superuser):
In there, load the existing private key that you've already set up, and then save.
Once you have the public/private key pair all set up (as other answers here show) run PuttyGen.
On Windows as well.
|
|
What are some of the Dos and Don't to setting up an email server on Ubuntu? Are there any gotcha's?
Started by cgreeno on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
The configuration files are so complicated that they created a macro language that compiles down to the actual config... .
Whatever you do, do not use Sendmail.
Do:
use exim or postfix , they're (IMNSHO) the only credible SMTP servers for Linux at the moment .
|
Ask your Facebook Friends
|
What's the best way to set-up a user's printers using NETLOGON.bat?
Started by cagcowboy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Set objNetwork = CreateObject("WScript.Network") objNetwork.AddWindowsPrinterConnection "\\server\HP LaserJet"
VBScript....
From there, it's very simple.
With Windows 2000 and higher, you can use a VBScript as the logon script instead of just a batch file .
|
|
Do you need to set up a Linux cluster first in order to setup a Hadoop cluster ?
Started by Abhinav on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Just install linux and....
Hadoop has its own software to manage a "cluster".
According to this tutorial : http://wiki.apache.org/hadoop/Running%5FHadoop%5FOn%5FUbuntu%5FLinux%5F%28Single-Node%5FCluster ) you can setup Hadoop on a single machine also .
|
|
Is it possible to set up a static site-to-site vpn with two CISCO881-K9? One of the routers has a dynamic IP.
Started by agsamek on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Http://www.cisco.com/en/US/docs/routers/access....
Check http://www.cisco.com/en/US/tech/tk583/tk372/technologies_configuration_example09186a00801dddbb.shtml It explain how it works, just don't take care of the computer that connect with the cisco vpn client .
|
|
Hi,
Do you know any device out there can set up a data trigger on a physical address in MIPS ? I am using FS2 but It can only set up a trigger on virtual address.
Started by pierr on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It would be probably....
It appears there is no way to do what you want with FS2 .
) These are pricey even to rent.
( Here are some potential candidates.
The most straightforward solution would be a logic analyzer, especially one that understands the MIPS .
|
|
When I set up an email server using postfix on ubuntu server, how do I make sure that it won't be an open relay??
Started by fnord_ix on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Basically the first two control which servers Postfix will accept mail from, and the last one controls which servers it will... .
I believe you'll need to set the mynetworks_style , mynetworks , and relay_domains settings in the Postfix configuration file .
|
|
I have a mercurial repo set up on a server and I'd like to be able to access it remotely. How would I go by doing that?
Started by Evan Fosmark on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Have you read Publishing Repositories?
for "me" as the owner: ssh
for the public: http (via 'hg serve')
The mercurial book section on collaboration has some setup help. .
|
|
What is the best way to set up connection with mysql's jdbc? And execute simple statement. How to do that? Thank you.
Started by feiroox on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
From there it's easy to get access to a Statement object and run some ... .
Her is a very small smaple which illustrates it:
http://web.njit.edu/all_topics/Servers/MySQL/Docs/mySample.java.html Here's the sun documentation for creating a JDBC connection .
|