]> Cypherpunks.ru repositories - govpn.git/blobdiff - doc/client.texi
POSIX tells that $ character is default shell prompt
[govpn.git] / doc / client.texi
index 58dc74bb2f3a8f3bd1e549769e0dfd7766a9e62d..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}.
@@ -68,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