Hello Guest, if you are reading this it means you have not registered yet. Please take a second, Click here to register, and in a few simple steps you will be able to enjoy our community and use our OpenViX support section.
Page 10 of 22 FirstFirst ... 8910111220 ... LastLast
Results 136 to 150 of 318

Thread: OpenVPN Setup guide for most VPN,s

  1. #136

    Title
    Junior Member
    Join Date
    Apr 2020
    Posts
    3
    Thanks
    0
    Thanked 1 Time in 1 Post
    The DSAYERS VPN script is spot on. My question is, I have had a subscription with Octane VPN for a few years now. Is there anyway to add it to the VPN script so that I can install it onto a Zgemma H92H. Or is there another way. I have tried many guides etc but to no avail, and the script works so well it would be perfect if Octane could be added into it.

  2. #137
    dsayers's Avatar
    Title
    ViX Beta Tester
    Join Date
    Mar 2016
    Posts
    1,764
    Thanks
    473
    Thanked 607 Times in 433 Posts
    Do they have a place to download the configs?

    If they do send them to HDD/vpn and set vpn manager to that location

  3. #138
    dsayers's Avatar
    Title
    ViX Beta Tester
    Join Date
    Mar 2016
    Posts
    1,764
    Thanks
    473
    Thanked 607 Times in 433 Posts
    Yesterday I was thinking of using python to download the configs as some seem to have issues in wget.

    I can get this to work but my issue is that I want to have script run and install plugin via opkg install then python download configs then back to script to unzip and change settings

  4. #139

    Title
    Forum Supporter
    Donated Member
    Join Date
    Nov 2013
    Posts
    58
    Thanks
    36
    Thanked 6 Times in 6 Posts
    Quote Originally Posted by dsayers View Post
    For manual setup VPN Manager by murxer

    Install ipk, Save all configs to one folder no need to edit them then Open vpn manager and press menu change All config in one folder to yes

    Save directory config set to the location of your config files

    Then you can add username and password.
    I've not installed a vpn before and am just about to subscribe to IP Vanish, unless you think there is a better option at a similar price.

    I've installed your plugin, but don't where I get the configuration files from. I'm assuming I need to create a folder call vpn in the root of the HDD on the e2 box and copy the files into it??

    Thanks,

    YO

  5. #140

    Title
    Forum Supporter
    Donated Member
    Join Date
    Nov 2013
    Posts
    58
    Thanks
    36
    Thanked 6 Times in 6 Posts
    Quote Originally Posted by Yellow Ostrich View Post
    I've not installed a vpn before and am just about to subscribe to IP Vanish, unless you think there is a better option at a similar price.

    I've installed your plugin, but don't where I get the configuration files from. I'm assuming I need to create a folder call vpn in the root of the HDD on the e2 box and copy the files into it??

    Thanks,

    YO
    I've just found this guide for a linux installation of IPVanish, so I think these are the configuration files you mentioned in the instructions?

    https://support.ipvanish.com/hc/en-u...8aAko_EALw_wcB

  6. #141

    Title
    Forum Supporter
    Donated Member
    Join Date
    Nov 2013
    Posts
    58
    Thanks
    36
    Thanked 6 Times in 6 Posts
    Quote Originally Posted by Yellow Ostrich View Post
    I've just found this guide for a linux installation of IPVanish, so I think these are the configuration files you mentioned in the instructions?

    https://support.ipvanish.com/hc/en-u...8aAko_EALw_wcB
    Sorry, me again, this guides is more specific to OPENVPN configuration, so probably the files I need.

    https://support.ipvanish.com/hc/en-u...in-Linux-Mint-

  7. #142
    dsayers's Avatar
    Title
    ViX Beta Tester
    Join Date
    Mar 2016
    Posts
    1,764
    Thanks
    473
    Thanked 607 Times in 433 Posts
    Quote Originally Posted by Yellow Ostrich View Post
    Sorry, me again, this guides is more specific to OPENVPN configuration, so probably the files I need.

    https://support.ipvanish.com/hc/en-u...in-Linux-Mint-
    Yes if you want to use VPN Manager download configs
    Code:
    https://www.ipvanish.com/software/configs/configs.zip
    Send them to hdd/vpn then add username and password in the plugin or just generate script and the command should install everything for you

  8. The Following User Says Thank You to dsayers For This Useful Post:

    Yellow Ostrich (31-10-20)

  9. #143
    dsayers's Avatar
    Title
    ViX Beta Tester
    Join Date
    Mar 2016
    Posts
    1,764
    Thanks
    473
    Thanked 607 Times in 433 Posts
    Just posting for future refference. python configs

    Code:
    import os, zipfile
    import sys
    
    import urllib
    
    os.system("opkg install https://github.com/davesayers2014/OpenVPN/blob/261020/enigma2-plugin-extensions-vpnmanager_1.1.4_all.ipk?raw=true")
    
    urllib.urlretrieve ("https://my.surfshark.com/vpn/api/v1/server/configurations", "/hdd/surfsharkvpn2/tmp.zip")
    
    dir_name = '/hdd/surfsharkvpn2'
    extension = ".zip"
    
    os.chdir(dir_name) # change directory from working dir to dir with files
    
    for item in os.listdir(dir_name): # loop through items in dir
        if item.endswith(extension): # check for ".zip" extension
            file_name = os.path.abspath(item) # get full path of files
            zip_ref = zipfile.ZipFile(file_name) # create zipfile object
            zip_ref.extractall(dir_name) # extract file to dir
            zip_ref.close() # close file
            os.remove(file_name) # delete zipped file
    
    now to write settings
    Last edited by dsayers; 31-10-20 at 16:17.

  10. The Following User Says Thank You to dsayers For This Useful Post:

    Yellow Ostrich (31-10-20)

  11. #144

    Title
    Forum Supporter
    Donated Member
    Join Date
    Nov 2013
    Posts
    58
    Thanks
    36
    Thanked 6 Times in 6 Posts
    Quote Originally Posted by dsayers View Post
    Just posting for future refference. python configs

    Code:
    import os, zipfile
    import sys
    
    import urllib
    
    os.system("opkg install https://github.com/davesayers2014/OpenVPN/blob/261020/enigma2-plugin-extensions-vpnmanager_1.1.4_all.ipk?raw=true")
    
    urllib.urlretrieve ("https://my.surfshark.com/vpn/api/v1/server/configurations", "/hdd/surfsharkvpn2/tmp.zip")
    
    dir_name = '/hdd/surfsharkvpn2'
    extension = ".zip"
    
    os.chdir(dir_name) # change directory from working dir to dir with files
    
    for item in os.listdir(dir_name): # loop through items in dir
        if item.endswith(extension): # check for ".zip" extension
            file_name = os.path.abspath(item) # get full path of files
            zip_ref = zipfile.ZipFile(file_name) # create zipfile object
            zip_ref.extractall(dir_name) # extract file to dir
            zip_ref.close() # close file
            os.remove(file_name) # delete zipped file
    
    now to write settings
    Thanks, is there link to for the "Generate script" as I use a complex password.

  12. #145
    dsayers's Avatar
    Title
    ViX Beta Tester
    Join Date
    Mar 2016
    Posts
    1,764
    Thanks
    473
    Thanked 607 Times in 433 Posts
    Quote Originally Posted by Yellow Ostrich View Post
    Thanks, is there link to for the "Generate script" as I use a complex password.
    https://e2openvpn.com/OpenVPN_Generator/

    When script is complete box should reboot then in VPN manager press menu and check all configs in one folder is yes

  13. The Following User Says Thank You to dsayers For This Useful Post:

    Yellow Ostrich (31-10-20)

  14. #146

    Title
    Forum Supporter
    Donated Member
    Join Date
    Nov 2013
    Posts
    58
    Thanks
    36
    Thanked 6 Times in 6 Posts
    Quote Originally Posted by dsayers View Post
    https://e2openvpn.com/OpenVPN_Generator/

    When script is complete box should reboot then in VPN manager press menu and check all configs in one folder is yes
    Thanks, all working now

  15. #147

    Title
    Forum Supporter
    Donated Member
    Join Date
    Nov 2013
    Posts
    58
    Thanks
    36
    Thanked 6 Times in 6 Posts
    Hi,

    Are there any logs specific to the VPN Manager. Mine has stopped connecting.

    I have verified that the network connection is good. I'm on the latest VIX Image TM-Twin4k.

    I've selected different servers from the ipvanish list. No error messages are displayed but the vpn no longer connects. Was fine last night. (I have tested the vpn credentials etc on my laptop, same login, same vpn location connection etc). I'm not aware of any changes since last night.

    Thanks,

    YO

  16. #148

    Title
    Forum Supporter
    Donated Member
    Join Date
    Nov 2013
    Posts
    58
    Thanks
    36
    Thanked 6 Times in 6 Posts
    It's ok, an autostart on another plugin seemed to be breaking the network configuration on my box. It is all good again now.

  17. #149

    Title
    Junior Member
    Join Date
    Apr 2020
    Posts
    3
    Thanks
    0
    Thanked 1 Time in 1 Post
    Thanks for the reply. I've now received a config file from Octane. Which is 'OV Miami - full certs 1.ovpn', and also a link to a page of Gateway Locations. I've tried putting the ovpn file in HDD/vpn and pointing OpenVpn at it using Vpn manager but it doesn't work. I'm obviously doing something very wrong. Any further help gratefully received.
    Last edited by vicflange; 01-11-20 at 17:15.

  18. #150
    dsayers's Avatar
    Title
    ViX Beta Tester
    Join Date
    Mar 2016
    Posts
    1,764
    Thanks
    473
    Thanked 607 Times in 433 Posts
    Has the name of file got spaces? If it has remove spaces or use _ instead

Page 10 of 22 FirstFirst ... 8910111220 ... LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.