Skip to main content

将树莓派 3B+ 变为 PriTunl VPN | Linux 中国


PriTunl[1] 是一款出色的 VPN 终端解决方案,非常适合希望以简单快捷的方式私密的访问网络的小型企业和个人。它是开源的,基本的免费版本涵盖最通用的简单的实例,足以让你快速入门。也有集成了活动目录等高级功能的付费企业版。
有关树莓派 3B+ 的特别注意事项
PriTunl 的安装通常也很简单,但要在树莓派 3B+ 上安装 PriTunl 有点小复杂。比如,PriTunl 只提供了 AMD64 和 i386 架构的二进制文件,但树莓派 3B+ 是 ARM 架构的,这意味着需要从源码自行编译可用于树莓派 3B+ 的 PriTunl 可执行文件。不过,无需担心,编译过程很简单,只需花一点时间执行几行命令即可。
另一个问题:PriTunl 好像必须要是 64 位处理器架构,当我在 32 位操作系统上尝试编译的时候报错了。但幸运的是,用于 ARM64 架构的 Ubuntu 18.04 测试版本可以安装在树莓派 3B+ 上。
同样,树莓派 3B+ 需要和其他树莓派不同的引导程序。需要一组小复杂的命令来安装更新树莓派 3B+ 上必要的组件。
安装 PriTunl
你可以先在树莓派 3B+ 上安装 64 位的操作系统来避免下面这些问题。此处需要一些必要的基础知识如在树莓派上执行命令行。
打开终端,用如下命令下载 Ubuntu 18.04 用于 ARM64 架构的测试版:
  1. $ wget http://cdimage.ubuntu.com/releases/18.04/beta/ubuntu-18.04-beta-preinstalled-server-arm64+raspi3.img.xz
将下载的固件解压:
  1. $ xz -d ubuntu-18.04-beta-preinstalled-server-arm64+raspi3.xz
将准备好的 SD 卡插入电脑读卡槽,电脑会为 SD 卡分配一个驱动分配器号,例如 /dev/sda或者 /dev/sdb。 输入命令 dmesg 然后观察屏幕上的最后几行找到 SD 卡的驱动分配器。
下一步小心操作,如果搞错了驱动分配器号,可能会破坏你的系统。
用如下命令往 SD 卡中写入数据,将其中的  替换成你的 SD 驱动器号。
  1. $ dd if=ubuntu-18.04-beta-preinstalled-server-arm64+raspi3.img of=<DRIVE> bs=8M
完成上一步之后,将 SD 卡插入树莓派 3B+ ,并启动它。确保树莓派 3B+ 是连网的,然后登录系统,用户名/密码:ubuntu / ubuntu
在树莓派上输入以下命令以安装一些编译 PriTunl 所需的包:
  1. $ sudo apt-get -y install build-essential git bzr python python-dev python-pip net-tools openvpn bridge-utils psmisc golang-go libffi-dev mongodb
和 PriTunl 标准源码上的 安装说明[2] 有一点不一样。确保已经登录进树莓派然后切换到管理员账户:
  1. $ sudo su -
现在你应该在管理员账户的目录下,按如下命令来安装 PriTunl 1.29.1914.98 版本:
  1. export VERSION=1.29.1914.98
  2. tee -a ~/.bashrc << EOF
  3. export GOPATH=\$HOME/go
  4. export PATH=/usr/local/go/bin:\$PATH
  5. EOF
  6. source ~/.bashrc
  7. mkdir pritunl && cd pritunl
  8. go get -u github.com/pritunl/pritunl-dns
  9. go get -u github.com/pritunl/pritunl-web
  10. sudo ln -s ~/go/bin/pritunl-dns /usr/bin/pritunl-dns
  11. sudo ln -s ~/go/bin/pritunl-web /usr/bin/pritunl-web
  12. wget https://github.com/pritunl/pritunl/archive/$VERSION.tar.gz
  13. tar -xf $VERSION.tar.gz
  14. cd pritunl-$VERSION
  15. python2 setup.py build
  16. pip install -r requirements.txt
  17. python2 setup.py install --prefix=/usr/local
现在,不出意外的话应该可以启动 MongoDB 和 PriTunl 的 systemd 单元了。假如现在还是以管理员账户登录的话,输入:
  1. systemctl daemon-reload
  2. systemctl start mongodb pritunl
  3. systemctl enable mongodb pritunl
大功告成!你现在可以登录 PriTunl 的用户界面并按照官网上的 安装和配置手册[3] 来配置它了。

via: https://opensource.com/article/19/1/pritunl-vpn-raspberry-pi

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...