So there is a proxy that I am required to route traffic through. HTTP works without issue when updating the OS, for example.
Some of the env settings that are in play:
FTP can see the proxy as an option:
When I try to use FTP:
... tcpdump shows that the host does not even try to talk to the proxy:
I have visited with the proxy admins and they indicated that port 8080 will accept FTP traffic. I feel like I am chasing my tail on this because of shotgunning different configs.
Any thoughts would be appreciated.
Thanks!
Some of the env settings that are in play:
Code:
$ env
SSH_CLIENT=1.7.1.6 50655 22
LOGNAME=jblue
PAGER=more
MAIL=/var/mail/jblue
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/home/jblue/bin
EDITOR=vi
ENV=/home/jblue/.shrc
PWD=/usr/home/jblue
TERM=vt100
SSH_TTY=/dev/pts/0
HOME=/home/jblue
USER=jblue
SSH_CONNECTION=1.7.1.6 50655 1.5.4.8 22
SHELL=/bin/sh
BLOCKSIZE=K
ftp_proxy=http://proxy.dude.com:8080
http_proxy=http://proxy.dude.com:8080
Code:
$ ftp
ftp> set
anonpass jblue@
ftp_proxy http://proxy.dude.com:8080
http_proxy http://proxy.dude.com:8080
no_proxy
pager more
prompt ftp>
rprompt
Code:
ftp> open
(to) ftp.freebsd.org
Trying 96.47.72.72:21 ...
^C
Code:
jblue@hostname:~ # tcpdump -n -i vmx0 host 96.47.72.72
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on vmx0, link-type EN10MB (Ethernet), capture size 65535 bytes
13:07:24.724866 IP 1.5.4.8.29449 > 96.47.72.72.21: Flags S
13:07:26.522761 IP 1.5.4.8.29013 > 96.47.72.72.21: Flags S
13:07:29.551817 IP 1.5.4.8.29013 > 96.47.72.72.21: Flags S
Any thoughts would be appreciated.
Thanks!