如何确定unraid有没有正常走梯子


Go to solution Solved by anpple,

Recommended Posts

Community Applications删除之后想要重新安装,一会提示Network failure,用网上找的国内的ca地址也提示Network failure,折腾了半天笔记本电脑做好clash梯子,笔记本可以正常访问墙外,并且在unraid上用Proxy Editor插件做好的代理笔记本电脑ip上网。安装ca时仍旧提示Network failure。

 

我的问题是:

1,如何确定unraid已经正确搭好梯子了?

2,我担心是不是以前没有梯子的时候按照网路上教程,设置了某些东西,导致现在即使搭好梯子也不能访问。unraid的host文件里面只有127.0.0.1 Tower localhost     和    54.149.176.35     keys.lime-technology.com这两行。其他没有。

3,我不确定那些网路上的国内源地址的ca安装地址是否仍旧正常可用,有没有哪位朋友可以提供一个目前可用的国内ca地址

Link to comment
Quote

1、如何确定unraid已经正确搭好梯子了?

 

可以在命令行界面使用以下命令来插件能否正常返回 Google 的 HTML 数据:

curl www.google.com

 

Quote

2,我担心是不是以前没有梯子的时候按照网路上教程,设置了某些东西,导致现在即使搭好梯子也不能访问。unraid的host文件里面只有127.0.0.1 Tower localhost     和    54.149.176.35     keys.lime-technology.com这两行。其他没有。

 

你的 host 文件是正常的没有问题。

 

Quote

3,我不确定那些网路上的国内源地址的ca安装地址是否仍旧正常可用,有没有哪位朋友可以提供一个目前可用的国内ca地址

 

https://gitee.com/jackiewuu/unraid/raw/master/plugins/community.applications/community.applications.plg

 

 

建议:你可以安装一个 OP 虚拟机来挂代理,然后直接将 Unraid 的网关设置为这个 OP 的 IP 地址来使用代理,这种方式会比使用 Proxy Editor 插件来的方便一点。

 

其他参考资料:CA 应用商店代理

Edited by JackieWu
Link to comment
7 hours ago, JackieWu said:

 

可以在命令行界面使用以下命令来插件能否正常返回 Google 的 HTML 数据:

curl www.google.com

 

 

你的 host 文件是正常的没有问题。

 

 

https://gitee.com/jackiewuu/unraid/raw/master/plugins/community.applications/community.applications.plg

 

 

建议:你可以安装一个 OP 虚拟机来挂代理,然后直接将 Unraid 的网关设置为这个 OP 的 IP 地址来使用代理,这种方式会比使用 Proxy Editor 插件来的方便一点。

 

其他参考资料:CA 应用商店代理

我后来也看了您的网站的教程,目前还没有时间弄openwrt。多谢热心帮助

 

还有,您提供的ca国内地址,我刚测试了,也是提示网络失败。image.png.8f8e7645f5c698a716a3281616b28d04.png

我有点担心即使我弄好了openwrt,也不会解决问题。不知是什么原因。我会先自己动手弄下,真的不行再来寻求帮助。

 

请问除了看hosts有没有正常,其他的配置的东西有没有需要查看了?是不是也要查看下代理的状态?我有装Proxy Editor这个插件,里面有个查看的按钮,我发出来,请大神看看有没有异常。

 

Quote

CA proxy.cfg 文件(/boot/config/plugins/community.applications/proxy.cfg)不存在, CA当前没有使用代理

======================cat /boot/config/go======================
#!/bin/bash
# Start the Management Utility
echo "use_proxy=yes" >> /root/.wgetrc
echo "http_proxy=http://127.0.0.1:20171" >> /root/.wgetrc
echo "https_proxy=http://127.0.0.1:20171" >> /root/.wgetrc
echo "wait=10" >> /root/.wgetrc
/usr/local/sbin/emhttp &
modprobe i915
==============================END==============================

=======================cat /etc/profile========================
# /etc/profile: This file contains system-wide defaults used by
# all Bourne (and related) shells.
# limetech - modified for unRAID 'no users' environment
export HOME=/root
cd $HOME

# Set the values for some environment variables:
export MINICOM="-c on"
# limetech - use 'hostname' to get host name instead of from file
#export HOSTNAME="`cat /etc/HOSTNAME`"
export HOSTNAME="`hostname`"
export LESSOPEN="|lesspipe.sh %s"
export LESS="-MR"

# If the user doesn't have a .inputrc, use the one in /etc.
if [ ! -r "$HOME/.inputrc" ]; then
export INPUTRC=/etc/inputrc
fi

# Set the default system $PATH:
PATH="/usr/local/bin:/usr/bin:/bin"

# For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
# the $PATH. Some means of connection don't add these by default (sshd comes
# to mind).
if [ "`id -u`" = "0" ]; then
echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
if [ ! $? = 0 ]; then
PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
fi
fi

# Set TERM to linux for unknown type or unset variable:
if [ "$TERM" = "" -o "$TERM" = "unknown" ]; then
TERM=linux
fi

# Set a default shell prompt:
#PS1='`hostname`:`pwd`# '
if [ "$SHELL" = "/bin/pdksh" ]; then
PS1='! $ '
elif [ "$SHELL" = "/bin/ksh" ]; then
PS1='! ${PWD/#$HOME/~}$ '
elif [ "$SHELL" = "/bin/zsh" ]; then
PS1='%n@%m:%~%# '
elif [ "$SHELL" = "/bin/ash" ]; then
PS1='$ '
else
PS1='\u@\h:\w\$ '
fi
PS2='> '
export PATH DISPLAY LESS TERM PS1 PS2

# Default umask.
umask 0

# Append any additional sh scripts found in /etc/profile.d/:
for profile_script in /etc/profile.d/*.sh ; do
if [ -x $profile_script ]; then
. $profile_script
fi
done
unset profile_script
==============================END==============================

=======================cat /root/.wgetrc=======================
use_proxy=yes
http_proxy=http://127.0.0.1:20171
https_proxy=http://127.0.0.1:20171
wait=10
==============================END==============================
完成

 

Edited by pinkfloyd
Link to comment
10 minutes ago, JackieWu said:

 

插件我测试了是可以正常安装,是你那边网络的问题,多检查看看。

是需要上传诊断信息么?😁,诊断信息可以看出来是什么问题么?我这边网络应该没有问题,国内的ca地址都不能安装有点更过分了,杨总怀疑是unraid哪里设置的问题

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.