当 nm-applet 未运行时,nmcli 需要密码才能连接到 VPN

当 nm-applet 未运行时,nmcli 需要密码才能连接到 VPN

当我运行nmcli connection up id VPNNAME时,如果nm-applet没有运行,则需要密码

Warnung: Das Passwort für »vpn.secrets.Xauth password« ist nicht in »passwd-file« definiert. nmcli darf nicht ohne die Option »--ask« fragen.
Fehler: Aktivierung der Verbindung ist gescheitert: No valid secrets

翻译:

Warning: The password for »vpn.secrets.Xauth password« is not defined in »passwd-file«. nmcli cannot ask without the »--ask« option.
Error: Activation of the connection failed: No valid secrets

当我添加时,--ask它只是要求在终端中输入密码。

但是,当nm-applet我运行时nmcli connection up id VPNNAME,它会连接而没有错误或要求输入密码。

nm-applet是否可以让它在不运行时不要求输入密码?

答案1

在目录中找到经过修改的 vpn 文件,/etc/NetworkManager其中包含

ipSec-secret-type=save
IPSec secret-flags=0
xauth-password-type=save
XAuth password-flags=0

[vpn-secrets]部分

Xauth password=YOUR-PASSWORD    
IPSec secret=IPSEC-PSK

相关内容