[BACK]Return to netstart CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/netstart between version 1.16 and 1.17

version 1.16, 1997/04/07 22:18:05 version 1.17, 1997/04/09 03:00:05
Line 20 
Line 20 
 kerberos_server=NO  kerberos_server=NO
 amd=NO  amd=NO
 ipfilter=NO  ipfilter=NO
   nat=NO
 portmap=YES                     # almost always needed  portmap=YES                     # almost always needed
 inetd=YES                       # almost always needed  inetd=YES                       # almost always needed
 lpd=NO                          # printing daemons  lpd=NO                          # printing daemons
Line 30 
Line 31 
 amd_dir=/amd                    # AMD's mount directory  amd_dir=/amd                    # AMD's mount directory
 amd_master=/etc/amd/master      # AMD 'master' map  amd_master=/etc/amd/master      # AMD 'master' map
 ipfilter_rules=/etc/ipf.rules   # Rules for IP packet filtering  ipfilter_rules=/etc/ipf.rules   # Rules for IP packet filtering
   nat_rules=/etc/nat.rules        # Rules for Network Address Translation
 ipmon_flags=-s                  # To disable logging, use ipmon_flags=NO  ipmon_flags=-s                  # To disable logging, use ipmon_flags=NO
 rfc1323=YES                     # TCP RFC1323 extensions (disable if tcp is slow)  rfc1323=YES                     # TCP RFC1323 extensions (disable if tcp is slow)
   
Line 51 
Line 53 
 else  else
         ipfilter=NO          ipfilter=NO
 fi  fi
   
   # Configure NAT before configuring network interfaces
   #
   if [ X"${nat}" = X"YES" -a -f "${nat_rules}" ]; then
           echo 'configuring NAT'
           ipnat -CF -f ${nat_rules}
   else
           nat=NO
   fi
   
   
 # configure all of the interfaces which we know about.  # configure all of the interfaces which we know about.
 # do this by reading /etc/hostname.* files, where * is the name  # do this by reading /etc/hostname.* files, where * is the name

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17