I read somewhere that using CDE with some iptables rules would not be
functioning properly.
I'm runing a basic ruleset allowing only incoming ssh connections only.
This is the "quick copy and paste" if someone finds utility. It could be
done better , for sure. ( The loopback OUTPUT rule is recursive ;) ) ,
Change the DROP/REJECT policy as you want.
iptables -F
iptables -Z
iptables -X
iptables --policy INPUT DROP
iptables --policy FORWARD DROP
iptables --policy OUTPUT ACCEPT
iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables --append INPUT --match state --state ESTABLISHED,RELATED --jump
ACCEPT
iptables --append INPUT --jump REJECT
iptables --append FORWARD --jump REJECT
J
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
_______________________________________________
cdesktopenv-devel mailing list
cdesktopenv-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel