Search This Blog

Showing posts with label iptables. Show all posts
Showing posts with label iptables. Show all posts

Monday, April 27, 2015

CentOS Web Server Port 80 iptables

Setup Apache on your web server, but webpage does not show.

iptables -I INPUT -p tcp --dport 80 -j ACCEPT
service iptables save

CentOS SSH Port Change

Changed port in /etc/ssh/sshd_config, what else is needed?

iptables -I INPUT -p tcp --dport PORT-NUMBER -j ACCEPT
service iptables save