OpenVPN 客户端配置文件中的注释?

OpenVPN 客户端配置文件中的注释?

是否可以在 OpenVPN 的客户端配置文件(位于“client-config-dir”指定的路径中的文件)中添加注释,即以“#”或“//”等开头的内容?如果可以,那么合适的注释字符是什么?

答案1

正如 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

答案2

'#' 前缀是指定的注释标签。openvpn 网站上的示例大量使用了 '#' 注释。

此外,分号“;”用于注释单行或单项。

相关内容