![]() |
Port 25 in VPS 10 - Printable Version +- Post4VPS Forum | Free VPS Provider (https://post4vps.com) +-- Forum: VPS Discussion (https://post4vps.com/Forum-VPS-Discussion) +--- Forum: VPS Support (https://post4vps.com/Forum-VPS-Support) +--- Thread: Port 25 in VPS 10 (/Thread-Port-25-in-VPS-10) |
Port 25 in VPS 10 - tiwil - 01-22-2018 Hello, my Port 25 in VPS 10 is closed. Does anyone know how to open it up? I've followed the tutorial over the internet, but no solution. Anyone know it? Because port 25 is not blocked by the ToS, I guess. VPS 10 provided by Evolution-Host. RE: Port 25 in VPS 10 - perry - 01-22-2018 hey, have you made sure that firewall is blocking port 25. if not then i think its blocked by evolution-host. Perry, RE: Port 25 in VPS 10 - tiwil - 01-22-2018 (01-22-2018, 08:16 AM)perryoo11 Wrote: hey, No, I guess. I already tried, Code: sudo ufw allow 25 Any suggestion guys? Anyway, the status is closed not blocked, but I don't really know. Quote:164.zzz:25 port is closed RE: Port 25 in VPS 10 - cubedata - 01-23-2018 (01-22-2018, 10:57 AM)tiwil Wrote: No, I guess. I already tried, not really sure, though was thinking of blocking port 25 myself as well due to not having anything on the node itself currently like nodewatch for xen to monitor for & catch abuse. RE: Port 25 in VPS 10 - tiwil - 01-23-2018 I was going to use SMTP port to send e-mail for me. Yes, for me. So the basic concept of my website is to promote my self about my skill in programming, so, if a client left a message inside the contact form, it will sent me, automatically, the message to my e-mail. So I can get in touch as soon as possible with them. RE: Port 25 in VPS 10 - TrK - 01-23-2018 I guess it doesn't require you to have smtp port 25 for achieving this you can simply use php's mail function instead of messing around with ports and firewall. RE: Port 25 in VPS 10 - tiwil - 01-23-2018 (01-23-2018, 04:38 AM)TrK Wrote: I guess it doesn't require you to have smtp port 25 for achieving this you can simply use php's mail function instead of messing around with ports and firewall. I do, at first I use PHP mailer, I already tried it from local, but when I tried from my website, it doesn't work. I think the port 25 should be open for sending mail with php, because inside php.ini, it's using SMTP server to sent with localhost and port 25. I will check my local php.ini, it should be same. RE: Port 25 in VPS 10 - Dynamo - 01-23-2018 Hello, I contacted The VPS 10 Provider and here is a copy of what they had said: Quote:Hello, RE: Port 25 in VPS 10 - sagher - 01-23-2018 to use ufw you have to install the package first. its not available in default. here is some commands. how to install sudo aptitude install ufw or sudo apt-get install ufw then check the status.. sudo ufw status and you will see. Status: active To Action From -- ------ ---- 22 ALLOW Anywhere now just done with this command. sudo ufw default allow incoming and sudo ufw default allow outgoing sudo ufw enable more helping .. sudo ufw allow 25/tcp sudo ufw allow 25/udp hope it will be works for you RE: Port 25 in VPS 10 - tiwil - 01-23-2018 Ok, I looked up to this one and done telnet localhost 25, it works perfectly. I'm sorry, my fault. So now the problem is after I install sendmail package, I received that I sent the email, but I don't receive it. By the way, the case is closed now. Thanks for all suggestion. |