Changeset 568 for lvs/debian/config/etc


Ignore:
Timestamp:
Jan 4, 2008, 10:40:37 PM (16 years ago)
Author:
andersk
Message:
Update configuration files for etch.
Location:
lvs/debian/config/etc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • lvs/debian/config/etc/inetd.conf

    r215 r568  
     1# /etc/inetd.conf:  see inetd(8) for further informations.
     2#
     3# Internet superserver configuration database
     4#
     5#
     6# Lines starting with "#:LABEL:" or "#<off>#" should not
     7# be changed unless you know what you are doing!
     8#
     9# If you want to disable an entry so it isn't touched during
     10# package updates just comment it out with a single '#' character.
     11#
     12# Packages should modify this file by using update-inetd(8)
     13#
     14# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
     15#
     16#:INTERNAL: Internal services
     17#discard                stream  tcp     nowait  root    internal
     18#discard                dgram   udp     wait    root    internal
     19#daytime                stream  tcp     nowait  root    internal
     20#time           stream  tcp     nowait  root    internal
     21
     22#:STANDARD: These are standard services.
     23
     24#:BSD: Shell, login, exec and talk are BSD protocols.
     25
     26#:MAIL: Mail, news and uucp services.
     27
     28#:INFO: Info services
     29ident           stream  tcp     wait    identd  /usr/sbin/identd        identd
     30
     31#:BOOT: TFTP service is provided primarily for booting.  Most sites
     32#       run this only on machines acting as "boot servers."
     33
     34#:RPC: RPC based services
     35
     36#:HAM-RADIO: amateur-radio services
     37
     38#:OTHER: Other services
     39
    140# Make it easy to remotely query these LVS servers
    241# Joe Presbrey <presbrey@mit.edu>
  • lvs/debian/config/etc/modules

    r210 r568  
    11# /etc/modules: kernel modules to load at boot time.
    22#
    3 # This file should contain the names of kernel modules that are
    4 # to be loaded at boot time, one per line.  Comments begin with
    5 # a "#", and everything on the line after them are ignored.
     3# This file contains the names of kernel modules that should be loaded
     4# at boot time, one per line. Lines beginning with "#" are ignored.
    65
    7 ide-cd
    8 ide-detect
    9 ide-disk
    10 psmouse
     6loop
    117ip_vs_dh
    128ip_vs_ftp
  • lvs/debian/config/etc/ntp.conf

    r559 r568  
    11# /etc/ntp.conf, configuration for ntpd
    2 
    3 # ntpd will use syslog() if logfile is not defined
    4 #logfile /var/log/ntpd
    52
    63driftfile /var/lib/ntp/ntp.drift
     
    1613server time.mit.edu
    1714
    18 # pool.ntp.org maps to more than 100 low-stratum NTP servers.
     15# pool.ntp.org maps to more than 300 low-stratum NTP servers.
    1916# Your server will pick a different set every time it starts up.
    2017#  *** Please consider joining the pool! ***
    21 #  ***  <http://www.pool.ntp.org/#join>  ***
    22 #server pool.ntp.org
    23 #server pool.ntp.org
    24 ## uncomment for extra reliability
    25 
    26 # ... and use the local system clock as a reference if all else fails
    27 # NOTE: in a local network, set the local stratum of *one* stable server
    28 # to 10; otherwise your clocks will drift apart if you lose connectivity.
    29 server 127.127.1.0
    30 fudge 127.127.1.0 stratum 13
     18#  *** <http://www.pool.ntp.org/join.html> ***
     19#server 0.debian.pool.ntp.org iburst
     20#server 1.debian.pool.ntp.org iburst
     21#server 2.debian.pool.ntp.org iburst
     22#server 3.debian.pool.ntp.org iburst
    3123
    3224# By default, exchange time with everybody, but don't allow configuration.
    3325# See /usr/share/doc/ntp-doc/html/accopt.html for details.
    34 restrict default kod notrap nomodify nopeer noquery
     26restrict -4 default kod notrap nomodify nopeer noquery
     27restrict -6 default kod notrap nomodify nopeer noquery
    3528
    3629# Local users may interrogate the ntp server more closely.
    37 restrict 127.0.0.1 nomodify
     30restrict 127.0.0.1
     31restrict ::1
    3832
    3933# Clients from this (example!) subnet have unlimited access,
     
    5044#disable auth
    5145#broadcastclient
    52 
  • lvs/debian/config/etc/sysctl.conf

    r210 r568  
    1 net.ipv4.ip_forward = 1
     1#
     2# /etc/sysctl.conf - Configuration file for setting system variables
     3# See sysctl.conf (5) for information.
     4#
     5
     6#kernel.domainname = example.com
     7#net/ipv4/icmp_echo_ignore_broadcasts=1
     8
     9# Uncomment the following to stop low-level messages on console
     10#kernel.printk = 4 4 1 7
     11
     12##############################################################3
     13# Functions previously found in netbase
     14#
     15
     16# Uncomment the next line to enable Spoof protection (reverse-path filter)
     17#net.ipv4.conf.default.rp_filter=1
     18
     19# Uncomment the next line to enable TCP/IP SYN cookies
     20#net.ipv4.tcp_syncookies=1
     21
     22# Uncomment the next line to enable packet forwarding for IPv4
     23net.ipv4.conf.default.forwarding=1
     24
     25# Uncomment the next line to enable packet forwarding for IPv6
     26#net.ipv6.conf.default.forwarding=1
Note: See TracChangeset for help on using the changeset viewer.