I rented a KWM VPS storage server (CentOS 7) and I can access it via SSH and SFTP.
But I can't do anything with it because it refuses everything. I didn't install anything on it, didn't change any config, havent done anything. Fresh OS install. (except for deactivating firewall and selinux which were automatically on)
curl
# curl xx.xx.xxx.xxx
curl: (7) Failed connect to xx.xx.xxx.xxx:80; Connection refused
netstat
# netstat -plnt
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1226/sshd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1148/master
tcp6 0 0 :::22 :::* LISTEN 1226/sshd
tcp6 0 0 ::1:25 :::* LISTEN 1148/master
SELinux
setsebool -P httpd_can_network_connect on
setsebool: SELinux is disabled.
Firewalld
systemctl status firewalld
â— firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
Active: inactive (dead)
Docs: man:firewalld(1)
iptables
# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
I don't know what else to check on?
VPS support says they didn't block any port and that it is a problem from "inside the KWM".
From literally 3 days of googling, the only other 2 options might be maybe that my IP runs twice and maybe it is a NAS server? But I wouldn't know how to check on these things and it is just a guess. Or maybe some SSL stuff? Or vhost things? I don't know. I have not much clue about servers, so please help me, if you have the time. Much appreciated, thank you.