How To Ban Ip For Vsftpd Service
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
ADVERTISEMENT
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
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
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
Apr 27, 2015
I have a Server with Centos7 + Plesk 12 and in the service configuration say that the Bind service is not installed, from command line i have install named services and make a manual configuration the first domain, but when I return to the service page in plesk... the problem is the same, the Bind Service is not installed; then the problem is when i want create a new hosting i need to go to the ssh to make the DNS configuration...
View 1 Replies
View Related
Sep 10, 2014
Got following Problem: Unable to find service node for web service on domain with id = 0
After a Check from [URL] ....
I tried this: [URL] ....
Result:
+--------------------+--------------+---------------------------------------+------------------------------+------------+
| Domains | Service Type | IpAddressesCollections.ipCollectionId | Current value of ipAddressId | Have to be |
+--------------------+--------------+---------------------------------------+------------------------------+------------+
| XXXXXXXXXXXXX.org | mail | 30 | 0 | 1 |
+--------------------+--------------+---------------------------------------+------------------------------+------------+
Resolution:
mysql -uadmin -p`cat /etc/psa/.psa.shadow` -Dpsa -e 'Update IpAddressesCollections SET ipAddressId = 1 WHERE ipCollectionId = 30'
Result: ERROR 1062 (23000) at line 1: Duplicate entry '30-0' for key 'PRIMARY'
View 16 Replies
View Related
Jun 24, 2015
Deleted a domain workspace in Parallels Plesk and now I am getting this error when signing into the panel:Looked at the logs and been trying multiple commands (including the bootstrapper repair etc.)I found the full error from the logs:
[13-Jun-2015 16:35:33 UTC] PleskDBException: Unable to find service node for web service on domain with id=6
file: /usr/local/psa/admin/plib/PhDomain.php
line: 1404
code: 0
trace: #0 /usr/local/psa/admin/plib/Smb/Subscription/Domain.php(490): PhDomain->getWebHostingServiceNode()
[code]....
View 1 Replies
View Related
Jul 6, 2014
We are currently using Parallel Plesk 11.0 version and there is one requirement from microsoft provider to add the exact same values in SRV Records.
Priority of Service = 100
Weight of Service = 1
but these values are not available in the dropdownlist. attached are the screenshots.
View 9 Replies
View Related
Jun 15, 2014
Clean install on openSUSE 13.1
After deleting a domain, we got the following error which rendered the panel useless.
Internal error: Unable to find service node for web service on domain with id=5
Message Unable to find service node for web service on domain with id=5
File PhDomain.php
Line 1402
Type PleskDBException
Go To Previous Page
View 6 Replies
View Related
Sep 18, 2007
If i wish to start up a business with the VPN service.. do i need to install any specific software on the server side? Can it be run on Windows?
View 4 Replies
View Related
Jul 13, 2009
how to setup a Windows server to provide SSL service to other web sites. I'd like to offer a free service to my local customers and anyone who wants to secure their online operations.
can OpenSSL do the job?
View 7 Replies
View Related
Jun 13, 2009
I am trying to find the best economical solution regarding my email address but I need some advice pls.
I have a very small package with asmallorange and I have set up one of my business email in it. I didn't calculate that this business email could take so much space. I have some assistants which work in other places. One of my problems is these asistants who need to access this address too, are not allowed to access any free email provider like gmail, yahoo at their work computers because of their work policy. So I can't do forwarding and I need to have this email address under my domain.
I am thinking of these options:
1) Get more space . This will become expensive for me.
2) use a dedicated email service under my domain name.
I have no experience here and I wonder if using a gmail service under my domain will be blocked for my collaborators.
3) change host ( I am afraid to lose my data and my website database).
View 9 Replies
View Related
Aug 20, 2009
I'm going to start offering a KVMoIP service for my customers and am trying to get ideas on the pricing. What do y'all think about it? I know most places that I know about charge a setup + hourly fee, well, I like to be just a little bit better, so let's see what y'all have to say.
View 14 Replies
View Related
Jan 3, 2009
Do you use any uptime monitoring service? If so, which one do you use? Do you use a paid monitoring service, or a free one?
View 14 Replies
View Related
Mar 23, 2009
I was thinking of putting together a DB of all the IPs I block due to spam, hackers, known proxies etc... this would help cut down on malicious use of services such as spamming forums, if I catch them once, they would not have chance to spam up my other forums if each forum checks the same block list. I could also auto block proxies by having it query up online proxy lists.
But before I reinvent the wheel, does such service online already exist? Kinda like RBL, but for web services. So you can basically block IPs off your site before they get used maliciously.
To be even more advanced some special port scanners could go around scan networks for infected machines and block those too.
How it would work:
Site A has a spammer from IP 1.2.3.4 and submits it to the block service. Spammer then goes on site B to try and spam that forum, but that IP is already blocked because the owner of site A submitted it to the list and site B checks against that list.
View 2 Replies
View Related
Jul 22, 2009
The VPN service owner can he track and know all his customers activity
I mean let's say am a customer and I bought VPN subscription and then logged in with my new vpn ip and I login to my email , in that case the VPN service owner can he read know my email password or other sensitive data like if If I login to myspace.com can he know what password I used using his vpn server logs?
View 6 Replies
View Related
Apr 20, 2009
Anybody using their service? Prices are low, plans look good.
View 5 Replies
View Related
Feb 28, 2008
i ordered my server on monday,it took 80hrs to get the server,but the login panel can not be opened,then i ask them,their support is online in msn,i talk with them,but when i ask them about the login panel link can not open,they didnt reply me.it really disapointing,i ordered it one monday,but now almost friday,i still havent used it,regret to order it...
View 14 Replies
View Related
Jul 28, 2008
Iv been with steadfast for almost 6 years,
we have small vps account and 1 shared hosting account,
our vps is working very very slowly, we cant log in to direct admin, we cant do anything, i contact support personally to check this issue , the response i received was
"
We are aware of the problem with slow disk access this VPS server. We will be adding an additional VPS server and migrating some of the VPS containers to it shortly to address this issue. Under the resources we have immediately available, we are unable to get the problem corrected. Thanks, Ben Galliart Steadfast Networks Support [url]
"
WTF? unable to get the problem corrected? our clients that use our vps are going crazy, 1 client even threaten to leave us,
i don't know that to do, i was thinking of sue them, what do you think? I'm very disappointed ..
View 14 Replies
View Related
Jul 19, 2008
I am located in China and I have websites hosted in the US. Some of my sites and servers are being blocked by my ISP. Do you know of a good VPN or Proxy service that will allow me to reach my sites and managed my servers?
View 6 Replies
View Related
Apr 19, 2008
We have been trying to get our rDNS set up for 2 months with Bionhosting on our dedicated box.
and yet RDNS Entry null
Is this normal? Why would it take 2 months to set up a Reverse DNS does this somehow involve the White House and red tape?
We are really getting slammed by our clients in forums that are very important to our business. This is killing us!
What exactly is involved in setting up RDNS why is this so difficult?
View 11 Replies
View Related
Apr 13, 2008
We are hosting multiple servers for a site, web, db, media etc and all of them are in the same DC. I am getting worried that incase a server goes down, it would take DNS down along with and will also take emails out.
I was looking to use a good and reliable DNS service which would ensure that we are reliable and emails don't go out incase of an outage.
View 2 Replies
View Related
Jun 18, 2008
I want to set up a service like zoneedit.com with free name servers and branded name servers etc. Since the name servers will be authoritative I am guessing the bandwith required depends on the number of domains and their popularity. I have some questions
1) Which DNS server is the best one for the job
2) How can one provide branded name servers like instead of ns.myservice.com it would be like ns.userdomain.com. Can it be done by using a simple A record.
View 1 Replies
View Related
Jul 15, 2008
I have a low end server P3 1GHZ { ) and
High End VPS [with 512mbram -cPanel-WHM]
Can any one tell me how can I start VPN service for secure surfing?
I want to sell VPN hosting.
I have root access to both servers!
View 2 Replies
View Related
Aug 29, 2008
i have one site on vps host with 256 ram burst untill 768 ram...
every day i watch my site it alwasy consume CPU usage avareage 60%++ consume ..for daily usage its average 60% - 80% ..sometime its get 99% ...
if this situation happend to high..i used to restart service for the bind, apache, mysql and more serivice..i use cpanel and whm,,,..
my question is :
is there bad effect if i run the restart serivice everyday?
View 5 Replies
View Related
Jul 1, 2008
my dedicated server have a remot reboot panel and i want company monitor my server with less than $10 per month until my server if goes down reboot it from my panel...
View 9 Replies
View Related