I have a linux server on configuration with apache. However I cannot get access to it using a remote computer.
I can ssh to the server normally.
my IP table:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/0
ACCEPT all -- 0.0.0.0/0 0.0.0.0/0
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22
REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
netstat -ant
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 SERVERIP:80 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:45117 0.0.0.0:* LISTEN
tcp 0 196 SERVERIP:22 MyIP:3149 ESTABLISHED
tcp 0 0 :::111 :::* LISTEN
tcp 0 0 :::22 :::* LISTEN
tcp 0 0 :::47193 :::* LISTEN
using Curl SERVERIP:80
and curl localhost:80
, both return default page from apache.
What could be the problem?
You need to enable access to your server on port 80 as it is currently being blocked by iptables.
This will insert the rule into your iptables configuration at the start. Once you have done this and tested that it works then you should save the configuration so that it it is used next time the service starts,
this will write the current configuration to
/etc/sysconfig/iptables
.If you use CentOS 7 then FirewallD is the right way to go:
Verify with your browser that it works, and then:
To make changes permanent
Your iptables rules only allow incoming connections on port 22. Open up port 80 as well.
You can also use the default http service directly
you can use -I instead of -A and the cmd is iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
Use a online port checker and check the port is indeed open, If not a possible reason might be your ISP is blocking it. (Optimum does). Call your ISP and ask them to open it.