Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Nyr openvpn script
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Nyr openvpn script

forumsukforumsuk Member

I have previously used it without any issues but now I try to isntall it

wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh

and get the following error;

wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh
--2017-06-15 13:51:52-- https://git.io/vpn
Resolving git.io (git.io)... 23.21.145.230, 50.16.192.69, 23.23.159.159, ...
Connecting to git.io (git.io)|23.21.145.230|:443... connected.
ERROR: The certificate of git.io' is not trusted. ERROR: The certificate ofgit.io' hasn't got a known issuer.

Could someone help how can I resolve this error?
Thanks

Comments

  • noamannoaman Member

    use no check certifcate option of wget

    or you could use curl
    or git

  • HukumdarHukumdar Member
    edited June 2017

    have you heard "--no-check-certificate" before?

    try this

    wget - - no-check-certificate https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh

    Thanked by 1forumsuk
  • noamannoaman Member

    @Hukumdar said:
    have you heard "--no-check-certificate" before?

    try this

    --no-check-certificate wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh

    wget --no-check-certificate https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh

    :-)

    Thanked by 1forumsuk
  • Thanks, got it working now :)

    Cheers

  • HukumdarHukumdar Member
    edited June 2017

    @noaman said:

    @Hukumdar said:
    have you heard "--no-check-certificate" before?

    try this

    --no-check-certificate wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh

    wget --no-check-certificate https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh

    :-)

    haha thanks :) i have literally no skill beside running scripts but i even know this command. he should have asked google first.

    Thanked by 1forumsuk
  • NeoonNeoon Community Contributor, Veteran
    edited June 2017

    If you care about more security, use this improved OpenVPN setup script:

    https://github.com/Angristan/OpenVPN-install

    It based on Nyr script but enhanced security.

    "I made it because I wanted to have a more secured OpenVPN out-of-the-box. It works like the original script, but is more focused on privacy and espicially better encryption. Nyr's original script uses mainly default parameters regarding encryption, and some of them are unsecure. See #encryption."

Sign In or Register to comment.