public static PortMapper getPortMapper() {
if (portMapper == null) {
synchronized(lock) {
if (portMapper == null) {
portMapper = new PortMapper(configName);
try {
portMapper.setParameters(getConfig());
// Force portmapper to attempt to bind to port
portMapper.bind();
} catch (PropertyUpdateException e) {