wodSSHTunnel - Version 1.7.1 wodSSHTunnel component is server-type component thatwill add secure tunneling (based on SSH protocol)capabilities to your application. Based on your rulesand definitions, it will accept local connections,encrypt it and forward to SSH server (where they willbe decrypted and sent to destination host). SSH serveris required for this component to work - encryptionwill take place between local computer (runningwodSSHTunnel) and SSH server of your choice.It can work in both sides - it can accept localconnections and forward them to the server, or caninitiate connections towards local services whennotification is received from SSH server for 'remoteport forwarding' request - based on your previous request.Basically, to understand what happens: instead of usingdirect connections to the server, through insecureinternet,you would connect to your SSH server usingencrypted connection, and SSH server would connect toservices you require. Usually, most of those serviceswill reside on same server as SSH server, or will be inprotected network.Also, not only it will secure connections - but it willalso allow you to create VPN to your services.How does it work?You setup any number of Channels - these are objectsthat will keep information about specific portforwarding request. For example, you can create Channelthat will listen on local port 80, and forward allrequests to SSH server on his port 80. After you Startthat channel, you can try to connect using your webbrowser to http://localhost and you should see webcontents as held on SSH server. Cute, isn't it? After Channel is created and started, it will acceptUsers. Each channel stores collection of usersconnected to it.Once new User tries to connect to thechannel, you will receive event where you can allow ordeny user to use secure channel - once again, it's yourdecision. If you allow user to connect and use channel,everything is done by wodSSHTunnel, and you don't needto do anything else