是否有可能把注释放在OpenVPN的客户端configuration文件(在“client-config-dir”指定的path中),即以“#”或“//”之类开头的东西? 如果是这样,什么是适当的评论字符?
“#”前缀是指定的注释标记。 openvpn网站上的例子广泛使用'#'注释。
另外,分号 – ';' – 用于注释单行或项目。
正如Jim所说的,OpenVPN网站上的例子使用#作为评论, 评论设置。 没有function上的差异,但是这种约定可以更容易地直观地识别被注释掉的设置。
从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 abcd # 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