Howdy, Stranger!

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


WireGuard automated installer | Ubuntu, Debian, CentOS, Fedora - Page 7
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.

WireGuard automated installer | Ubuntu, Debian, CentOS, Fedora

1234579

Comments

  • @Nyr said:

    @PandoGulf said: Guys is there a browser plugin for wireguard ?

    When I run the VPN client I want to limit it to the browser only and not the entire PC network.

    As others have mentioned, you probably want a proxy server, not a VPN.

    Any future squid proxy installer or something similar for proxies..

    Amazing work with OpenVPN installer | WireGuard installer I'm using both and the setup is so easy.

    Thank you for sharing this with us !

  • @Nyr Can you make it work with LinuxMint?

        NAME="Linux Mint"
        VERSION="20.1 (Ulyssa)"
        ID=linuxmint
        ID_LIKE=ubuntu
        PRETTY_NAME="Linux Mint 20.1"
        VERSION_ID="20.1"
    

    I got this error:

        Ubuntu 18.04 or higher is required to use this installer.
        This version of Ubuntu is too old and unsupported.
    

    Thank you.

  • @PandoGulf said:

    @Nyr said:

    @PandoGulf said: Guys is there a browser plugin for wireguard ?

    When I run the VPN client I want to limit it to the browser only and not the entire PC network.

    As others have mentioned, you probably want a proxy server, not a VPN.

    Any future squid proxy installer or something similar for proxies..

    Amazing work with OpenVPN installer | WireGuard installer I'm using both and the setup is so easy.

    Thank you for sharing this with us !

    I use brook
    its literally just a command to run to start a socks5 proxy
    https://github.com/txthinking/brook
    works in all os

    Thanked by 1PandoGulf
  • NyrNyr Community Contributor, Veteran

    @hdpixel said: Can you make it work with LinuxMint?

    As Mint is not a distribution intended for servers, there are no plans for that.

    Thanked by 1hdpixel
  • Would be great to handle parameters so we czn run this unnatended :)

  • @hdpixel said:
    @Nyr Can you make it work with LinuxMint?

    NAME="Linux Mint"
    VERSION="20.1 (Ulyssa)"
    ID=linuxmint
    ID_LIKE=ubuntu
    PRETTY_NAME="Linux Mint 20.1"
    VERSION_ID="20.1"

    I got this error:

        Ubuntu 18.04 or higher is required to use this installer.
        This version of Ubuntu is too old and unsupported.
    

    Thank you.

    https://github.com/complexorganizations/wireguard-manager

    Make a issue and ill support it.

  • @Prajwal said: linuxmint

    @Prajwal said:

    @hdpixel said:
    @Nyr Can you make it work with LinuxMint?

    NAME="Linux Mint"
    VERSION="20.1 (Ulyssa)"
    ID=linuxmint
    ID_LIKE=ubuntu
    PRETTY_NAME="Linux Mint 20.1"
    VERSION_ID="20.1"

    I got this error:

        Ubuntu 18.04 or higher is required to use this installer.
        This version of Ubuntu is too old and unsupported.
    

    Thank you.

    https://github.com/complexorganizations/wireguard-manager

    Make a issue and ill support it.

    https://github.com/complexorganizations/wireguard-manager/pull/69

  • DPDP Administrator, The Domain Guy

    @Prajwal said:

    @Prajwal said: linuxmint

    @Prajwal said:

    @hdpixel said:
    @Nyr Can you make it work with LinuxMint?

    NAME="Linux Mint"
    VERSION="20.1 (Ulyssa)"
    ID=linuxmint
    ID_LIKE=ubuntu
    PRETTY_NAME="Linux Mint 20.1"
    VERSION_ID="20.1"

    I got this error:

        Ubuntu 18.04 or higher is required to use this installer.
        This version of Ubuntu is too old and unsupported.
    

    Thank you.

    https://github.com/complexorganizations/wireguard-manager

    Make a issue and ill support it.

    https://github.com/complexorganizations/wireguard-manager/pull/69

    It's good that you're taking this up but at least do it in your own thread now since you've created one.

  • NyrNyr Community Contributor, Veteran

    @Prajwal said: Make a issue and ill support it.

    I would appreciate if you stop acting like an asshole.

    For me, supporting a distribution means more than modifying one line in the compatibility check, that's why I do not allocate time to support desktop distributions.

    Thanked by 1vimalware
  • are this support for IPv6 connection from VPS i used?

  • NyrNyr Community Contributor, Veteran

    @add_iT said:
    are this support for IPv6 connection from VPS i used?

    The installation process will automatically configure IPv6 for VPN clients, if available in the server.

  • I tried to install but then my IPv6 on vm itself got lost connectivity after installing wireguard, network unreachable

  • NyrNyr Community Contributor, Veteran

    @add_iT said: I tried to install but then my IPv6 on vm itself got lost connectivity after installing wireguard, network unreachable

    Are you saying that your virtual machine had IPv6 connectivity and lost it immediately after running this installer? That is very weird and unlikely to happen without notice, but please provide the full installation log so I can take a look.

  • @Nyr said:

    @add_iT said: I tried to install but then my IPv6 on vm itself got lost connectivity after installing wireguard, network unreachable

    Are you saying that your virtual machine had IPv6 connectivity and lost it immediately after running this installer? That is very weird and unlikely to happen without notice, but please provide the full installation log so I can take a look.

    Yeah I notice in /etc/sysctl.d/30-wireguard-forward.conf

    net.ipv6.conf.all.forwarding=1

    this making my IPv6 did not work

    When i try to set 0 manually IPv6 is working back again

    Btw where is to look full installation log?

  • Install script and Wireguard functionality seem to work fine on Raspberry Pi (my 3B) with Raspberry Pi OS Lite - Release date: January 11th 2021 fresh install.

    Reserve a DHCP address in your router for the pi.

    sudo su
    apt update
    apt dist-upgrade
    apt install raspberrypi-kernel-headers
    wget https://git.io/wireguard -O wireguard-install.sh && bash wireguard-install.sh
    

    Then forward whatever port you chose from your router to the pi.

    Thanked by 1licher70
  • @Nyr said:

    @add_iT said:
    are this support for IPv6 connection from VPS i used?

    The installation process will automatically configure IPv6 for VPN clients, if available in the server.

    any way to skip IPV6, even if it is available?

  • NyrNyr Community Contributor, Veteran

    @licher70 said: any way to skip IPV6, even if it is available?

    Remove lines 211 to 228 (both inclusive) from the installer script.

    I know, not the cleanest solution.

    Thanked by 1licher70
  • ymcomingymcoming Member
    edited February 2021

    Delete this “AllowedIPs = ::/0 ” in client.conf and only keep this “AllowedIPs = 0.0.0.0/0 ”

    Thanked by 1licher70
  • the script works perfect on many of my machine except oracle instance.
    i wonder anyone had this issue before and how to configure for oracle instance to works with wireguard?

  • @forces said:
    the script works perfect on many of my machine except oracle instance.
    i wonder anyone had this issue before and how to configure for oracle instance to works with wireguard?

    Yes for Oracle instance i had also faced issues . Issue is firewall . Open ports
    Then it was fine

  • @kuduku said:

    @forces said:
    the script works perfect on many of my machine except oracle instance.
    i wonder anyone had this issue before and how to configure for oracle instance to works with wireguard?

    Yes for Oracle instance i had also faced issues . Issue is firewall . Open ports
    Then it was fine

    erm..yes
    i am an idiot lol
    open rules on oracle panel, allow all protocol and it is good to go

  • @Nyr said:

    @licher70 said: any way to skip IPV6, even if it is available?

    Remove lines 211 to 228 (both inclusive) from the installer script.

    I know, not the cleanest solution.

    Thanks :)

  • I've just installed this on a server and it's using boringtun. Whenever it does the boringtun-upgrade, the vpn shuts down and I can't figure out how to restart it without rebooting the server. If I try to start boringtun I get BoringTun failed to start and it blows up the interface. I could set the server to reboot right after the boringtun upgrade, but this is somewhat inelegant.

  • works great !

  • NyrNyr Community Contributor, Veteran

    @curmudgeon said: I've just installed this on a server and it's using boringtun. Whenever it does the boringtun-upgrade, the vpn shuts down and I can't figure out how to restart it without rebooting the server. If I try to start boringtun I get BoringTun failed to start and it blows up the interface. I could set the server to reboot right after the boringtun upgrade, but this is somewhat inelegant.

    When it is broken, run systemctl status [email protected] and see if there is anything interesting there.

    boringtun-upgrade is pretty robust, but try running it manually and report the command output and result.

  • [root@centos-s-1vcpu-1gb-sgp1-01 ~]# wget https://git.io/wireguard -O wireguard-install.sh && bash wireguard-install.sh
    -bash: wget: command not found

  • NyrNyr Community Contributor, Veteran

    @ruhulamin7 said: wget: command not found

    yum install wget

  • _MS__MS_ Member

    @Nyr said:

    @ruhulamin7 said: wget: command not found

    yum install wget

    LOL

    Thanked by 1bdl
  • TimboJonesTimboJones Member
    edited March 2021

    @ruhulamin7 said:
    [root@centos-s-1vcpu-1gb-sgp1-01 ~]# wget https://git.io/wireguard -O wireguard-install.sh && bash wireguard-install.sh
    -bash: wget: command not found

    Protip: whenever you get error message, copy and paste into Google. Google is first line of defense from embarrassment.

  • MagicAppleMagicApple Member
    edited May 2021

    How do I see the QR code on a already created user? On CentOS 7

Sign In or Register to comment.