当前位置: 技术问答>linux和unix
内网客户端用代理访问外网的ftp服务器访问不上
来源: 互联网 发布时间:2016-09-09
本文导语: 目前的情况是: 这个内网客户端的环境是linux,.bash_profile的配置文件如下: # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ...
目前的情况是:
这个内网客户端的环境是linux,.bash_profile的配置文件如下:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATHHOME/bin
export PATH
unset USERNAME
http_proxy=10.10.151.125:808
ftp_proxy=10.10.151.125:808
export http_proxy
export ftp_proxy
按照上面的配置访问外网的http服务器,是可以的
但ftp服务器在终端敲入“ftp 服务器名”,访问不了;若在ie中敲入“ftp://服务器名” 是可以访问的,应该不是防火墙的原因;不知怎么解决?
还请有做过相关的前辈中多多指教。谢谢!
这个内网客户端的环境是linux,.bash_profile的配置文件如下:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATHHOME/bin
export PATH
unset USERNAME
http_proxy=10.10.151.125:808
ftp_proxy=10.10.151.125:808
export http_proxy
export ftp_proxy
按照上面的配置访问外网的http服务器,是可以的
但ftp服务器在终端敲入“ftp 服务器名”,访问不了;若在ie中敲入“ftp://服务器名” 是可以访问的,应该不是防火墙的原因;不知怎么解决?
还请有做过相关的前辈中多多指教。谢谢!
|
看看配置文件,是不是禁止从终端或特定的IP访问啊?