]> Cypherpunks.ru repositories - govpn.git/blobdiff - doc/client.texi
POSIX tells that $ character is default shell prompt
[govpn.git] / doc / client.texi
index d3a7f418bb73bb807bc8ea4bc945861bfecbb600..8329dfed1ad490c3a102597bc25578dde3881159 100644 (file)
@@ -7,7 +7,7 @@ options client has the following ones:
 @table @option
 
 @item -mtu
-Expected TAP interface @ref{MTU}.
+Expected TUN/TAP interface @ref{MTU}.
 
 @item -proto
 @ref{Network, Network protocol} to use. Can be either @emph{udp}
@@ -25,7 +25,7 @@ server.
 Address (@code{host:port} format) of remote server we need to connect to.
 
 @item -iface
-TAP interface name.
+TUN/TAP interface name.
 
 @item -verifier
 Our client's @ref{Verifier}.
@@ -37,6 +37,9 @@ to enter it in the terminal.
 @item -timeout
 @ref{Timeout} setting in seconds.
 
+@item -noreconnect
+Disable reconnection after timeout.
+
 @item -timesync
 Optional @ref{Timesync, time synchronization} requirement. If set to
 zero, then no synchronization required.
@@ -65,10 +68,10 @@ Example up-script that calls DHCP client and IPv6 advertisement
 solicitation:
 
 @verbatim
-client% cat > up.sh <<EOF
+client$ cat > up.sh <<EOF
 #!/bin/sh
 dhclient $GOVPN_IFACE
 rtsol $GOVPN_IFACE
 EOF
-client% chmod +x up.sh
+client$ chmod +x up.sh
 @end verbatim