diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-10-21 12:26:03 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-10-21 12:26:03 +0200 |
commit | 033a3c24288367d840d92da01a82a81a50dc0455 (patch) | |
tree | 33ecaa1a7034de8e3f1e5034b5275cc9c5559a5d /open_issues/virtualization | |
parent | b463d8725d140ee7c278566de4b41bf439cd2551 (diff) |
Explain what the remap command does
Diffstat (limited to 'open_issues/virtualization')
-rw-r--r-- | open_issues/virtualization/networking.mdwn | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/open_issues/virtualization/networking.mdwn b/open_issues/virtualization/networking.mdwn index 1eac40c6..122f21ab 100644 --- a/open_issues/virtualization/networking.mdwn +++ b/open_issues/virtualization/networking.mdwn @@ -49,10 +49,14 @@ knows it's a tun. $ openvpn --config vpn.conf --verb 5 ... +So we let openvpn running, and now we can make applications use the pfinet +TCP/IP stack started above: the remap command below starts a new shell, where +it redirects /servers/socket/2 (where the system TCP/IP stack resides) onto +$HOME/servers/socket/2 (where the new TCP/IP stack resides). + $ remap /servers/socket/2 $HOME/servers/socket/2 $ wget www.gnu.org - Ideally openvpn would be made to setup pfinet itself, but at least for now it can be configured by hand like that. |