private SRBFileSystemExt createSrbFileSystem(GenericFileName rootName,
FileSystemOptions opts) throws FileSystemException {
try {
log.debug("before srbAccount creation ");
SRBAccount srbAccount = SRBVfsFileSystem.createSrbAccount(rootName, opts);
SRBFileSystemExt _srbFileSystem = new SRBFileSystemExt(srbAccount);
log.debug("after srbAccount creation");
// update the firewall port range
Integer portMin = SRBFileSystemConfigBuilder.getInstance().getFileWallPortMin(opts);
Integer portMax = SRBFileSystemConfigBuilder.getInstance().getFileWallPortMax(opts);
if (portMin != null && portMax != null) {
_srbFileSystem.setFirewallPorts(portMin, portMax); // 64000, 65000
}
return _srbFileSystem;
} catch (Exception ex) {