[LON-CAPA-cvs] cvs: doc /install/redhat7.3 install.pl

matthew lon-capa-cvs@mail.lon-capa.org
Tue, 07 Jan 2003 20:48:53 -0000


matthew		Tue Jan  7 15:48:53 2003 EDT

  Modified files:              
    /doc/install/redhat7.3	install.pl 
  Log:
  Uncommented code to turn off ipchains and iptables.  Will soon modify
  existing firewalls to include 5663 and 8080.
  
  
Index: doc/install/redhat7.3/install.pl
diff -u doc/install/redhat7.3/install.pl:1.16 doc/install/redhat7.3/install.pl:1.17
--- doc/install/redhat7.3/install.pl:1.16	Tue Jan  7 15:46:19 2003
+++ doc/install/redhat7.3/install.pl	Tue Jan  7 15:48:53 2003
@@ -2,7 +2,7 @@
 # The LearningOnline Network 
 # Red Hat 7.3 installation script
 #
-# $Id: install.pl,v 1.16 2003/01/07 20:46:19 matthew Exp $
+# $Id: install.pl,v 1.17 2003/01/07 20:48:53 matthew Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -412,16 +412,17 @@
 print_and_log("\n");
 
 ##
-## Modify the firewall, if it exists
+## Remove the firewall.
 ##
-#system("chkconfig ipchains off");
-#system("/etc/init.d/ipchains stop");
-#system("chkconfig iptables on");
-#system("/etc/init.d/iptables start");
-
-#"-A input -s 0/0 -d 0/0 8080 -p tcp -y -j ACCEPT",
-#"-A input -s 0/0 -d 0/0 5663 -p tcp -y -j ACCEPT"
-
+system("chkconfig ipchains off");
+system("/etc/init.d/ipchains stop");
+system("chkconfig iptables on");
+system("/etc/init.d/iptables start");
+
+# Someday we will add these to /etc/sysconfig/ipchains.
+#  "-A input -s 0/0 -d 0/0 8080 -p tcp -y -j ACCEPT",
+#  "-A input -s 0/0 -d 0/0 5663 -p tcp -y -j ACCEPT"
+# Someday we will deal with iptables, too.  Soon.
 
 ##
 ## Set up httpd