Vsftpd Running, Can't Connect From Outside
Nov 8, 2008
I have been pulling my hair out all day trying to fix this issue, which should be simple in theory.
Basically in summary, vsftpd is running on the server, I can't connect to FTP from my own computer.
I have tried many things, but right now the way it stands is my vsftpd.conf file has listen=YES. I did a netstat -pan, with a return of:
tcp 0 0 0.0.0.0:21 0.0.0.0:* LISTEN 29984/vsftpd
I can telnet/FTP into port 21 locally, so vsftpd is indeed running properly, but I cannot connect from the outside at all. I have also commented out everything in /etc/hosts.allow.
At this point, I am out of ideas. And to top it all off, I'm on a tight deadline. Usually works out there way doesn't it?
View 5 Replies
ADVERTISEMENT
Apr 29, 2007
I have a big problem because ban command for APF:
Quote:
/etc/apf/apf -d iptoban
Doesn't working for vsftpd service (only for apache & ssh).
Code:
Apr 29 13:35:05 xxx vsftpd: (pam_unix) authentication failure; logname= uid=0 euid=0 tty= ruser= rhost=217.20.127.191 user=web0
How can I ban this IP for vsftpd service in APF?
View 0 Replies
View Related
Sep 12, 2007
Which one would you consider using the most? Currently I use vsftpd and while it's fast and light, it's a real pain in the butt to add new users I've found (adding shell users except it doesn't always work). I was reading up on how to add users on pure ftp and they had something called virtual users which looked really nice...
View 9 Replies
View Related
Apr 24, 2007
Server is currently running on proftp with cpanel. If I switch to vsftpd, will all the ftp accounts work and can I manage them through cpanel?
View 1 Replies
View Related
Apr 23, 2009
I am setting up a shared Server with apache2 and php5 + suhosin +suPHP + vsftpd.
The Directory Structure is:
1. DocumentRoot
/var/www/virtual/website1
/var/www/virtual/website2
/var/www/virtual/website3
............etc
2. For each website I would create a system account and tie it to each virutal host(as required by suPHP)
chown -R John:group1 /var/www/virtual/website1
chown -R Mary:group1 /var/www/virtual/website2
chown -R Ben:group1 /var/www/virtual/website3
...........etc
<VirtualHost 192.168.100.44>
DocumentRoot /var/www/virtual/website1
ServerName www.website1.com
suPHP_UserGroup John group1
</VirtualHost>
<VirtualHost 192.168.100.45>
DocumentRoot /var/www/virtual/website2
ServerName www.website2.com
suPHP_UserGroup Mary group1
</VirtualHost>
........etc
3. I setup vsftpd with chroot to each virtual host.
This works very nice as long as each client has only one ftp account. But if a client(website1) wants to have multiple ftp accounts( ex. john, john100, john200), they would mess up the file ownership when they upload and change files. Since suPHP executes PHP scripts with the permissions of their owners (suPHP_UserGroup John group1, suPHP would complain their setid is mismatched because the John100 is not the suPHP_USERGROUP owner(John). I have tried Virtual Hosting with Vsftpd and Mysql, that didn't work because all the virutal users would be acting as one user (guest_username=virtualftp) when they upload and change files. I am wondering if there is ways to allow multiple ftp accounts for each Virutal host working together with suPHP. Or It is possible for ftp user to change ownership once they log in.
View 3 Replies
View Related
Jun 4, 2008
working with Ubuntu (and unix/linux) in general. I have, however, managed to install vsftpd and configure it in what I believe is a correct manner.
However, upon attempting to upload a file, I get a "could not create file" error which seems to imply that I don't have permission. The account that I'm logged in under is an administrator account.
My configuration file is:
Code:
listen=YES
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
ftpd_banner=Welcome to the Web-Ideals FTP Service! We're awesome.
secure_chroot_dir=/var/run/vsftpd
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
View 0 Replies
View Related
Jul 11, 2008
With Red Hat Enterprise Linux 4 (RHEL 4), are updated packages made available, or are only security patches backported? Specifically I'm interested in vsftpd. Version 2.0.1 is included in the RHEL installation on a server I'm working on, but there is a bug fix in v2.0.4 that I'd like to get access to.
Is there an easy way for me to browse / search what packages are available for RHEL 4, preferably via website?
View 5 Replies
View Related
Nov 11, 2008
I been using plesk, and cpanel so this is the first time I have Webmin for my CentOS.
After some googling and reading, i able to install apache, mysqld and vsftpd (for some reason, my host (hivelocity) didnt install these. So this is my setup.
a.com: in godaddy, i add nameserver host as ns1.a.com and ns2.a.com and change the dns to point to that
b.com: in godday, point dns to ns1.a.com and ns2.a.com
BIND DNS Server
========================
I create two master zone for a.com and b.com
a.com
Code:
$ttl 38400
a.com. IN SOA server.a.com. abc.yahoo.com. (
1226206691
10800
3600
604800
38400 )
a.com. IN A 1.2.3.4
server.a.com. IN A 1.2.3.4
a.com. IN NS server.a.com.
mail.a.com. IN A 1.2.3.4
ftp.a.com. IN CNAME a.com.
www.a.com. IN CNAME a.com.
a.com. IN MX 10 mail.a.com.
b.com
Code:
$ttl 38400
b.com. IN SOA server.a.com. abc.yahoo.com. (
1226206691
10800
3600
604800
38400 )
b.com. IN A 1.2.3.4
server.a.com. IN A 1.2.3.4
b.com. IN NS server.a.com.
mail.b.com. IN A 1.2.3.4
ftp.b.com. IN CNAME b.com.
www.b.com. IN CNAME b.com.
b.com. IN MX 10 mail.b.com.
APACHE
========================
I created 2 virtual servers for a.com and b.com
/home/sites/a.com/html
/home/sites/b.com/html
I create an index.php in a.com/html with content: "a.com YEAH"
I create an index.php in b.com/html with content: "b.com YEAH"
After wait for dns to propogated,
when i try to go to a.com, content "a.com YEAH" shows up.
But when goto b.com, content "a.com YEAH" shows up? Why?
Also, when goto ns1.a.com, content "a.com YEAH" is there.
I also has problem with vsftpd but let fix that later.
View 4 Replies
View Related
May 26, 2007
I have a RHEL 4 plain server, and im using vsftpd server, i can not find an option to specify the max size for uploading files... does anybody know something about this?
View 1 Replies
View Related
May 22, 2008
is to use windows authentication, to connect to the site, and connect to MS SQL with the same user.
I read on the net (http://msdn.microsoft.com/en-us/library/ms998358.aspx), and it said I should go to my default sites properties, to to the "directory security" tab, and make sure "Integrated Windows authentication" is the only box that is checked.
I did that and now I cant connect to my site...
When I try to connect, it bring up a windows user name and password box. I put a user name and password in, but nothing...
Iv double checked the user exist, and still nothing...
View 3 Replies
View Related
May 31, 2008
I REALLY REALLY need to connect to my FTP on 1and1 and for some reason it seems to be down. Is anyone else having this problem?
View 2 Replies
View Related
May 10, 2009
This week connectswitch's service has not been that good. Basically first they restart the node without prior notice and our vps was down for 7 hours. and now we buy our cPanel license via them and they havent paid it so the license is now expired although we have paid them for it.
View 11 Replies
View Related
Jul 30, 2009
We can't resolve any outside websites, for example wget won't resolve any websites.
elvis:~# wget [url]
--2009-07-30 03:12:15-- [url]
Resolving g-ecx.images-amazon.com... failed: Temporary failure in name resolution.
wget: unable to resolve host address `g-ecx.images-amazon.com'
elvis:~#
How can we debug this? Its just started to do this, before it was fine for months.
We can resolve IP addresses fine.
elvis:~# wget [url]
--2009-07-30 03:18:08-- http://206.251.77.82/~proxy/images/b...ntent-view.png
Connecting to 206.251.77.82:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 241 [image/png]
Saving to: `background-content-view.png'
100%[======================================>] 241 --.-K/s in 0s
2009-07-30 03:18:08 (63.8 MB/s) - `background-content-view.png' saved [241/241]
elvis:~#
View 2 Replies
View Related
Mar 13, 2008
i am searching a VPS to connect Thailand users
its need very fast link and good ping
its for real time multimedia ( i try to avoid LAG in sound)
windows as a preference but linux can do
I dont need a lots of CPU or RAM cpy of 233mhz and ram of 256m is enought
put the connectivity is crucial full dubplex 100mbps and 500G of bandwith as a minimal
any clue where i can find this litle jewel
now i am using one who use tiscali as the provider its works fine the VPS is ok but its dont connect well all my poeples
so i am looking to change it
View 10 Replies
View Related
Apr 3, 2008
I'm getting a cabinet colocation with a provider and on the sales order there is a setup and re-occurring fee for "cross connect". My rep explained it's for the connection from my cabinet to their switch. Is this a typical charge for colocation? I thought cross connect is for connecting from their facility to 3rd party providers.
View 13 Replies
View Related
Jun 18, 2008
I got my dedicated server on centos ... everything is running, how to remotly connect
I already tried putty but there are some problems. My hosting provider give me this details:
root / Admin Password: xxx
DRAC-ip-user-password
and APC IP.
So which program is the best for remote connect?
View 8 Replies
View Related
Apr 24, 2008
how to setup an iPhone to access a mailbox hosted with VPS?
View 0 Replies
View Related
Jun 18, 2008
i runnig backup, after runing backup, i can not connect to whm cpanel
show this error:
In order to access the interface, you will need to make sure that the software license on this server is active and installed.
Your license could not be activated because:
Cannot Read License File
View 4 Replies
View Related
Aug 30, 2007
I can't connect to CPanel or any of my sites but I can connect to my virtuozzo control panel. When I try to connect to CPanel or any of my sites I get an error that says that the server is taking to long to respond.
If I go through a proxy I see the sites so I know CPanel is not down.
How is it possible to connect to my Virtuozzo control panel but not Cpanel?
View 9 Replies
View Related
Jan 16, 2007
We're having a small problem with one of our Ventrilo boxes (Linux) that seems to be blocking users from connecting. The DC (The Planet) is reporting that the issue is likely with the user and my tech is also saying the same thing. I have reason to believe they're both wrong but wanted to see if anyone had any ideas.
Here are 3 tracert's that show normal activity until the user reaches the DC network and then they can't reach our server.
All 3 of these are from different users experiencing the exact same problem.
Tracing route to ca.13.1343.static.theplanet.com [67.19.19.202] over a maximum of 30 hops:
1 2 ms 1 ms <1 ms 192.168.1.1
2 * * * Request timed out.
3 70 ms 72 ms 24 ms 68.86.105.193
4 127 ms * 13 ms 10g-9-3-ur02.longmont.co.denver.comcast.net [68. 86.103.157]
5 103 ms 87 ms 66 ms 10g-9-1-ur01.longmont.co.denver.comcast.net [68. 86.103.161]
6 12 ms 11 ms 12 ms 10g-3-1-ar01.denver.co.denver.comcast.net [68.86 .103.154]
7 9 ms 9 ms 23 ms 68.86.103.150
8 11 ms 12 ms 11 ms 12.125.159.89
9 45 ms 42 ms 33 ms tbr2-p013702.dvmco.ip.att.net [12.123.207.150]
10 31 ms 34 ms 126 ms tbr2-cl33.dlstx.ip.att.net [12.122.12.125]
11 145 ms 32 ms 31 ms gar1-p3100.dlrtx.ip.att.net [12.123.16.165]
12 38 ms 32 ms 31 ms 12.119.136.14
13 30 ms 34 ms 32 ms te7-1.dsr02.dllstx3.theplanet.com [70.87.253.18]
14 34 ms 32 ms 30 ms vl41.dsr01.dllstx4.theplanet.com [70.85.127.83]
15 59 ms 142 ms 48 ms gi1-0-2.car02.dllstx4.theplanet.com [67.19.255.1 34]
16 * * * Request timed out.
17 * * * Request timed out.
18 * * * Request timed out.
19 * * * Request timed out.
20 * * * Request timed out.
21 * * * Request timed out.
22 * * * Request timed out.
23 * * * Request timed out.
24 * * * Request timed out.
25 * * * Request timed out.
26 * * * Request timed out.
27 * * * Request timed out.
28 * * * Request timed out.
29 * * * Request timed out.
30 * * * Request timed out.
Tracing route to ca.13.1343.static.theplanet.com [67.19.19.202] over a maximum of 30 hops:
1 <1 ms <1 ms <1 ms 192.168.1.1
2 8 ms 7 ms 10 ms 73.96.20.1
3 9 ms * 7 ms GE-2-37-ur01.aberdeen.wa.seattle.comcast.net [68 .86.98.9]
4 9 ms 13 ms * te-5-2-ur01.olympia.wa.seattle.comcast.net [68.8 6.96.6]
5 11 ms * 12 ms te-8-4-ar01.burien.wa.seattle.comcast.net [68.86 .96.10]
6 14 ms 19 ms 14 ms 12.116.25.13
7 69 ms 69 ms 70 ms tbr1011401.st6wa.ip.att.net [12.122.111.6]
8 72 ms 76 ms 74 ms tbr2-cl10.sffca.ip.att.net [12.122.12.113]
9 73 ms 66 ms 67 ms tbr1-cl30.sffca.ip.att.net [12.122.9.137]
10 67 ms 68 ms 69 ms tbr1-cl3.la2ca.ip.att.net [12.122.10.26]
11 70 ms 67 ms 67 ms tbr1-cl20.dlstx.ip.att.net [12.122.10.49]
12 67 ms 68 ms 67 ms gar1-p340.dlrtx.ip.att.net [12.123.16.161]
13 65 ms 66 ms 65 ms 12.119.136.14
14 66 ms 66 ms 65 ms te9-1.dsr02.dllstx3.theplanet.com [70.87.253.22]
15 68 ms 67 ms 68 ms vl42.dsr02.dllstx4.theplanet.com [70.85.127.91]
16 67 ms 66 ms 66 ms gi1-0-1.car02.dllstx4.theplanet.com [67.19.255.6 ]
17 * * * Request timed out.
18 * * * Request timed out.
19 * * * Request timed out.
20 * * * Request timed out.
21 * * * Request timed out.
22 * * * Request timed out.
23 * * * Request timed out.
24 * * * Request timed out.
25 * * * Request timed out.
26 * * * Request timed out.
27 * * * Request timed out.
28 * * * Request timed out.
29 * * * Request timed out.
30 * * * Request timed out.
1 9 ms 5 ms 7 ms 73.101.80.1
2 7 ms 7 ms * GE-2-37-ur01.gigharbor.wa.seattle.comcast.net [6 86.99.9]
3 * * * Request timed out.
4 13 ms 9 ms 11 ms 12.117.243.13
5 64 ms 66 ms 64 ms 12.127.6.50
6 67 ms 67 ms 273 ms tbr2-cl10.sffca.ip.att.net [12.122.12.113]
7 67 ms 73 ms 69 ms tbr1-cl30.sffca.ip.att.net [12.122.9.137]
8 66 ms 66 ms 65 ms tbr1-cl3.la2ca.ip.att.net [12.122.10.26]
9 68 ms 64 ms 63 ms tbr1-cl20.dlstx.ip.att.net [12.122.10.49]
0 67 ms 70 ms 66 ms gar1-p340.dlrtx.ip.att.net [12.123.16.161]
1 70 ms 68 ms 67 ms 12.119.136.14
2 72 ms 69 ms 66 ms te9-1.dsr02.dllstx3.theplanet.com [70.87.253.22]
3 63 ms 65 ms 65 ms vl42.dsr02.dllstx4.theplanet.com [70.85.127.91]
4 69 ms 75 ms 69 ms gi1-0-1.car02.dllstx4.theplanet.com [67.19.255.6
5 * * * Request timed out.
6 * * * Request timed out.
7 * * * Request timed out.
8 * * * Request timed out.
9 * * * Request timed out.
0 * * * Request timed out.
View 5 Replies
View Related
Jun 13, 2007
I recently tried installing phpbb forum via fantastico and everytime I try I get the error "phpbb critical error" "could not connect to database"
I also get an error connecting to database when I try installing SMF.
I checked the configuration/information and the password and username is all correct.
View 3 Replies
View Related
Nov 25, 2007
I'm trying to cross connect two linux servers' secondary NICs with a cross over cable. after I pluged in the both ends, I tried to set internal ips for eth1 with netconfig, 192.168.3.1 and the other one is 192.168.3.2, i don't know what to put on netmask and gateway so I left it with netconfig's default, after that I tried ifup ifcfg-eth1 but the server lost connection.
The tech at the datacenter checked and said I delete their network gateway from the list of routes.
what should I do? remove the gateway line in ifcfg-eth1?
View 3 Replies
View Related
Mar 8, 2009
I am unable to connect to corehoster at all again --
I have been having issues since I opened my alpha master reseller account
Any reseller account I create cant create cleints..
I am even unable to enter tickets or send email to them since they are unreachable
Nick S refuses to refund my account .
Any one else having issues with core hoster
View 1 Replies
View Related
Oct 29, 2009
I install a Oracle Collaboration Suite portal on a Windows 2003 server.
I configure everithig to put it online. I cerate a dyndns hostname and I forwarded the 80 port on the router.
So, when I type the adress the portal appears but when I press on a link he redirects me on server.xxx.local.
View 0 Replies
View Related
Aug 20, 2009
How can I set up a script or shortcut to run commands from a Windows XP machine on my CentOS machine over SSH?
I am running a virtual CentOS (VirtualBox) machine containing my LAMP stack. I also have other tools like subversion, git, etc. on there that I wish to use. On my windows machine, I want to set up quick scripts like 'commit' and send my path with args. I also want to use it for running command line PHP scripts on the remote server.
View 3 Replies
View Related
Apr 20, 2009
I am using cPanel 11 (stable release) on a CentOS 5 server and would like to make it so that a certain database can only be connected to from the cPanel user that it is under (ie. user1_db can only be connected to from the user "user1" on the same server).
View 9 Replies
View Related
Dec 14, 2008
I signed up for a Win2k3 VPS account with 3dgwebhosting. I'm a newbie to Plesk and win2k3 so I spent the first day getting head around Plesk.
I then logged into Remote Desktop only to find someone else had beat me. They'd hacked in and downloaded a mass email client, email stripper and obviously sent out spam from a 2mb text file of email addresses.
I didn't spend long in Remote Desktop, but while there I switched on Windows Firewall, changed my admin login password and logged off.
Now, 24 hours later, I can't get back in. I get the error - This computer can't connect to the remote computer. Try again.....
I can still login through Plesk, FTP and ExpressionWeb.
Is FW keeping me out of RD or has the hacker returned?
View 2 Replies
View Related
Jun 10, 2008
i want to know how EXACTLY connect more than server with one domain
i will explain what i want [note : sites & ip all for example below]
i have a site name [company name] is www.comanyname.com
and i have two servers [client servers] with the following dns
server 1#
ns1.companyname.com pointed to ip 192.168.1.1
ns2.companyname.com pointed to ip 192.168.1.2
server 2#
ns3.companyname.com pointed to ip 10.0.0.1
ns4.companyname.com pointed to ip 10.0.0.2
now i want to make a NEW domain name like
www.companynamedns.com
and i want this domain hold all client's servers [want to spilt the company dns of the client dns], like
ns1.companynamedns.com
ns2.companynamedns.com
ns3.companynamedns.com
ns4.companynamedns.com
vip.companynamedns.com
s1.companynamedns.com
i can make any name server like i want,
so the first thing it must to be all server's ip that i want to connect to the domain companynamedns.com in www A record and mx record too
and if u ping to companynamedns.com every time it give you random ip [cuz i put www a record for more than server with same one domain name]
so this way not very cleard for me and i want to know
how can i add the www a record?
should i create a dns zone in any server but this entry in one server in whm [note i use cpanel/whm]?
and put the www A record with new domain name companynamedns.com for every time i get a new server like i add www A record this
companynamedns.com 1 A 192.168.1.1 14400s
companynamedns.com 1 A 10.0.0.1 14400s
companynamedns.com 1 A 10.10.10.1 14400s
companynamedns.com 1 A 11.11.11.1 14400s
and mx record like this
companynamedns.com 1 TXT v=spf1 a mx ip4:192.168.1.1 ip4:10.0.0.1 ip4:10.10.10.1 -all 14400s
but how about the ns record?
should i but all ns record in the dns zone in whm?
[note : there is another company make this trick and he have alot of name server NS but i didn't see all registred in dns records only 2 NS for the site And pointed to one server only]
so how can the client connect the the server with ns that the main domain name companynamedns.com already did't added the others NS in the dns zone
like A client make the nameserver for his site is
ns22.companynamedns.com
ns23.companynamedns.com
but the DNS Records for the companynamedns.com is ONLY
s1.companynamedns.com
s2.companynamedns.com
so how the ns22 and ns23 working and it didn't even added in the dns zone in the main domain companynamedns.com
maybe he add all the name server he want in the domain control panel in the child name server only not in the name server but i think it didn't work it must be add in the name server too
i really going to be CRAZY for this
this trick is the right way to connect more than server with one domain name
i colored the thread to read and get my idea easy and i really need expert help me with that issue
View 0 Replies
View Related
Jun 10, 2007
I've downloaded and installed the Microsoft Virtual PC image for testing IE6. The development copy of my website is on the host PC, running on Windows XP/Apache/PHP. I need to use IE6 on the virtual PC to view pages served up by Apache on the host PC.
I know this requires networking them together, but I've no idea how to do that. I've installed the Microsoft Loopback Adapter on the host PC, and told the virtual PC it can use that adapter in the Virtual PC settings dialogue, but on the host PC the loopback adapter says "limited or no connectivity".
(Before someone suggests it, I've been using MultipleIEs. Trouble is, you can't test printing with that - you need a proper copy of IE6.)
View 9 Replies
View Related
Jan 26, 2008
i have problem with shoutcast accounts....i have some shoutcast servers in ports 8002,8004,8006,8008,8010,8012... every day some of the shoutcast server or all, goes down and the customers can connect by winamp...so as result i am always go to start the servers by myself...why these happening?why the servers are going down? is there an automatically way to start them when they stop?
View 9 Replies
View Related
Mar 16, 2007
I have this server with no control panel and dnsreport could not connect to mailservers on all my domains. But the server can send out emails because I'm receiving logwatch emails, etc. I'm also using dnsmadeeasy for my nameservers.
Quote:
ERROR: I could not complete a connection to any of your mailservers!
mail.mydomain.com: Timed out [Last data sent: [Did not connect]]
If this is a timeout problem, note that the DNS report only waits about 40 seconds for responses, so your mail *may* work fine in this case but you will need to use testing tools specifically designed for such situations to be certain.
I tried adding the domains on /etc/mail/local-host-names and restart sendmail but the error is still there.
View 0 Replies
View Related