LDAPS windows 2008 R2 – external domain – CA
- No Comments
- Jul, 21, 2011
- Angelo Schalley
- Active Directory, Certificates, IIS, Networking, security, Windows-Microsoft
on the local domain controller create a request :
;—————– request.inf —————–
[Version]
Signature=”$Windows NT$[NewRequest]
Subject = “CN=<dc01.domain.local>” ; replace with the FQDN of the DC
KeySpec = 1
KeyLength = 1024
; Can be 1024, 2048, 4096, 8192, or 16384.
; Larger key sizes are more secure, but have
; a greater impact on performance.
Exportable = TRUE
MachineKeySet = TRUE
SMIME = False
PrivateKeyArchive = FALSE
UserProtected = FALSE
UseExistingKeySet = FALSE
ProviderName = “Microsoft RSA SChannel Cryptographic Provider”
ProviderType = 12
RequestType = PKCS10
KeyUsage = 0xa0
[EnhancedKeyUsageExtension]
OID=1.3.6.1.5.5.7.3.1 ; this is for Server Authentication
Read more on LDAPS windows 2008 R2 – external domain – CA…
Webserver behind a router – firewall – apache – linux
- No Comments
- Mar, 11, 2011
- Angelo Schalley
- Linux, Networking, security
Web Server Set Up – Dynamic or Static IP
Apache Web Server configuration for Redhat 7.3, 8.0 and 9.0 with Dynamic ip to router.
This section is designed to detail the steps you may need to go through to setup a server on an ISP that only gives out a dynamic IP address. You will need to edit network configuration on your server by set it to statically and taking the ip number you’ve been assigned by your router (eg) – (192.168.0.2), subnet mask 255.255.255.0 and gateway 192.168.0.1, and use your isp nameservers ip’s. The general approach is to use a dynamic ip address yet access your server via a domain name. This allows you and others to always reach your website from the outside even if the ip address changes regularly. Basically what needs to be done is to configure the apache configuration file httpd.conf for your dynamic IP.
Read more on Webserver behind a router – firewall – apache – linux…