psiphon
psiphon copied to clipboard
OpenSSL version mismatch
Hi,
Trying to run this on Ubuntu 18.04 and I'm getting this instead
Trying to connect to DE : 82.165.162.179
DEBUG: OSSH connection: End Of File (EOF). Exception style platform.
<pexpect.pty_spawn.spawn object at 0x7fca9d75be50>
command: ./ssh
args: [u'./ssh', u'-C', u'-D', u'127.0.0.1:5437', u'-N', u'-p', u'53', u'-z', u'-Z', u'fd014715d28e6b5f958191b378b153369be7ea3bf42e015f613579e90bdc2bd8', u'[email protected]']
buffer (last 100 chars): ''
before (last 100 chars): 'OpenSSL version mismatch. Built against 1000106f, you have 100020ef\r\r\n'
after: <class 'pexpect.exceptions.EOF'>
match: None
I've tried updating OpenSSL via apt as this SO post stated but still to no avail.
Any help is appreciated, thanks.
没用的 说什么openssl header在库里不存在 即使强行make也会报错无法生成ssh.app
有一个人说你得用0.9以下版本的ssl才行
They ship openssh-5.9p1/
cd psiphon/openssh-5.9p1/
./configure
make
You will get ~/psiphon/openssh-5.9p1/ssh
replace this with ~/psiphon/ssh
this one has solved my problem this
this one has solved my problem this
https://github.com/thispc/psiphon/issues/22#issuecomment-834708762, thanks
They ship openssh-5.9p1/
cd psiphon/openssh-5.9p1/
./configure
make
You will get ~/psiphon/openssh-5.9p1/ssh replace this with ~/psiphon/ssh
I stucked on below section https://github.com/thispc/psiphon
openssh-5.9p1$ cd ..
psiphon$ rm ssh
psiphon$ cp openssh-5.9p1/ssh .
ssh$ cd ..
psiphon$ rm ssh
psiphon$ cp ssh/ssh .
Below shows the error where we can see from above image
root@******/psiphon/ssh# cd ..
root@******/psiphon# rm ssh
rm: cannot remove 'ssh': Is a directory
root@******/psiphon# ls
Dockerfile SocksiPy psi_client.py server_list
LICENSE psi_api.py psi_ssh_connection.py servers.dat
README.md psi_api.pyc psi_ssh_connection.pyc ssh
root@******/psiphon#
Below shows OS information
englianhu@Scibrokes-Trading:~$ cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.2 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.2 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal
after changed from
cd psiphon/openssh-5.9p1/
./configure
make
to
cd psiphon/ssh/
./configure
make
successfully make https://github.com/thispc/psiphon/issues/23#issuecomment-834709237