We're trying to use the proxy to send out information using TLS 1.2 instead of 1.0 that our ERP system uses with our tax integration partner. We're running into an issue where the ERP is using the dynamic port range of 49152-65535 to send out the information, so it changes every time information goes out. Here's our current .yaml file that we're using:
tunnels:
- name: avatax-outbound
in:
address: 10.0.0.23
port: 60330
protocol: TLS
tlsVersions: TLS10
out:
address: avatax.avalara.net
port: 443
protocol: TLS
tlsVersions: TLS12
certificatePath: C:\Program Files\RebexTlsProxy-v1.6.1\x64\localproxy.pfx
idleTimeout: 30
How can we go about updating this to handle the port range that the application uses to send out information?