| 5 | Host-OS: debian linux |
| 6 | apt-get install ppp netcat |
| 7 | |
| 8 | VBox-OS: debian linux |
| 9 | apt-get install ppp netcat |
| 10 | |
| 11 | Host-OS: |
| 12 | pppd noauth local lock nodefaultroute persist debug nodetach 10.1.2.3:10.4.5.6 pty "netcat -l -p 3042" |
| 13 | |
| 14 | VBox-OS: (run this quick, before the previous pppd command on Host-OS gives a timeout) |
| 15 | pppd noauth local lock nodefaultroute persist debug nodetach passive pty "netcat 200.200.200.200 3042" |
| 16 | |
| 17 | where 200.200.200.200 is the real IP of the Host-OS |
| 18 | |
| 19 | Now, Host IP is 10.1.2.3 and VBox IP is 10.4.5.6 and you can access all udp/tcp ports from one to another |
| 20 | |
| 21 | by Pedro Zorzenon Neto - 09-Apr-2008 |
| 22 | this mini-howto is copyrighted under the MIT licence: |
| 23 | http://www.opensource.org/licenses/mit-license.php |
| 24 | |