Changes between Version 21 and Version 22 of wade/openVPN


Ignore:
Timestamp:
Aug 4, 2009, 4:18:34 PM (15 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • wade/openVPN

    v21 v22  
    139139 * server:
    140140   * ./sample-config-files/server.conf
     141   {{{
     142     local a.b.c.d     輸入你 Server 對外的 IP
     143     port 1194         你要監聽那個 por 
     144     proto tcp         你的 server 要監聽 TCP port
     145     proto udp         你的 server 要監聽 UDP port
     146     ca ca.crt
     147     cert server.crt
     148     key server.key  # This file should be kept secret
     149     client-to-client  是否要讓你的 client 與 client 間可以互相連接
     150   }}}
    141151 * client:
    142152   * ./sample-config-files/client.conf
     153   {{{
     154     remote [a.b.c.d Server 對外的 IP] 1194
     155     ca ca.crt
     156     cert client.crt
     157     key client.key
     158   }}}
     159
     160
    143161
    144162== 【指令】 ==