Where can I find the router program?
Nevermind, I found some cmd commands to execute in the VM that do the work of the router program:
Create connection:
netsh interface portproxy add v4tov4 listenaddress=192.168.0.1 listenport=23 connectaddress=172.31.2.200 connectport=23
I configured the ports to be the same for simplicity once deployed to an actual controller (for KLI).
The listen IP/port are the ones defined in the .xml config file, while the contact is the external system (OL VM has an IP of 172.31.2.140)
Delete connection:
netsh interface portproxy delete v4tov4 listenaddress=192.168.0.1 listenport=23
I've made some .bat files for convenience (in my case I use 2 connections, one being Telnet)