I need to setup VPN on Cisco 5505 PIX firewall, when the user uses the vpn I need it to have domain authentication through active dirctory. How do I do this through ADSM?

link|improve this question

79% accept rate
this would get more traffic on serverfault.com – Jarrod Roberson May 3 '11 at 16:55
feedback

2 Answers

up vote 1 down vote accepted

Basically you'll need to build a Microsoft RADIUS server on your domain. Then declare that aaa-server on the ASA. once that's done you'll need to add the that AAA group to the tunnel-group.

The first step is to install Microsoft IAS. That will allow your DC to act as a RADIUS server, which is a protocol that ASA can use for this type of authentication.

This article at Cisco should walk you through the whole thing on the CLI, I never use the ADSM, so I can't help you there.

The important parts of the ASA config are these:

aaa-server vpn protocol radius
aaa-server vpn host 10.11.1.2
 key cisco123

tunnel-group DefaultRAGroup general-attributes
 authentication-server-group (outside) vpn
link|improve this answer
feedback

Here's a link to instructions for configuring the Cisco ASA (includes both CLI and ASDM) and configuring NPS (RADIUS) on a 2008 server: http://techpain.blogspot.com/2011/05/win-server-2008-dc-radius-server-for.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.