summaryrefslogtreecommitdiff
path: root/open_issues
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2014-10-21 12:26:03 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2014-10-21 12:26:03 +0200
commit033a3c24288367d840d92da01a82a81a50dc0455 (patch)
tree33ecaa1a7034de8e3f1e5034b5275cc9c5559a5d /open_issues
parentb463d8725d140ee7c278566de4b41bf439cd2551 (diff)
Explain what the remap command does
Diffstat (limited to 'open_issues')
-rw-r--r--open_issues/virtualization/networking.mdwn6
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.