Tuesday, September 25, 2012

TCP Port Mapper 1.27

TCP Port Mapper 1.27 released.

New in this version:

[+] AllowFrom, DenyFromAllowDenyOrder options.


AllowFrom - the list of IP addresses that are allowed access.

  Example:
    AllowFrom=127.0.0.1,192.168.0.1
 
DenyFrom - the list of IP addresses that are denied access.

  Example:
    DenyFrom=10.10.8.8,10.10.8.9

AllowDenyOrder - tells TCP Port Mapper the order of processing AllowFrom and DenyFrom rules. Possible values are:

  Deny,Allow - if the client does not match AllowFrom rule or it does match DenyFrom rule, then the client will be denied access. This is default order.

  Allow,Deny - if the client does not match DenyFrom rule or it does match AllowFrom rule, then it will be granted access.

  Example:
    AllowDenyOrder=Deny,Allow

( Read more... )