How to convert Windows NT Time to UNIX Time:
Divide by 10,000,000 and subtract 11,644,473,600.How to convert UNIX Time to Windows NT Time:
Add 11,644,473,600 and multiply by 10,000,000.Source: support.citrix.com
iptables -t mangle -A PREROUTING -p tcp –dport 80 -j MARK –set-mark 0×1
ip rule add fwmark 0×1 lookup vpntunnel
ip route add default via 192.168.1.1 table vpntunnel
<IfModule mod_ldap.c> # Connection information LDAPServer ldap://dc01.domain.com/??sub LDAPAttr uid sAMAccountName LDAPAuthBinds on # User information LDAPBindDN "cn=UserWithBindRights,cn=users,dc=domain,dc=com" "PasswordForUserWithBindRights" LDAPUsers OU=OuThatYouWantToSearchIn,dc=domain,dc=com (sAMAccountName=%u) # ID's to use when not using the ones from AD LDAPDefaultGID 1111 LDAPDefaultUID 1111 # Override the use of AD id's with the default values set. # Handy when using this setup with a web server that needs read and write
# access to the files and directories uploaded. LDAPForceDefaultGID on LDAPForceDefaultUID on # Switch on the functionality to generate user homes. LDAPGenerateHomedir on 0775 CreateHome on 0775 # Overide homedir values from AD LDAPGenerateHomedirPrefix /place/to/generate/user/homes LDAPForceGeneratedHomedir on </IfModule>