Changeset 568 for lvs/debian/config
- Timestamp:
- Jan 4, 2008, 10:40:37 PM (17 years ago)
- 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 29 ident 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 1 40 # Make it easy to remotely query these LVS servers 2 41 # Joe Presbrey <presbrey@mit.edu> -
lvs/debian/config/etc/modules
r210 r568 1 1 # /etc/modules: kernel modules to load at boot time. 2 2 # 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. 6 5 7 ide-cd 8 ide-detect 9 ide-disk 10 psmouse 6 loop 11 7 ip_vs_dh 12 8 ip_vs_ftp -
lvs/debian/config/etc/ntp.conf
r559 r568 1 1 # /etc/ntp.conf, configuration for ntpd 2 3 # ntpd will use syslog() if logfile is not defined4 #logfile /var/log/ntpd5 2 6 3 driftfile /var/lib/ntp/ntp.drift … … 16 13 server time.mit.edu 17 14 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. 19 16 # Your server will pick a different set every time it starts up. 20 17 # *** 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 31 23 32 24 # By default, exchange time with everybody, but don't allow configuration. 33 25 # See /usr/share/doc/ntp-doc/html/accopt.html for details. 34 restrict default kod notrap nomodify nopeer noquery 26 restrict -4 default kod notrap nomodify nopeer noquery 27 restrict -6 default kod notrap nomodify nopeer noquery 35 28 36 29 # Local users may interrogate the ntp server more closely. 37 restrict 127.0.0.1 nomodify 30 restrict 127.0.0.1 31 restrict ::1 38 32 39 33 # Clients from this (example!) subnet have unlimited access, … … 50 44 #disable auth 51 45 #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 23 net.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.