Java Keytool is a key and certificate management utility. It allows users to manage their own public/private key pairs and certificates. It also allows users to cache certificates. Java Keytool stores the keys and certificates in what is called a […]
Tag: Technology
ITSM Clarity Connector
Question: How can you quickly realise business value from a fully integrated PPM & ITSM Enterprise Solution? Answer: The ITSM Clarity Connector takes two of the market leaders, CA Clarity PPM & BMC ITSM, and seamlessly integrates the data flow […]
Known implementations of NTLM support
See below the list of known implementations of NTLM protocol: Jakarta (Apache) HTTP Client (free, Apache license) – Support for LM/NTLM (not NTLM V2) protocol on all Java platforms. Requires JRE 1.2 or higher. Not plug-compatible with the Java UrlConnection […]
Jespa – Java Active Directory Integration
Jespa is a Java software library that provides advanced integration between Microsoft Active Directory and Java applications. Jespa is a comprehensive language-level security solution for Java applications. Rather than wrapping or inserting security into applications such as websites, Jespa provides […]
Download exported Mikrotik configuration
Since the /export command dumps the configuration to stdout, I do always backup my mikrotik configuration vía ssh in this way: ssh admin@router /export > mikrotik.conf To restore it just use /import command!
The best script to update No-IP DNS
This script was designed to utilize the No-IP Update API which offers direct access to No-IP’s DNS update system. This is the fixed version running on 6.x RouterOs version. 1. Create a new script named no-ip_ddns_update The following permissions are […]
How to configure Mikrotik router for Port Forwarding
In case of you are hosting a web server over port number 80 in your private network and you would like to allow anyone on the Internet to access your web server, you have to do several changes in your […]
Transparent bridge using PPtP and EoIP using Mikrotik routers
My goal is to build a transparent bridge over the Internet. The PPtP tunnel is only needed in order to add encryption, since EoIP is not an encrypted tunnel. In this configuration, there are several parts, which we will discuss […]
How to initialize a GIT repository
I order to initialize a git repository you have to perform the following steps: $ cd /path/to/project $ git init $ git remote add origin https://xxxxx.com/repo $ git add . $ git commit -m ‘initial commit’ $ git push origin […]
Route traffic to specific IP(s) through a VPN connection
The use-case is considering two networks in two different location communicating over Internet, having the same IP class (but it could be extrapolated for two different classes) are the static IPs are configured without collisions. Install a VPN server in […]