【发布时间】:2014-12-01 03:27:56
【问题描述】:
我找到了一个类似的帖子,但它仍然不能解决我的问题。(OpenVPN Source vars not working on debian)
我根据以下设置 OpenVPN https://help.ubuntu.com/14.04/serverguide/openvpn.html
当我尝试按照以下指南创建证书时出现问题:
cd /etc/openvpn/easy-rsa/ ## move to the easy-rsa directory
sudo chown -R root:admin . ## make this directory writable by the system administrators
source ./vars ## execute your new vars file
./clean-all ## Setup the easy-rsa directory (Deletes all keys)
./build-dh ## takes a while consider backgrounding
./pkitool --initca ## creates ca cert and key
./pkitool --server server ## creates a server cert and key
cd keys
openvpn --genkey --secret ta.key ## Build a TLS key
cp server.crt server.key ca.crt dh1024.pem ta.key ../../
当我尝试时:
source ./vars
外壳还给我:
NOTE: If you run ./clean-all, I will be doing a rm -r on /etc/openvpv/easy-rsa/keys
我忽略了它并尝试了下一行:
sudo ./clean-all
然后说:
Please source the vars script first (i.e. "source ./vars")
Make sure you have edited it to reflect your configuration
我在 google 和 stackoverflow 中搜索,未能解决问题。
感谢您的帮助
谁能帮帮我?
【问题讨论】:
-
这个问题似乎离题了,因为它与编程无关。也许Ubuntu Stack Exchange 会是一个更好的提问地点。
标签: ubuntu-14.04 openvpn