Thought i’d update the site, haven’t posted much these days. I’ve setup some a-sides for Jokes across the top might encourage me to post some new content.
Microsoft Virtual Server 2005 wont run on Vista off the bat, IIS needs to be installed with specific modules. A cheats way around it is to install IIS using the following command line and it will install all the IIS options you need prior to the installation.
Run this command from the command prompt. be careful the text wraps correctly it should be one line.
start /w pkgmgr /l:log.etw /iu:IIS-WebServerRole;IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent;IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors;IIS-HttpRedirect;IIS-ApplicationDevelopment;IIS-ASPNET;IIS-NetFxExtensibility;IIS-ASP;IIS-CGI;IIS-ISAPIExtensions;IIS-ISAPIFilter;IIS-ServerSideIncludes;IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries;IIS-RequestMonitor;IIS-HttpTracing;IIS-CustomLogging;IIS-ODBCLogging;IIS-Security;IIS-BasicAuthentication;IIS-WindowsAuthentication;IIS-DigestAuthentication;IIS-ClientCertificateMappingAuthentication;IIS-IISCertificateMappingAuthentication;IIS-URLAuthorization;IIS-RequestFiltering;IIS-IPSecurity;IIS-Performance;IIS-HttpCompressionStatic;IIS-HttpCompressionDynamic;IIS-WebServerManagementTools;IIS-ManagementConsole;IIS-ManagementScriptingTools;IIS-ManagementService;IIS-IIS6ManagementCompatibility;IIS-Metabase;IIS-WMICompatibility;IIS-LegacyScripts;IIS-LegacySnapIn;IIS-FTPPublishingService;IIS-FTPServer;IIS-FTPManagement;WAS-WindowsActivationService;WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI
Then install Virtual server and it will work fine. Installing IIS manually fails. Even when in compatibility mode.
83x Example
(In this example 10.0.1.0/24 is the local network. And 10.0.0.0/24 is the remote network.)
crypto isakmp policy 10
encr 3des
hash md5
authen pre-sharecrypto isakmp key MyCrypt0k3y address x.x.x.x (Address of remote site)
crypto ipsec transform-set MD5DES ah-md5-hmac esp-des
crypto map VPN 10 ipsec-isakmp
description Link to Head Office
set peer x.x.x.x (Address of remote site)
set transform-set MD5DES
match address IPSEC-HOinterface Dialer1 (Internet Interface)
crypto map VPNip nat inside source list LocalNATNetworks interface Dialer1 overload
ip access-list extended IPSEC-HO
remark IPESEC Match List- Site to Head Office
permit ip 10.0.1.0 0.0.0.255 10.0.0.0 0.0.0.255ip access-list extended LocalNATNetworks
remark Don’t Nat VPN Traffic
deny ip 10.0.1.0 0.0.0.255 10.0.0.0 0.0.0.255
remark NAT local Network
permit ip 10.0.1.0 0.0.0.255 any




