Configuration
OpenVPN 客戶端配置文件中的註釋?
是否可以在 OpenVPN 的客戶端配置文件(由“client-config-dir”指定的路徑中)中添加註釋,即以“#”或“//”等開頭的內容?如果是這樣,合適的註釋字元是什麼?
正如 Jim 所說,OpenVPN 網站上的範例使用 # 表示評論,使用 ; 註釋掉設置。沒有功能上的區別,但這種約定可以更容易地在視覺上辨識被註釋掉的設置。
來自https://openvpn.net/index.php/open-source/documentation/howto.html#examples
################################################# # Sample OpenVPN 2.0 config file for # <snip> # Comments are preceded with '#' or ';' # ################################################# # Which local IP address should OpenVPN # listen on? (optional) ;local a.b.c.d # Which TCP/UDP port should OpenVPN listen on? # If you want to run multiple OpenVPN instances # on the same machine, use a different port # number for each one. You will need to # open up this port on your firewall. port 1194 # TCP or UDP server? ;proto tcp proto udp