stun

simple point to point tunnel
git clone git://git.2f30.org/stun
Log | Files | Refs | README

warp.8 (1271B)


      1 .Dd March 22, 2017
      2 .Dt WARP-VPN 8
      3 .Os
      4 .Sh NAME
      5 .Nm warp-vpn
      6 .Nd simple tunnel
      7 .Sh SYNOPSIS
      8 .Nm warp-vpn
      9 .Op Fl 46
     10 .Op Fl d
     11 .Fl s
     12 .Op Fl b Ar address
     13 .Op Fl p Ar port
     14 .Op Fl t Ar devtype
     15 .Op Fl u Ar user
     16 .Ar interface
     17 .Nm warp-vpn
     18 .Op Fl 46
     19 .Op Fl d
     20 .Fl h Ar host
     21 .Op Fl p Ar port
     22 .Op Fl t Ar devtype
     23 .Op Fl u Ar user
     24 .Ar interface
     25 .Sh DESCRIPTION
     26 .Nm
     27 is a simple point to point tunnelling program.  There can only be one
     28 client per server.  Routing between clients is done by the networking
     29 stack on the server side.
     30 .Sh OPTIONS
     31 .Bl -tag -width "-b address"
     32 .It Fl 4
     33 Force
     34 .Nm
     35 to use IPv4 addresses only.
     36 .It Fl 6
     37 Force
     38 .Nm
     39 to use IPv6 addresses only.
     40 .It Fl d
     41 Enable debug output.  This will make
     42 .Nm
     43 run in the foreground.
     44 .It Fl s
     45 Enable server mode.  Default is off.
     46 .It Fl b Ar address
     47 Bind server to the given
     48 .Ar address .
     49 .It Fl p Ar port
     50 Listen on or connect to specified
     51 .Ar port .
     52 The default port is 12080.
     53 .It Fl h Ar host
     54 Connect to specified
     55 .Ar host .
     56 .It Fl t Ar devtype
     57 Select the tunnel
     58 .Ar device type .
     59 The two available device types are TUN and TAP.  The default is TUN.
     60 .It Fl u Ar user
     61 Drop privileges to the specified
     62 .Ar user .
     63 The default user is nobody.
     64 .El
     65 .Sh BUGS
     66 This program is an experiment and may not be secure.  Use at your
     67 own risk.