Git init 2.0alpha master 2.0_alpha
authorKibum Kim <kb0929.kim@samsung.com>
Fri, 6 Jan 2012 15:50:18 +0000 (00:50 +0900)
committerKibum Kim <kb0929.kim@samsung.com>
Fri, 6 Jan 2012 15:50:18 +0000 (00:50 +0900)
57 files changed:
DebianNet.3pm [new file with mode: 0644]
DebianNet.pm [new file with mode: 0644]
debian/README.Debian [new file with mode: 0644]
debian/changelog [new file with mode: 0644]
debian/changelog-old [new file with mode: 0644]
debian/changelog-older [new file with mode: 0644]
debian/changelog.old [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/config [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/copyright [new file with mode: 0644]
debian/dirs [new file with mode: 0644]
debian/netbase.config [new file with mode: 0644]
debian/netbase.init [new file with mode: 0644]
debian/netbase.postinst [new file with mode: 0644]
debian/netbase.postrm [new file with mode: 0644]
debian/netbase.preinst [new file with mode: 0644]
debian/netbase.templates [new file with mode: 0644]
debian/networking.init.d [new file with mode: 0644]
debian/po/POTFILES.in [new file with mode: 0644]
debian/po/ca.po [new file with mode: 0644]
debian/po/cs.po [new file with mode: 0644]
debian/po/da.po [new file with mode: 0644]
debian/po/de.po [new file with mode: 0644]
debian/po/el.po [new file with mode: 0644]
debian/po/es.po [new file with mode: 0644]
debian/po/fr.po [new file with mode: 0644]
debian/po/it.po [new file with mode: 0644]
debian/po/ja.po [new file with mode: 0644]
debian/po/nl.po [new file with mode: 0644]
debian/po/pl.po [new file with mode: 0644]
debian/po/pt_BR.po [new file with mode: 0644]
debian/po/ru.po [new file with mode: 0644]
debian/po/templates.pot [new file with mode: 0644]
debian/po/tr.po [new file with mode: 0644]
debian/po/uk.po [new file with mode: 0644]
debian/po/vi.po [new file with mode: 0644]
debian/po/zh_CN.po [new file with mode: 0644]
debian/postinst [new file with mode: 0644]
debian/postrm [new file with mode: 0644]
debian/preinst [new file with mode: 0644]
debian/rules [new file with mode: 0755]
debian/suid [new file with mode: 0644]
debian/templates [new file with mode: 0644]
debian/templates.de [new file with mode: 0644]
debian/templates.de.old [new file with mode: 0644]
debian/templates.it [new file with mode: 0644]
debian/templates.nl [new file with mode: 0644]
debian/templates.ru [new file with mode: 0644]
etc-gateways [new file with mode: 0644]
etc-hosts [new file with mode: 0644]
etc-protocols [new file with mode: 0644]
etc-rpc [new file with mode: 0644]
etc-services [new file with mode: 0644]
resolv+.8 [new file with mode: 0644]
update-inetd [new file with mode: 0644]
update-inetd.8 [new file with mode: 0644]

diff --git a/DebianNet.3pm b/DebianNet.3pm
new file mode 100644 (file)
index 0000000..908a0a8
--- /dev/null
@@ -0,0 +1,111 @@
+.\" Copyright 1995 Peter Tobias <tobias@et-inf.fho-emden.de>
+.\" May be distributed under the GNU General Public License
+.TH DebianNet 3pm "21 September 1995" "Linux" "Linux Programmer's Manual"
+.SH NAME
+DebianNet.pm \- create, remove, enable or disable entry
+in /etc/inetd.conf
+
+.SH SYNOPSIS
+.B require DebianNet;
+
+.B DebianNet::add_service($newentry, $group);
+
+.B DebianNet::remove_service($entry);
+
+.B DebianNet::enable_service($service, $pattern);
+
+.B DebianNet::disable_service($service, $pattern);
+
+
+.SH DESCRIPTION
+You can use the functions in
+.B DebianNet.pm
+to to add, remove, enable or disable entries in the
+.IR /etc/inetd.conf
+file. After the
+.IR /etc/inetd.conf
+file has been changed, a SIGHUP signal will be sent to the
+inetd process to make sure that inetd will use the new
+.IR /etc/inetd.conf
+file. The functions can also be used to add entries that
+are commented out by default. They will be treated like
+normal entries. That also means that if you already have
+an entry that is commented out you can't add an entry for
+the same service without removing the old one first.
+
+The DebianNet functions treat entries that are commented out
+by a single '#' character as entries that have been commented
+out by a user. It won't change such entries.
+
+ For shell scripts you can also use the
+.B update\-inetd
+command. See
+.BR update\-inetd (8)
+for further information.
+
+.SH VARIABLES
+.TP
+.I $DebianNet::inetdcf = \*(rqFILENAME";
+Use FILENAME instead of
+.IR /etc/inetd.conf
+(e.g. for testing purposes).
+
+.TP
+.I $DebianNet::sep = \*(rq#<off>#\ \*(rq;
+\*(rq#<off>#\ \*(rq will be used as the default comment characters.
+You can use this option to specify different comment characters.
+This is only necessary if you have to deal with two (or more)
+services of the same name.
+
+.TP
+.I $DebianNet::multi = \*(rqtrue";
+If you want to disable/remove more than one entry at a time
+you should use this option. If you try to remove more than one
+entry at a time without using this option the program will show
+a warning and asks the user if he want to continue.
+
+.TP
+.I $DebianNet::verbose = \*(rqtrue";
+Explain what is being done.
+
+.SH FUNCTIONS
+.TP
+.I DebianNet::add_service($newentry, $group);
+Add $newentry to the group $group of the
+.IR /etc/inetd.conf
+file. If the entry already exist it will be enabled (it will also
+detect entries with different program options). Using $group
+is optional (the default group is the group OTHER).  If the group
+does not exist the entry will be placed at the end of the file.
+
+.TP
+.I DebianNet::remove_service($entry);
+Remove $entry from
+.IR /etc/inetd.conf
+\&. You can use a regular expression to remove the entry.
+
+.TP
+.I DebianNet::enable_service($service, $pattern);
+Enable $service (e.g. \*(rqftp") in
+.IR /etc/inetd.conf
+\&. Using $pattern is optional. It can be used to select a service.
+You only need this option if you have two (or more) services of
+the same name. An example: you have three ftp entries in the
+.IR /etc/inetd.conf
+file (all disabled by default) and you want to enable the entry
+which uses the wu-ftpd daemon. To do this, use
+the pattern \*(rqwu-ftpd" (or any other regular expression that
+matches this entry).
+
+.TP
+.I DebianNet::disable_service($service, $pattern);
+Disable SERVICE (e.g. \*(rqftp") in
+.IR /etc/inetd.conf
+\&. Using $pattern is optional (see above).
+
+
+.SH AUTHORS
+Peter Tobias, <tobias@et\-inf.fho\-emden.de>
+.br
+Ian Jackson <iwj10@cus.cam.ac.uk>
+
diff --git a/DebianNet.pm b/DebianNet.pm
new file mode 100644 (file)
index 0000000..fc3b222
--- /dev/null
@@ -0,0 +1,247 @@
+# DebianNet.pm: a perl module to add entries to the /etc/inetd.conf file
+#
+# Copyright (C) 1995, 1996 Peter Tobias <tobias@et-inf.fho-emden.de>
+#                          Ian Jackson <iwj10@cus.cam.ac.uk>
+#
+#
+# DebianNet::add_service($newentry, $group);
+# DebianNet::disable_service($service, $pattern);
+# DebianNet::enable_service($service, $pattern);
+# DebianNet::remove_service($entry);
+#
+
+package DebianNet;
+
+require 5.000;
+
+$inetdcf="/etc/inetd.conf";
+$sep = "#<off># ";
+$version = "1.11";
+
+sub add_service {
+    local($newentry, $group) = @_;
+    local($service, $searchentry, @inetd, $inetdconf, $found, $success);
+    unless (defined($newentry)) { return(-1) };
+    chomp($newentry); chomp($group);
+    $group = "OTHER" unless (defined($group));
+    $group =~ tr/a-z/A-Z/;
+    $newentry =~ s/\\t/\t/g;
+    ($service = $newentry) =~ s/(\W*\w+)\s+.*/$1/;
+    ($sservice = $service) =~ s/^#([A-Za-z].*)/$1/;
+    ($searchentry = $newentry) =~ s/^$sep//;
+    $searchentry =~ s/^#([A-Za-z].*)/$1/;
+
+    # strip parameter from entry (e.g. -s /tftpboot)
+    # example:          service dgram udp     wait    root    /tcpd /prg   -s /tftpboot";
+    $searchentry =~ s/^(\w\S+\W+\w+\W+\w\S+\W+\w\S+\W+\w\S+\W+\S+\W+\S+).*/$1/;
+    $searchentry =~ s/[ \t]+/ /g;
+    $searchentry =~ s/ /\\s+/g;
+    $searchentry =~ s@\\s\+/\S+\\s\+/\S+@\\s\+\\S\+\\s\+\\S\+@g;
+
+    if (open(INETDCONF,"$inetdcf")) {
+        @inetd=<INETDCONF>;
+        close(INETDCONF);
+        if (grep(m/^$sep$sservice\s+/,@inetd)) {
+            &enable_service($sservice);
+        } else {
+            if (grep(m/^$sservice\s+/,@inetd)) {
+                if (grep(m/^$sservice\s+/,@inetd) > 1) {
+                    &inetde("There are several entries for $sservice in $inetdcf\n");
+                } elsif (!grep(m:^#?.*$searchentry.*:, @inetd)) {
+                    print"\nTrying to add the following entry:\n\n $newentry\n\n";
+                    &inetde("There is already an entry for $sservice in $inetdcf,
+but I don't recognise it.  Here is what it looks like:\n
+ ".join(' ',grep(m/^$sservice\s+/,@inetd)));
+                }
+            } elsif (grep(m/^#\s*$sservice\s+/, @inetd) >= 1 or
+              (($service =~ s/^#//) and grep(m/^$service\s+/, @inetd)>=1)) {
+                &printv("Processing service \`$service' ... not changed\n");
+            } else {
+                &printv("Processing service \`$sservice' ... added\n");
+                $inetdconf=1;
+            }
+        }
+        if ($inetdconf) {
+            open(ICWRITE, ">$inetdcf.new") || die "Error creating new $inetdcf: $!\n";
+            open(ICREAD, "$inetdcf");
+            while(<ICREAD>) {
+                chomp;
+                if (/^#:$group:/) {
+                    $found = 1;
+                };
+                if ($found and !(/[a-zA-Z#]/)) {
+                    print (ICWRITE "$newentry\n") || die "Error writing new $inetdcf: $!\n";
+                    $found = 0;
+                    $success = 1;
+                }
+                print ICWRITE "$_\n";
+            }
+            close(ICREAD);
+            unless ($success) {
+                print (ICWRITE "$newentry\n") || die "Error writing new $inetdcf: $!\n";
+            }
+            close(ICWRITE) || die "Error closing new inetd.conf: $!\n";
+
+            rename("$inetdcf.new","$inetdcf") ||
+                die "Error installing new $inetdcf: $!\n";
+            chmod(0644, "$inetdcf");
+
+            &wakeup_inetd;
+        }
+    }
+
+    sub inetde {
+        my($response);
+        do {
+            print @_,
+"\nDo you want to ignore this potential problem and continue, or would
+you rather not do so now ?  Continue?  (n/y) ";
+            $!=0; defined($response=<STDIN>) || die "netconfig: EOF/error on stdin: $!\n";
+        } while ($response !~ m/^\s*[yn]?\s*$/i);
+        return(1) if($response =~ m/y/i);
+        exit(1);
+    }
+    return(1);
+}
+
+sub remove_service {
+    my($service) = @_;
+    unless(defined($service)) { return(-1) };
+    chomp($service);
+    if($service eq "") {
+         print "DebianNet::remove_service called with empty argument\n";
+         return(-1);
+    }
+
+    if ((&scan_entries("$service") > 1) and (not defined($multi))) {
+        print "\nWARNING!!!!!! $inetdcf contains multiple entries for \n";
+        print "the \`$service' service. You're about to remove these entries.\n";
+        print "Do you want to continue? [n] ";
+        if (<STDIN> =~ /^[^y]/i) {
+            print "\nOk, I'll stop ...\n";
+            return(1);
+        } else {
+            if ($want_continue == 0) {
+                print "\nOk, I'll continue ...\n";
+            }
+        }
+    }
+
+    open(ICWRITE, ">$inetdcf.new") || die "Error creating $inetdcf.new";
+    open(ICREAD, "$inetdcf");
+    RLOOP: while(<ICREAD>) {
+        chomp;
+        unless (/^$service\b/) {
+            print ICWRITE "$_\n";
+        } else {
+            &printv("Removing line: \`$_'\n");
+        }
+    }
+    close(ICREAD);
+    close(ICWRITE);
+
+    rename("$inetdcf.new", "$inetdcf") ||
+        die "Error installing new $inetdcf: $!\n";
+    chmod(0644, "$inetdcf");
+
+    &wakeup_inetd;
+    return(1);
+}
+
+sub disable_service {
+    my($service, $pattern) = @_;
+    unless (defined($service)) { return(-1) };
+    chomp($service);
+
+    if ((&scan_entries("$service", $pattern) > 1) and (not defined($multi))) {
+        print "\nWARNING!!!!!! $inetdcf contains multiple entries for \n";
+        print "the \`$service' service. You're about to disable these entries.\n";
+        print "Do you want to continue? [n] ";
+        if (<STDIN> =~ /^[^y]/i) {
+            print "\nOk, I'll stop ...\n";
+            return(1);
+        } else {
+            if ($want_continue == 0) {
+                print "\nOk, I'll continue ...\n";
+            }
+        }
+    }
+
+    open(ICWRITE, ">$inetdcf.new") || die "Error creating new $inetdcf: $!\n";
+    open(ICREAD, "$inetdcf");
+    DLOOP: while(<ICREAD>) {
+      chomp;
+      if (/^$service\s+\w+\s+/ and /$pattern/) {
+          &printv("Processing service \`$service' ... disabled\n");
+          $_ =~ s/^(.+)$/$sep$1/;
+      }
+      print ICWRITE "$_\n";
+    }
+    close(ICREAD);
+    close(ICWRITE) || die "Error closing new inetd.conf: $!\n";
+
+    rename("$inetdcf.new","$inetdcf") ||
+        die "Error installing new $inetdcf: $!\n";
+    chmod(0644, "$inetdcf");
+
+    &wakeup_inetd;
+    return(1);
+}
+
+sub enable_service {
+    my($service, $pattern) = @_;
+    unless (defined($service)) { return(-1) };
+    chomp($service);
+    open(ICWRITE, ">$inetdcf.new") || die "Error creating new $inetdcf: $!\n";
+    open(ICREAD, "$inetdcf");
+    while(<ICREAD>) {
+      chomp;
+      if (/^$sep$service\s+\w+\s+/ and /$pattern/) {
+          &printv("Processing service \`$service' ... enabled\n");
+          $_ =~ s/^$sep//;
+      }
+      print ICWRITE "$_\n";
+    }
+    close(ICREAD);
+    close(ICWRITE) || die "Error closing new inetd.conf: $!\n";
+
+    rename("$inetdcf.new","$inetdcf") ||
+        die "Error installing new $inetdcf: $!\n";
+    chmod(0644, "$inetdcf");
+
+    &wakeup_inetd;
+    return(1);
+}
+
+sub wakeup_inetd {
+    my($pid);
+    if (open(P,"/var/run/inetd.pid")) {
+        $pid=<P>;
+        if (open(C,sprintf("/proc/%d/stat",$pid))) {
+            $_=<C>;
+            if (m/^\d+ \(inetd\)/) { kill(1,$pid); }
+            close(C);
+        }
+        close(P);
+    }
+    return(1);
+}
+
+sub scan_entries {
+    my ($service, $pattern) = @_;
+    my $counter = 0;
+
+    open(ICREAD, "$inetdcf");
+    SLOOP: while (<ICREAD>) {
+        $counter++ if (/^$service\b/ and /$pattern/);
+    }
+    close(ICREAD);
+    return($counter);
+}
+
+sub printv {
+    print @_ if (defined($verbose));
+}
+
+1;
+
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644 (file)
index 0000000..9902489
--- /dev/null
@@ -0,0 +1,22 @@
+README for netbase
+==================
+
+ * ifup(8), ifdown(8), and interfaces(5)
+
+The ifup and ifdown commands configure network interfaces as specified
+in the /etc/network/interfaces configuration file.
+
+ifup -a is called from /etc/init.d/networking as part of the bootup
+process, or for specific interfaces by the hotplug subsystem.
+
+ * /etc/network/options
+
+This file is deprecated, and if present should be replaced by values
+in /etc/sysctl.conf or equivalent custom scripts.
+The relevant sysctl values are:
+
+ip_forward=yes:          net.ipv4.ip_forward = 1 
+spoofprotect=yes: net.ipv4.conf.default.rp_filter = 1
+                  net.ipv4.conf.all.rp_filter = 1
+syncookies=yes:   net.ipv4.tcp_syncookies = 1
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..3d72c90
--- /dev/null
@@ -0,0 +1,386 @@
+netbase (1:4.24.osso9+s5) unstable; urgency=low
+
+  * Drop /etc/network/interfaces file - it's provided by ifupdown.
+
+ -- Karol Lewandowski <k.lewandowsk@samsung.com>  Fri, 21 May 2010 12:15:22 +0200
+
+netbase (1:4.24.osso9+s4) unstable; urgency=low
+
+  * Set myself as maintainer.
+
+ -- Rafal Krypa <r.krypa@samsung.com>  Tue, 20 Apr 2010 18:19:44 +0200
+
+netbase (1:4.24.osso9+s3) unstable; urgency=low
+
+  * Add /etc/hosts file for SLP platform.
+
+ -- Rafal Krypa <r.krypa@samsung.com>  Wed, 03 Feb 2010 16:27:33 +0900
+
+netbase (1:4.24.osso9+s2) unstable; urgency=low
+
+  * Don't depend on ifupdown in the initscript, supporting ifupdown
+    package provided by busybox.
+  * Include /etc/network/interfaces file for SLP platform.
+
+ -- Rafal Krypa <r.krypa@samsung.com>  Fri, 29 Jan 2010 13:30:02 +0900
+
+netbase (1:4.24.osso9+s1) unstable; urgency=low
+
+  * Add the Uploaders field to debian/control
+  * Add Provides: update-inetd to debian/control
+  * Make the LSB header in the init script compatible with the rest of Debian
+
+ -- Rafal Krypa <r.krypa@samsung.com>  Wed, 27 Jan 2010 11:57:36 +0900
+
+netbase (1:4.24.osso9) gutsy; urgency=low
+
+  * Exclude not supported by ifup/ifdown Fixes: NB#83854
+
+ -- Jarkko Oikarinen <jarkko.oikarinen@nokia.com>  Mon, 26 May 2008 12:23:55 +0300
+
+netbase (1:4.24.osso8) unstable; urgency=low
+
+  * Debianization changes. Updated debian/po/*
+
+ -- Grigori Timonen <Grigori.Timonen@nokia.com>  Tue, 04 Mar 2008 15:40:26 +0200
+
+netbase (1:4.24.osso7) unstable; urgency=low
+
+  * Fixes: NB#80714
+
+ -- Jarkko Oikarinen <jarkko.oikarinen@nokia.com>  Fri, 29 Feb 2008 08:02:03 +0300
+
+netbase (1:4.24.osso6) unstable; urgency=low
+
+  * removed gateways.5. Fixes: NB#60984
+
+ -- Yauheni Kaliuta <yauheni.kaliuta@nokia.com>  Mon, 25 Jun 2007 12:13:41 +0300
+
+netbase (1:4.24.osso5) unstable; urgency=low
+
+  * move debhelper dependence to Build-Depend from Build-Depend-Indep 
+
+ -- Yauheni Kaliuta <yauheni.kaliuta@nokia.com>  Tue, 12 Jun 2007 14:04:20 +0300
+
+netbase (1:4.24.osso4) unstable; urgency=low
+
+  * removed debian/conffiles 
+
+ -- Yauheni Kaliuta <yauheni.kaliuta@nokia.com>  Tue, 12 Jun 2007 14:00:09 +0300
+
+netbase (1:4.24.osso3) unstable; urgency=low
+
+  * debian/conffiles: removed /etc/gateways 
+
+ -- Yauheni Kaliuta <yauheni.kaliuta@nokia.com>  Tue, 12 Jun 2007 13:55:32 +0300
+
+netbase (1:4.24.osso2) unstable; urgency=low
+
+  * Changed maintainer 
+
+ -- Yauheni Kaliuta <yauheni.kaliuta@nokia.com>  Mon, 11 Jun 2007 20:35:08 +0300
+
+netbase (1:4.24.osso1) unstable; urgency=low
+
+  * Removed unneeded dependences
+  * Added epoch to fix version numeration.
+
+ -- Yauheni Kaliuta <yauheni.kaliuta@nokia.com>  Wed,  1 Mar 2006 14:08:20 +0200
+
+netbase (4.24) unstable; urgency=medium
+
+  * etc-services: added nfs (2049). (Closes: #345836)
+  * New debconf translation: sv. (Closes: #338806)
+  * Do not make the init script fail when options are missing from
+    /etc/network/options. (Closes: #335471)
+
+ -- Marco d'Itri <md@linux.it>  Tue,  3 Jan 2006 23:09:34 +0100
+
+netbase (4.23) unstable; urgency=medium
+
+  * Added the LSB data to the init script.
+  * etc-services: converted some spaces to tabs. (Closes: #331691)
+  * etc-protocols: fixed the IPSEC ESP RFC number. (Closes: #330498)
+  * Document in README.Debian which sysctl values replace
+    /etc/network/options. (Closes: #330830)
+
+ -- Marco d'Itri <md@linux.it>  Sun, 23 Oct 2005 12:47:40 +0200
+
+netbase (4.22) unstable; urgency=medium
+
+  * /etc/network/options is now deprecated and will not be created anymore
+    on new installs. (Closes: #70724, #104569, #252096, #256919, #322548)
+  * Converted the init script to lsb-base.
+  * Updated the de debconf translation. (Closes: #313953)
+  * Added the vi debconf translation. (Closes: #315810)
+
+ -- Marco d'Itri <md@linux.it>  Sat, 24 Sep 2005 18:20:29 +0200
+
+netbase (4.21) unstable; urgency=medium
+
+  * etc-rpc: renamed ypxfrd (600100069) to fypxfrd. (Closes: #280546)
+  * etc-services: added clc-build-daemon (8990/tcp), daap (3689),
+    openvpn (1194), proofd (1093), rootd (1094), iax (4569), sip (5060),
+    sip-tls (5061), bprd (13720), bpdbm (13721), bpjava-msvc (13722),
+    vnetd (13724), bpcd (13782), vopied (13783).
+    (Closes: #295044, #295827, #296260, #296517, #296956, #298676
+  * etc-services: svnserve renamed to svn. (Closes: #300649)
+  * Updated the es template translation. (Closes: #298622)
+  * Added cifs, nfs4 and ncpfs to the list of file systems in the init
+    script. (Closes: #296902)
+  * Anchored some regexps used in update-inetd. (See #296795)
+
+ -- Marco d'Itri <md@linux.it>  Mon, 21 Mar 2005 20:35:38 +0100
+
+netbase (4.20) unstable; urgency=medium
+
+  * Do not ifdown lo. (Closes: #208700)
+  * etc-services: added acr-nema (104), gpsd (2947), l2f (1701).
+    (Closes: #284527, #286389)
+  * etc-services: sane renamed to sane-port. (Closes: #284317)
+
+ -- Marco d'Itri <md@linux.it>  Thu, 27 Jan 2005 01:16:00 +0100
+
+netbase (4.19) unstable; urgency=medium
+
+  * etc-services: added rtsp (554), hkp (11371), ospfapi (2607/tcp) and
+    isisd (2608/tcp). lrrd renamed to munin.
+    (Closes: #266047, #267115, #278435, #270617)
+  * etc-rpc: added ypxfrd (600100069). (Closes: #275244)
+
+ -- Marco d'Itri <md@linux.it>  Sun, 31 Oct 2004 16:51:02 +0100
+
+netbase (4.18) unstable; urgency=high
+
+  * etc-services: added snmp (161/tcp) and snmp-trap (162/tcp).
+    (Closes: #254103)
+  * New debconf translation: cs. (Closes: #260364)
+
+ -- Marco d'Itri <md@linux.it>  Wed, 28 Jul 2004 00:46:53 +0200
+
+netbase (4.17) unstable; urgency=medium
+
+  * etc-services: added enbd-cstatd (5051/tcp), enbd-sstatd (5052/tcp),
+    nsca (5667/tcp), xinetd (9098/tcp), updated 5222 and 5269.
+    (Closes: #232936, #241404, #242642, #243559, #234279, #238647)
+  * New template translations: da uk tr el de ca.
+    (Closes: #235351, #236839, #239146, #243557, #244534, #248731)
+
+ -- Marco d'Itri <md@linux.it>  Sat, 22 May 2004 14:42:42 +0200
+
+netbase (4.16) unstable; urgency=medium
+
+  * Process /etc/network/options on reloads. (Closes: #223481)
+  * etc-protocols: added hopopt (0, commented), igp (9), eigrp (88),
+    ax.25 (93), etherip (97), l2tp (115). (Many thanks to J.H.M. Dassen)
+  * etc-services: added tacacs (49), tacacs-ds (65), loc-srv (135),
+    isakmp (500), kazaa (1214), nessus (1241), ms-sql-s (1433),
+    ms-sql-m (1434), kermit (1649), nut (3493), radmin-port (4899),
+    rplay (5555), rptp (5556), bacula-dir (9101), bacula-fd (9102),
+    bacula-sd (9103).
+    (Closes: #225540, #226512, #228554, #229064, #231182)
+  * etc-services: renamed svn to svnserve. (Closes: #226842)
+  * Cleaned up the /etc/services comments.
+  * Added zh_CN.po. (Closes: #231911)
+  * Updated po.po. (Closes: #228334)
+
+ -- Marco d'Itri <md@linux.it>  Fri, 13 Feb 2004 12:11:41 +0100
+
+netbase (4.15) unstable; urgency=medium
+
+  * etc-services: added gnutella-svc (6346), gnutella-rtr (6347).
+    (Closes: #217706)
+  * Updated ru.po. (Closes: #219229)
+  * Remove extraneous spaces from init script messages. (Closes: #219203)
+
+ -- Marco d'Itri <md@linux.it>  Mon,  1 Dec 2003 13:45:44 +0100
+
+netbase (4.14) unstable; urgency=medium
+
+  * etc-services: added unix-status (1957/tcp), log-server (1958/tcp),
+    remoteping (1959/tcp). (Closes: #203047)
+  * etc-services: added distmp3 (4600/tcp). (Closes: #213525)
+  * Added dependency on virtual package ping. (Closes: #206433)
+  * Added es.po and ja.po. (Closes: #120147, #210435)
+
+ -- Marco d'Itri <md@linux.it>  Sun, 12 Oct 2003 15:29:46 +0200
+
+netbase (4.13) unstable; urgency=medium
+
+  * Partially revert the patch from #183960 because it was applied
+    incorrectly and anyway is broken and will cause update-inetd to
+    fail as soon as it asks a question, as the default is "no".
+    There is no good fix at least with the current code and autobuilders
+    should replace update-inetd with a dummy program like they already
+    do for start-stop-daemon. (Closes: #205845)
+    This serves me right for trying to update the evil update-inetd.
+
+ -- Marco d'Itri <md@linux.it>  Sun, 17 Aug 2003 04:23:41 +0200
+
+netbase (4.12) unstable; urgency=medium
+
+  * Brown paper bag bug: fix grep command line in postinst. (Closes: #205759)
+
+ -- Marco d'Itri <md@linux.it>  Sun, 17 Aug 2003 02:13:17 +0200
+
+netbase (4.11) unstable; urgency=medium
+
+  * etc-services: added lrrd (4949/tcp). (Closes: #199395)
+  * etc-services: fixed postgresql name. (Closes: #199867)
+  * etc-services: added unix-status (1957/tcp), log-server (1958/tcp),
+    remoteping (1959/tcp). (Closes: #203047)
+  * etc-protocols: added ipcomp (108). (Closes: #204776)
+  * update-inetd: make it cooperate with debconf, patch by Robert Jordens.
+    (Closes: #183960)
+  * update-inetd: updated the message about xinetd documentation.
+    (Closes: #199184)
+  * Updated nl.po and fr.po. (Closes: #198632, #204575)
+  * IPv6 entries will be always added to /etc/hosts from now on.
+
+ -- Marco d'Itri <md@linux.it>  Sat, 16 Aug 2003 18:24:25 +0200
+
+netbase (4.10) unstable; urgency=medium
+
+  * etc-services: added spamd (783/tcp). (Closes: #193724)
+  * etc-services: added svn (3690/tcp,udp). (Closes: #185216)
+  * etc-services: added clearcase (371/tcp,udp). (Closes: #176001)
+  * etc-services: fix typos. (Closes: #174746, #175505, #175684)
+  * etc-protocols: added vrrp (112). (Closes: #187274)
+  * etc-protocols: fix typo. (Closes: #177706)
+  * Switch to po-debconf, patch by Andre Luis Lopes. (Closes: #183996)
+  * Fix typo in po.de. (Closes: #175510)
+  * Use chomp instead of chop in DebianNet.pm. (Closes: #53733)
+
+ -- Marco d'Itri <md@linux.it>  Sun, 15 Jun 2003 18:54:51 +0200
+
+netbase (4.09) unstable; urgency=low
+
+  * etc-services: added microsoft-ds (445/tcp,udp) (Closes: #166566).
+  * etc-services: added distcc (3632/tcp,udp) (Closes: #170014).
+  * Use unbuffered I/O in update-inetd (Closes: #166853).
+
+ -- Marco d'Itri <md@linux.it>  Sun, 22 Dec 2002 13:31:54 +0100
+
+netbase (4.08) unstable; urgency=low
+
+  * NMU.
+  * Fixed spoofalert option name in resolv+(8). (Closes: #41349)
+  * Delete /etc/cron.daily/netbase when upgrading. (Closes: #78334)
+  * Put a band aid in update-inetd to make it work with debconf.
+    (Closes: #90676, #143393)
+  * Changed the style of /etc/init.d/networking messages to conform to
+    policy. (Closes: #121941)
+  * Set the $PATH in /etc/init.d/networking. (Closes: #131213)
+  * Check for netware and CODA shares in /etc/init.d/networking.
+    (Closes: #122319)
+  * Remove support for 2.0.x kernels from /etc/init.d/networking and
+    the related debconf templates. (Closes: #118110)
+  * Do not create unneeded direcories. (Closes: #122478)
+  * Advertise ifupdown documentation with debconf. (Closes: #63322)
+  * Fixed typo in debconf template. (Closes: #120147)
+  * Added pt_BR debconf template. (Closes: #123001)
+  * /etc/gateways and gateways(5) moved to the routed package. (Closes: #75200)
+  * resolv+(8) moved to the manpages package.
+  * Updated /etc/services, /etc/rpc and /etc/protocols.
+    (Closes: #61905, #85292, #99482, #113512, #145560)
+  * etc-rpc: added ypxfrd (100069). (Closes: #120255)
+  * etc-protocols: added alias CPHB. (Closes: #152300)
+  * etc-services: removed lmtp (2003/tcp). (Closes: #120358)
+  * etc-services: added zope (9673/tcp) and zope-ftp (8021/tcp).
+    (Closes: #121413)
+  * etc-services: added krb5_prop and hprop aliases. (Closes: #121673)
+  * etc-services: mentioned IMAPv4 too. (Closes: #122867)
+  * etc-services: added submission (587/tcp,udp). (Closes: #130300)
+  * etc-services: added iprop (2121/tcp). (Closes: #139845)
+  * etc-services: added frox (2121/tcp). (Closes: #140871)
+  * etc-services: added silc (706/tcp,udp). (Closes: #142712)
+  * etc-services: fixed spelling of X Window System. (Closes: #142927)
+  * etc-services: removed ircd-dalnet (7000/tcp,udp). (Closes: #145982)
+  * etc-services: fixed spelling of PostgreSQL. (Closes: #149363)
+  * etc-services: added sgi-cmsd (17001/udp), sgi-crsd (17002/udp),
+    sgi-gcd (17003/udp) and sgi-cad (17004/tcp). (Closes: #144591)
+  * etc-services: added wipld (1300/tcp) (Closes: #144626).
+  * etc-services: added jabber-client (5222/tcp,udp) and
+    jabber-server (5269/tcp). (Closes: #146925)
+  * etc-services: added pawserv (345/tcp,udp), zserv (346/tcp,udp) and
+    fatserv (347/tcp,udp). (Closes: #159426)
+
+ -- Marco d'Itri <md@linux.it>  Mon, 23 Sep 2002 14:31:54 +0200
+
+netbase (4.07) unstable; urgency=low
+
+  * Add debconf dependency. Make debconf unconditional in postinst.
+  * Change Build-Depends: to Build-Depends-Indep: since netbase is arch: all.
+  * Bump Standards-Version.
+
+  * Fix quoting of backslashes and apostrophes in update-inetd manpage.
+    (Closes: Bug#75792)
+
+  * Fix templates files to be "templates.ll" not "templates-ll" so
+    they actually get used. Got rid of templates.old.
+  * Add Russian, German templates files. Old German translation renamed to
+    .old, just in case. (Closes: Bug#114842, Bug#114571)
+
+  * Remove empty directory /usr/lib/perl5/Debian; move DebianNet.pm from
+    /usr/lib/perl5 to /usr/share/perl5. (Closes: Bug#118425)
+
+  * etc-services: Added dircproxy (57000/tcp). (Closes: Bug#78045)
+  * etc-services: Added imsp (406/tcp,udp), sieve (2000/tcp) and lmtp (alias
+    for 2003/tcp). (Closes: Bug#78522)
+  * etc-services: Added telnets (992/tcp,udp), ftps (990/tcp) and
+    ftps-data (989/tcp). (Closes: Bug#79860)
+  * etc-services: Added predict (1210/udp). (Closes: Bug#81460)
+  * etc-services: Added smsqp (11021/tcp,udp). (Closes: Bug#81504)
+  * etc-services: Added mon (2583/tcp,udp). (Closes: Bug#82745)
+  * etc-services: Added pwdgen (129/tcp,udp). (Closes: Bug#90412)
+  * etc-services: Added xpilot (15345/tcp,udp). (Closes: Bug#94436)
+  * etc-services: Added tinc (655/tcp,udp). (Closes: Bug#100189)
+  * etc-services: Changed radacct (1813/tcp,udp) to radius-acct, radacct
+    remains as alias. (Closes: Bug#103131)
+
+  * etc-rpc: Added sgi_fam 391002. (Closes: Bug#105716)
+
+ -- Anthony Towns <aj@azure.humbug.org.au>  Sun, 18 Nov 2001 23:50:35 +1000
+
+netbase (4.06) unstable; urgency=low
+
+  * init.d/networking: Fix ipchains based spoof protection to do IP
+    addresses other than just 127.0.0.1 properly. Thanks to Chris Osicki
+    for spotting this.
+
+  * etc-services: Remove doubled swat entry. (Closes: Bug#93122)
+  * debian/rules: Add automatic check for doubled entries. Thanks to someone
+    who didn't leave a name, but did file bug 93122. :)
+
+  * etc-services: Add smtps as an alias for ssmtp. (Closes: Bug#72713)
+  * etc-services: Add xtell service (4224/tcp). (Closes: Bug#76161)
+  * etc-services: Correct hostmon udp comment. (Closes: Bug#76696)
+
+  * debian/control: Add conflicts on old nfs-common as well to help
+    ensure portmap gets installed where necessary. (Closes: Bug#98907)
+
+  * debian/config: Drop priority of pre-2.2 spoof protection question to low.
+    (Closes: Bug#82646)
+  * debian/templates: Split into separate templates for each translation.
+    What a nifty feature.
+  * debian/templates.nl: Added Dutch translations, thanks to Ivo Timmermans.
+    (Closes: Bug#93496)
+  * debian/templates.de: Added German translations, thanks to Marc Haber.
+    (Closes: Bug#89499)
+
+ -- Anthony Towns <aj@azure.humbug.org.au>  Fri,  1 Jun 2001 13:30:14 +1000
+
+netbase (4.05) unstable; urgency=low
+
+  * Remove dependency on portmap; change it to suggests. Add conflicts on
+    some packages that used to depend on netbase for portmap. (Closes:
+    Bug#69194)
+
+ -- Anthony Towns <ajt@debian.org>  Mon, 18 Sep 2000 13:10:52 -0700
+
+netbase (4.04) unstable; urgency=low
+
+  * config: Remove reference to inetd-dos-services which is more of an
+    inetd thing.
+
+ -- Anthony Towns <ajt@debian.org>  Thu, 31 Aug 2000 15:45:44 +1000
diff --git a/debian/changelog-old b/debian/changelog-old
new file mode 100644 (file)
index 0000000..8292e1f
--- /dev/null
@@ -0,0 +1,422 @@
+Sun Sep  1 11:18:41 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.06 released
+
+       * /etc/services: added fsp entry
+
+       * net-tools: fixed route manual page
+
+
+Thu Aug  1 00:22:08 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.05 released
+
+       * net-tools: fixed typo in arp man page
+
+       * net-tools: fixed typo in netstat man page
+
+       * net-tools: added a patch for tulip cards to ifconfig (patch from
+                    Miquel van Smoorenburg <miquels@Q.cistron.nl>)
+
+       * ipfwadm-2.1: replaced by ipfwadm-2.3
+
+
+Thu Jun 13 00:43:16 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.04 released
+
+       * added /etc/cron.daily/netbase (creates a backup of /etc/inetd.conf)
+
+       * added a comment about update-inetd to /etc/inetd.conf (only
+         new installations!) (Bug#2981)
+
+       * /etc/services: added xtel (french minitel) entry
+
+       * update-inetd: fixed a typo
+
+       * net-tools-1.3.50-BETA6f: replaced by net-tools-1.32-alpha
+
+       * ipfwadm-2.0beta2: replaced by ipfwadm-2.1
+
+
+Mon May  6 21:54:12 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.03 released
+
+       * /etc/services: disabled inetd echo/chargen services (see CERT
+                        advisory CA-96.01)
+
+       * /etc/services: enabled syslog service
+
+       * /etc/services: added SSH entries
+
+       * net-tools-1.3.50-BETA6f: netstat: fixed wrong error message
+
+       * tcp_wrappers_7.3: replaced by tcp_wrappers_7.4
+
+
+Sun Apr 14 10:51:31 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.02 released
+
+       * /etc/protocols: added ddp protocol
+
+       * /etc/services: added rtmp/ddp, nbp/ddp, echo/ddp and
+                        zip/ddp services (Bug#2681)
+
+       * added "CONFLICTS: netstd (<<2.00)" to the control file (Bug#2675)
+
+
+Thu Apr  4 10:35:57 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.01 released
+
+       * /etc/services: added re-mail-ck entry (see RFC1339, RFC1700)
+
+
+Mon Mar 18 21:48:47 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.00 released
+
+       * DebianNet.pm: small performance enhancements (it should
+                       be >100 times faster now) (Bug#2523)
+
+       * ipfwadm-1.2: replaced by ipfwadm-2.0beta2
+
+       * net-tools: fixed slattach man page (Bug#2485)
+
+       * net-tools-1.2.0: don't install arp, rarp, route, ifconfig, netstat
+
+       * net-tools-1.2.0: disabled NLS
+
+       * added net-tools-1.3.50-BETA6f (Bug#2400)
+
+       * net-tools-1.3.50-BETA6f: disabled NLS, enabled netgroups support
+
+       * net-tools-1.3.50-BETA6f: don't install ipfw (it doesn't work
+                                  with recent kernels). Use ipfwadm instead.
+
+       * tcp_wrappers_7.2: replaced by tcp_wrappers_7.3
+
+
+Sun Feb  4 22:42:34 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.26 released
+
+       * inetd: set SIG_DFL for child processes (if you use netbase 1.25
+                please update!!)
+
+       * /etc/services: added kerberos entries (from Mark W. Eichin
+                        <eichin@cygnus.com>)
+
+
+Wed Jan 31 20:04:52 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.25 released
+
+       * inetd: ignore SIGPIPE (sudden death). Patch from Stephen R.
+                van den Berg <srb@cuci.nl>
+
+
+Wed Jan 24 21:49:20 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.24 released
+
+       * inetd-8.4: changed back to the stable inetd-5.30
+
+
+Tue Jan 23 09:19:46 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.23 released
+
+       * /etc/services: added an entry for ftp-data
+
+       * inetd-5.30: replaced by inetd-8.4
+                     (NOTE: The syntax of the inetd.conf file has
+                     changed! If you use the ".group" extension
+                     for the user name or the ".max" extension of
+                     the wait/nowait entry please look at the
+                     inetd/inetd.conf manpages.)
+
+       * DebianNet.pm: it will print the new and the old entry if
+                       an error occurs (this makes it easier to fix
+                       inetd.conf entries by hand)
+
+       * DebianNet.pm: the "Continue" prompt will work now
+
+       * DebianNet.pm: ignore parameter of the inetd.conf entry when
+                       searching for existing entries (Bug#2189)
+
+
+Thu Nov 30 14:37:11 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.22 released
+
+       * /etc/services: added an entry for Gracilis Packeten remote
+                        config server
+
+       * Makefiles: removed -m486 from CFLAGS (no Makefile changes
+                    for 68k, Sparc or Alpha systems)
+
+       * net-tools: fixed a bug/typo in route.c (patch from
+                    Hartmut Koptein <koptein@et-inf.fho-emden.de>)
+
+       * net-tools: added national language support (French).
+                    To use the NLS just add "export LANG=fr_FR.88591"
+                    to your .profile, .bash_profile or .login file.
+
+
+Wed Nov 15 12:07:00 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.21 released
+
+       * /etc/services: added an entry for mandelspawn
+
+
+Wed Oct 25 00:05:24 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.20 released
+
+       * ping: -l option disabled for non-root users (Bug#1755)
+
+       * /etc/services: disabled syslog service (Bug#1739)
+
+
+Sun Oct 22 13:09:22 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+        * Version 1.19 released
+
+        * ping: drop root privileges after creating the socket
+
+        * ping: added support for broadcast pings
+
+        * /etc/inetd.conf will now be created during the preinst
+          procedure.
+
+
+Tue Oct 10 22:49:36 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.18 released
+
+       * DebianNet.pm: fixed a problem with entries that use "##" as
+                       a separator.
+
+       * added /etc/protocols and /etc/services to the netbase package
+
+       * /etc/init.d/netbase: added "reload" keyword (inetd will
+                              reread the /etc/inetd.conf file). NOTE:
+                              the keyword may change in the future.
+
+
+Sun Sep 24 19:28:15 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.17 released
+
+       * DebianNet.pm: fixed a minor problem with entries which are
+                       disabled by default (Bug#1476)
+
+
+Fri Sep 22 01:09:49 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.16 released
+
+       * added amd entry to /etc/rpc
+
+       * DebianNet.pm: minor cleanups
+
+       * update-inetd: minor cleanups
+
+       * DebianNet.pm: added manual page for DebianNet.pm
+
+       * update-inetd: added manual page for update-inetd
+
+       * /etc/init.d/netbase: rpc.portmap and inetd will now be started
+                              using start-stop-daemon (Bug#1414)
+
+
+Thu Sep  7 01:36:37 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.15 released
+
+       * inetd-5.30: added a manual page for inetd.conf
+
+       * DebianNet.pm: added a new function (DebianNet::remove_service)
+                       to remove entries from /etc/inetd.conf
+
+       * DebianNet.pm: changed enable_service and disable_service. You
+                       can now use an optional pattern (in addition to
+                       the service) to select an entry.
+
+       * update-inetd: added a new mode (--remove) to remove entries
+                       from /etc/inetd.conf
+
+       * update-inetd: added a new option (--pattern). It can be used to
+                       select a service (e.g. if you have two services of
+                       the same name)
+
+       * net-tools-1.2.0: minor changes (necessary to compile it with
+                          the kernel 1.3.x includes) (Bug#1284)
+
+
+Mon Aug 21 23:02:33 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.14 released
+
+       * create /etc/inetd.conf during postinst procedure
+
+       * added /usr/sbin/update-inetd and /usr/lib/perl/DebianNet.pm
+
+
+Sat Jul 29 18:41:10 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.13 released
+
+       * net-tools-1.1.95: replaced by net-tools-1.2.0
+
+       * net-tools-1.2.0: added support for ax25 (patch from Bruce Perens)
+
+       * net-tools-1.2.0: enabled ARCnet support
+
+       * net-tools-1.2.0: slattach: added support for real ascii lock files
+
+       * tcp_wrappers_7.1: replaced by tcp_wrappers_7.2
+
+
+Mon Jul 17 22:39:31 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.12 released
+
+       * debian.control: added extended description
+
+       * net-tools-1.1.95: slattach: added support for real ascii lock files
+
+       * net-tools-1.1.95: arp: moved from /sbin to /usr/sbin (see current
+                           fsstnd draft)
+
+       * ipfwadm-1.1: replaced by ipfwadm-1.2
+
+       * portmap: added an ELF patch from J.H.M. Dassen
+
+
+Sun May 14 09:21:30 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.11 released
+
+       * net-tools-1.1.95: moved /usr/sbin/ipfw to /sbin/ipfw
+
+
+Thu Apr 27 23:48:55 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.10 released
+
+       * changed a few permissions
+
+       * net-tools-1.1.95: moved /usr/sbin/ipfw to /sbin/ipfw
+
+       * ipfwadm: added ipfwadm-1.1
+
+
+Tue Mar 21 08:04:27 MET 1995  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.09 released
+
+       * removed /etc/networks from netbase
+
+
+Wed Mar 15 21:01:41 MET 1995  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.08 released
+
+       * debian.{pre|post}{inst|rm}: added support for System V Init
+
+       * net-tools-1.1.79: replaced by net-tools-1.1.95
+
+       * net-tools-1.1.95: added support for ax25 (patch from Bruce Perens)
+
+       * net-tools-1.1.95: enabled ARCnet support
+
+       * tcp_wrapper-7.1: enabled PARANOID mode in /etc/hosts.deny
+                          (this also means that the tcp_wrapper will
+                          log hostnames instead of IP adresses).
+
+
+Tue Jan 24 17:13:46 MET 1995  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.07 released
+
+       * tcp_wrapper-6.3: replaced by tcp_wrapper-7.1
+
+       * tcp_wrapper-7.1: added a note to the hosts_access.5 man page
+                          that Linux is not affected by a well-known
+                          Unix kernel bug (with RFC 931 username lookups).
+
+       * tcp_wrapper-7.1: disabled the PARANOID mode in the makefile. You can
+                          still enable the PARANOID mode with the PARANOID
+                          access control pattern (see hosts_access.5).
+
+
+Sat Jan 14 03:15:41 MET 1995  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.06 released
+
+       * net-tools-1.1.56: replaced by net-tools-1.1.79
+
+       * net-tools-1.1.79: added support for ax25 (patch from Bruce Perens)
+
+       * net-tools-1.1.79: replaced ipfw man page with a better one
+
+       * ping-5.9: fixed a problem with short packets (smaller than 24 bytes)
+
+       * tcp_wrapper-6.3: added a note to the hosts_access.5 man page
+                          that Linux is not affected by a well-known
+                          Unix kernel bug (with RFC 931 username lookups).
+
+
+Fri Nov 18 23:10:27 MET 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.05 released
+
+       * net-tools-1.1.46: replaced by net-tools-1.1.56
+
+       * net-tools-1.1.56: added support for ax25 (patch from Bruce Perens)
+
+
+Mon Oct 31 01:12:22 MET 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.04 released
+
+       * fixed a bug in the debian.preinst script
+
+       * net-tools-1.1.46: arp: added support for proxy arp entries 
+                           with a netmask (patch from Andrew Tridgell)
+
+
+Tue Oct 25 21:49:45 MET 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.03 released
+
+       * added PACKAGE_REVISION to debian.control
+
+
+Wed Sep 21 00:24:35 MET DST 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.02 released
+
+       * added /etc/rc.misc/netbase
+
+       * net-tools-1.1.38: replaced by net-tools-1.1.46
+
+
+Tue Sep 06 09:03:52 MET DST 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.01 released
+
+       * Changed the pre and post installation scripts
+
+
+Wed Aug 24 21:33:28 MET DST 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.00 released
+
+       * portmap-5.4: replaced by the 3rd enhanced portmapper release
+                       from Wietse Venema (wietse@wzv.win.tue.nl)
diff --git a/debian/changelog-older b/debian/changelog-older
new file mode 100644 (file)
index 0000000..8292e1f
--- /dev/null
@@ -0,0 +1,422 @@
+Sun Sep  1 11:18:41 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.06 released
+
+       * /etc/services: added fsp entry
+
+       * net-tools: fixed route manual page
+
+
+Thu Aug  1 00:22:08 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.05 released
+
+       * net-tools: fixed typo in arp man page
+
+       * net-tools: fixed typo in netstat man page
+
+       * net-tools: added a patch for tulip cards to ifconfig (patch from
+                    Miquel van Smoorenburg <miquels@Q.cistron.nl>)
+
+       * ipfwadm-2.1: replaced by ipfwadm-2.3
+
+
+Thu Jun 13 00:43:16 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.04 released
+
+       * added /etc/cron.daily/netbase (creates a backup of /etc/inetd.conf)
+
+       * added a comment about update-inetd to /etc/inetd.conf (only
+         new installations!) (Bug#2981)
+
+       * /etc/services: added xtel (french minitel) entry
+
+       * update-inetd: fixed a typo
+
+       * net-tools-1.3.50-BETA6f: replaced by net-tools-1.32-alpha
+
+       * ipfwadm-2.0beta2: replaced by ipfwadm-2.1
+
+
+Mon May  6 21:54:12 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.03 released
+
+       * /etc/services: disabled inetd echo/chargen services (see CERT
+                        advisory CA-96.01)
+
+       * /etc/services: enabled syslog service
+
+       * /etc/services: added SSH entries
+
+       * net-tools-1.3.50-BETA6f: netstat: fixed wrong error message
+
+       * tcp_wrappers_7.3: replaced by tcp_wrappers_7.4
+
+
+Sun Apr 14 10:51:31 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.02 released
+
+       * /etc/protocols: added ddp protocol
+
+       * /etc/services: added rtmp/ddp, nbp/ddp, echo/ddp and
+                        zip/ddp services (Bug#2681)
+
+       * added "CONFLICTS: netstd (<<2.00)" to the control file (Bug#2675)
+
+
+Thu Apr  4 10:35:57 MET DST 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.01 released
+
+       * /etc/services: added re-mail-ck entry (see RFC1339, RFC1700)
+
+
+Mon Mar 18 21:48:47 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 2.00 released
+
+       * DebianNet.pm: small performance enhancements (it should
+                       be >100 times faster now) (Bug#2523)
+
+       * ipfwadm-1.2: replaced by ipfwadm-2.0beta2
+
+       * net-tools: fixed slattach man page (Bug#2485)
+
+       * net-tools-1.2.0: don't install arp, rarp, route, ifconfig, netstat
+
+       * net-tools-1.2.0: disabled NLS
+
+       * added net-tools-1.3.50-BETA6f (Bug#2400)
+
+       * net-tools-1.3.50-BETA6f: disabled NLS, enabled netgroups support
+
+       * net-tools-1.3.50-BETA6f: don't install ipfw (it doesn't work
+                                  with recent kernels). Use ipfwadm instead.
+
+       * tcp_wrappers_7.2: replaced by tcp_wrappers_7.3
+
+
+Sun Feb  4 22:42:34 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.26 released
+
+       * inetd: set SIG_DFL for child processes (if you use netbase 1.25
+                please update!!)
+
+       * /etc/services: added kerberos entries (from Mark W. Eichin
+                        <eichin@cygnus.com>)
+
+
+Wed Jan 31 20:04:52 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.25 released
+
+       * inetd: ignore SIGPIPE (sudden death). Patch from Stephen R.
+                van den Berg <srb@cuci.nl>
+
+
+Wed Jan 24 21:49:20 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.24 released
+
+       * inetd-8.4: changed back to the stable inetd-5.30
+
+
+Tue Jan 23 09:19:46 MET 1996  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.23 released
+
+       * /etc/services: added an entry for ftp-data
+
+       * inetd-5.30: replaced by inetd-8.4
+                     (NOTE: The syntax of the inetd.conf file has
+                     changed! If you use the ".group" extension
+                     for the user name or the ".max" extension of
+                     the wait/nowait entry please look at the
+                     inetd/inetd.conf manpages.)
+
+       * DebianNet.pm: it will print the new and the old entry if
+                       an error occurs (this makes it easier to fix
+                       inetd.conf entries by hand)
+
+       * DebianNet.pm: the "Continue" prompt will work now
+
+       * DebianNet.pm: ignore parameter of the inetd.conf entry when
+                       searching for existing entries (Bug#2189)
+
+
+Thu Nov 30 14:37:11 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.22 released
+
+       * /etc/services: added an entry for Gracilis Packeten remote
+                        config server
+
+       * Makefiles: removed -m486 from CFLAGS (no Makefile changes
+                    for 68k, Sparc or Alpha systems)
+
+       * net-tools: fixed a bug/typo in route.c (patch from
+                    Hartmut Koptein <koptein@et-inf.fho-emden.de>)
+
+       * net-tools: added national language support (French).
+                    To use the NLS just add "export LANG=fr_FR.88591"
+                    to your .profile, .bash_profile or .login file.
+
+
+Wed Nov 15 12:07:00 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.21 released
+
+       * /etc/services: added an entry for mandelspawn
+
+
+Wed Oct 25 00:05:24 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.20 released
+
+       * ping: -l option disabled for non-root users (Bug#1755)
+
+       * /etc/services: disabled syslog service (Bug#1739)
+
+
+Sun Oct 22 13:09:22 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+        * Version 1.19 released
+
+        * ping: drop root privileges after creating the socket
+
+        * ping: added support for broadcast pings
+
+        * /etc/inetd.conf will now be created during the preinst
+          procedure.
+
+
+Tue Oct 10 22:49:36 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.18 released
+
+       * DebianNet.pm: fixed a problem with entries that use "##" as
+                       a separator.
+
+       * added /etc/protocols and /etc/services to the netbase package
+
+       * /etc/init.d/netbase: added "reload" keyword (inetd will
+                              reread the /etc/inetd.conf file). NOTE:
+                              the keyword may change in the future.
+
+
+Sun Sep 24 19:28:15 MET 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.17 released
+
+       * DebianNet.pm: fixed a minor problem with entries which are
+                       disabled by default (Bug#1476)
+
+
+Fri Sep 22 01:09:49 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.16 released
+
+       * added amd entry to /etc/rpc
+
+       * DebianNet.pm: minor cleanups
+
+       * update-inetd: minor cleanups
+
+       * DebianNet.pm: added manual page for DebianNet.pm
+
+       * update-inetd: added manual page for update-inetd
+
+       * /etc/init.d/netbase: rpc.portmap and inetd will now be started
+                              using start-stop-daemon (Bug#1414)
+
+
+Thu Sep  7 01:36:37 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.15 released
+
+       * inetd-5.30: added a manual page for inetd.conf
+
+       * DebianNet.pm: added a new function (DebianNet::remove_service)
+                       to remove entries from /etc/inetd.conf
+
+       * DebianNet.pm: changed enable_service and disable_service. You
+                       can now use an optional pattern (in addition to
+                       the service) to select an entry.
+
+       * update-inetd: added a new mode (--remove) to remove entries
+                       from /etc/inetd.conf
+
+       * update-inetd: added a new option (--pattern). It can be used to
+                       select a service (e.g. if you have two services of
+                       the same name)
+
+       * net-tools-1.2.0: minor changes (necessary to compile it with
+                          the kernel 1.3.x includes) (Bug#1284)
+
+
+Mon Aug 21 23:02:33 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.14 released
+
+       * create /etc/inetd.conf during postinst procedure
+
+       * added /usr/sbin/update-inetd and /usr/lib/perl/DebianNet.pm
+
+
+Sat Jul 29 18:41:10 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.13 released
+
+       * net-tools-1.1.95: replaced by net-tools-1.2.0
+
+       * net-tools-1.2.0: added support for ax25 (patch from Bruce Perens)
+
+       * net-tools-1.2.0: enabled ARCnet support
+
+       * net-tools-1.2.0: slattach: added support for real ascii lock files
+
+       * tcp_wrappers_7.1: replaced by tcp_wrappers_7.2
+
+
+Mon Jul 17 22:39:31 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.12 released
+
+       * debian.control: added extended description
+
+       * net-tools-1.1.95: slattach: added support for real ascii lock files
+
+       * net-tools-1.1.95: arp: moved from /sbin to /usr/sbin (see current
+                           fsstnd draft)
+
+       * ipfwadm-1.1: replaced by ipfwadm-1.2
+
+       * portmap: added an ELF patch from J.H.M. Dassen
+
+
+Sun May 14 09:21:30 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.11 released
+
+       * net-tools-1.1.95: moved /usr/sbin/ipfw to /sbin/ipfw
+
+
+Thu Apr 27 23:48:55 MET DST 1995  Peter Tobias  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.10 released
+
+       * changed a few permissions
+
+       * net-tools-1.1.95: moved /usr/sbin/ipfw to /sbin/ipfw
+
+       * ipfwadm: added ipfwadm-1.1
+
+
+Tue Mar 21 08:04:27 MET 1995  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.09 released
+
+       * removed /etc/networks from netbase
+
+
+Wed Mar 15 21:01:41 MET 1995  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.08 released
+
+       * debian.{pre|post}{inst|rm}: added support for System V Init
+
+       * net-tools-1.1.79: replaced by net-tools-1.1.95
+
+       * net-tools-1.1.95: added support for ax25 (patch from Bruce Perens)
+
+       * net-tools-1.1.95: enabled ARCnet support
+
+       * tcp_wrapper-7.1: enabled PARANOID mode in /etc/hosts.deny
+                          (this also means that the tcp_wrapper will
+                          log hostnames instead of IP adresses).
+
+
+Tue Jan 24 17:13:46 MET 1995  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.07 released
+
+       * tcp_wrapper-6.3: replaced by tcp_wrapper-7.1
+
+       * tcp_wrapper-7.1: added a note to the hosts_access.5 man page
+                          that Linux is not affected by a well-known
+                          Unix kernel bug (with RFC 931 username lookups).
+
+       * tcp_wrapper-7.1: disabled the PARANOID mode in the makefile. You can
+                          still enable the PARANOID mode with the PARANOID
+                          access control pattern (see hosts_access.5).
+
+
+Sat Jan 14 03:15:41 MET 1995  <tobias@et-inf.fho-emden.de>
+
+       * Version 1.06 released
+
+       * net-tools-1.1.56: replaced by net-tools-1.1.79
+
+       * net-tools-1.1.79: added support for ax25 (patch from Bruce Perens)
+
+       * net-tools-1.1.79: replaced ipfw man page with a better one
+
+       * ping-5.9: fixed a problem with short packets (smaller than 24 bytes)
+
+       * tcp_wrapper-6.3: added a note to the hosts_access.5 man page
+                          that Linux is not affected by a well-known
+                          Unix kernel bug (with RFC 931 username lookups).
+
+
+Fri Nov 18 23:10:27 MET 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.05 released
+
+       * net-tools-1.1.46: replaced by net-tools-1.1.56
+
+       * net-tools-1.1.56: added support for ax25 (patch from Bruce Perens)
+
+
+Mon Oct 31 01:12:22 MET 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.04 released
+
+       * fixed a bug in the debian.preinst script
+
+       * net-tools-1.1.46: arp: added support for proxy arp entries 
+                           with a netmask (patch from Andrew Tridgell)
+
+
+Tue Oct 25 21:49:45 MET 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.03 released
+
+       * added PACKAGE_REVISION to debian.control
+
+
+Wed Sep 21 00:24:35 MET DST 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.02 released
+
+       * added /etc/rc.misc/netbase
+
+       * net-tools-1.1.38: replaced by net-tools-1.1.46
+
+
+Tue Sep 06 09:03:52 MET DST 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.01 released
+
+       * Changed the pre and post installation scripts
+
+
+Wed Aug 24 21:33:28 MET DST 1994  <tobias@server.et-inf.fho-emden.de>
+
+       * Version 1.00 released
+
+       * portmap-5.4: replaced by the 3rd enhanced portmapper release
+                       from Wietse Venema (wietse@wzv.win.tue.nl)
diff --git a/debian/changelog.old b/debian/changelog.old
new file mode 100644 (file)
index 0000000..6c93ff9
--- /dev/null
@@ -0,0 +1,972 @@
+netbase (4.03) unstable; urgency=low
+
+  * /etc/services: Added lotusnotes service (1352/tcp,udp). IANA name is
+    "lotusnote" for some reason. Added former as an alias to the latter.
+    (Closes: Bug#67778)
+  * /etc/services: Added x11 ports (6000-6007/tcp,udp).
+  * /etc/services: Added xtelw (1314/tcp). (Closes: Bug#66705)
+  * /etc/services: Added pcrd (5151/tcp). (Closes: Bug#61117)
+  * /etc/services: Added gds_db (3050/tcp,udp) for InterBase. (Closes:
+    Bug#60930)
+  * /etc/services: Added imap as alias to imap2. (Closes: Bug#58708)
+  * /etc/services: Added swat (901/tcp).
+  * /etc/services: Added xfstt (7101/tcp). (Closes: Bug#58457)
+
+  * debian/control: Depend on one of ipfwadm, ipchains, iptables instead of
+    both of ipfwadm and ipchains. Only suggest one of ipautofw, ipmasqadm,
+    iptables instead of depending on both of ipautofw and ipmasqadm.
+
+  * debian/templates: Added Italian translation, thanks to Eugenia Franzoni.
+    (Closes: Bug#64219)
+
+ -- Anthony Towns <ajt@debian.org>  Sun, 27 Aug 2000 16:41:52 +1000
+
+netbase (4.02) unstable; urgency=low
+
+  * Correct "smb" to "smbfs" and add a -q to grep in /etc/init.d/networking.
+    (Closes: Bug#65412, Bug#63288, Bug#65384, Bug#64360).
+  * Remove dependency on iputils-tracepath. Nothing should be relying on 
+    that anyway.
+
+ -- Anthony Towns <ajt@debian.org>  Thu, 17 Aug 2000 14:38:04 +1000
+
+netbase (4.01) unstable; urgency=low
+
+  * netkit-ping is standard, iputils-ping is optional: netkit-ping should
+    therefore be listed first in the Depends: line or apt-get doesn't
+    do the right thing.
+
+ -- Anthony Towns <ajt@debian.org>  Sat, 12 Aug 2000 20:44:08 +1000
+
+netbase (4.00) unstable; urgency=low
+
+  * The great netbase split. netbase is now Debian native.
+
+  * Split into:
+        ifupdown, ipautofw, ipchains, ipfwadm, ipmasqadm, iputils, net-tools,
+        netkit-base, portmap
+    netkit-base builds netkit-ping, netkit-inetd and netkit-rpc. iputils
+    builds iputils-ping and iputils-traceroute.
+
+  * hosts.allow and hosts.deny moved to the tcp-wrappers package.
+
+ -- Anthony Towns <ajt@debian.org>  Sun, 16 Jul 2000 12:00:52 +1000
+
+netbase (3.18-4) frozen unstable; urgency=low
+
+  * The ``I'm an idiot'' release.
+
+  * preinst: Add a `mkdir -p /etc/network' so that cat'ing to
+    /etc/network/interfaces (eg) doesn't die horribly. Makes upgrades
+    from slink die. (Closes: Bug#62958)
+
+ -- Anthony Towns <ajt@debian.org>  Tue, 25 Apr 2000 01:53:23 +1000
+
+netbase (3.18-3) frozen unstable; urgency=low
+
+  * frozen rationale: This fixes the somewhat important bug 62538, and
+    reduces the severity of the critical bug 60898 to normal. It also
+    introduces some new functionality into ifupdown, but does so in
+    a way that shouldn't affect existing functionality if the changes
+    are faulty. Various other bugs fixed too.
+
+  * /e/n/interfaces: Move sample to /usr/doc/netbase/examples, where it
+    can be looked at by new installees as well as upgraders. Make it not
+    a conffile. (Closes: Bug#62538)
+  * /e/n/interfaces: Add pre-up/post-down examples. (Closes: Bug#61266)
+  * /e/n/interfaces: If not present, autogenerate a commented out loopback
+    IPv4 definition in preinst.
+
+  * /e/n/options: Make this not a conffile, and autogenerate it from
+    preinst too.
+
+  * /etc/init.d/inetd: Die quietly if inetd isn't available.
+  * /etc/init.d/netwoking: Die quietly if ifup isn't available.
+  * /etc/init.d/networking: Correct check for / as an NFS mount.
+  * /etc/init.d/networking: Don't take networking down if there are
+    still any NFS/SMB mounts about. (Reduces Bug#60898 to normal)
+
+  * ifupdown: Add `provider' as an option for pon/poff in ppp method.
+    Thanks to Itai Zukerman for the patch. (Closes: Bug#62476)
+  * ifupdown: Make the IPX family a little tidier. Thanks to Chris
+    Pimlott for suggestions and a patch. (Closes: Bug#62644)
+  * ifupdown: Added some other options for IPv6.
+  * ifupdown: Act on all stanzas for an interface, not just the first.
+    (Closes: Bug#62628) 
+
+  * README.Debian: Added. Mentions some stuff. (Closes: Bug#61616)
+
+ -- Anthony Towns <ajt@debian.org>  Sat, 22 Apr 2000 15:58:20 +1000
+
+netbase (3.18-2) frozen unstable; urgency=low
+
+  * inetd: For internal services that fork, close everything but
+    stdout/stdin, and make those point to the ctrl socket and so on
+    (as per usual exec()), and reset `ctrl' to 0, so you can still use
+    ctrl legitimately. After this upgrade, inetd isn't vulnerable to this
+    denial of service attack. During it, it is, but that's difficult to
+    fix.
+  * init.d/inetd: Instruct start-stop-daemon to consider the inetd pidfile
+    authoritative when trying to start inetd. Both these fixes are necessary
+    for: (Closes: Bug#60770)
+
+  * init.d/networking: Fixed typo. Ooops. :) (Closes: Bug#61395)
+
+  * ifupdown: Actually *do* the early abort that all that code was there
+    for. (Closes: Bug#50064)
+  * ifupdown: Get rid of "dhclient" in the `kill' command.
+    (Closes: Bug#61269)
+
+ -- Anthony Towns <ajt@debian.org>  Wed,  5 Apr 2000 00:44:00 +1000
+
+netbase (3.18-1) frozen unstable; urgency=low
+
+  * The "What? We're in a freeze? Let's make as many changes as possible!"
+    release. (Subtitled: The "Sorry 'bout this, Richard..." release)
+
+  * netfilter: No longer included even in the .orig.tar.gz. It's actually
+    been this way since 3.17-1. (Closes: Bug#54815)
+
+  * ifupdown: New upstream release (0.5.5).
+  * ifupdown: Added pre-up/post-down commands
+  * ifupdown: Correctly kill dhclient (Closes: Bug#58734)
+  * ifupdown: dhcpcd-sv has been (kind of) merged into dhdcpcd. (Closes:
+    Bug#58924, Bug#60097)
+  * ifupdown: Document /etc/network/interfaces (thanks Joey!) and make
+    ifup(8) and ifdown(8) more informative too. (Closes: Bug#58680, Bug#60419,
+    Bug#60512)
+
+  * init.d/networking: Move rc{0,6}.d S-links to S35, giving plenty of room
+    for killing programs using NFS mounts, and umounting NFS devices and
+    so on. Needs sysvinit changes to actually be particularly useful, but
+    still. See Bug#60898. (Closes: Bug#59282, Bug#59286)
+  * init.d/networking: Check for NFS (or SMB) mounted /, and never shut
+    down of the network if present. (Closes: Bug#60374)
+
+  * /e/n/interfaces: Clarify some of the comments (Closes: Bug#58951,
+    Bug#59004)
+
+  * init.d/inetd: Check for rpc services in inetd, then check the
+    portmapper, to avoid needless pauses/errors even if localhost is down.
+    (Closes: Bug#58951)
+
+  * templates: Give more information on format spec of the "What IP
+    address/ranges?" question. (Closes: Bug#55664, Bug#49548)
+  * templates: Changed the init.d/network deprecated message to be a bit
+    less scary.
+  * config: Only display upgrade messages when *upgrading*. I have no
+    idea what I was thinking when I wrote that bit of .config.
+    (Closes: Bug#59083)
+
+  * postinst: Actually delete the /etc/init.d/netbase symlinks when using
+    debconf.
+  * postinst: Remove the "[kludge]" note about stopping debconf. The
+    kludge itself is still there, though.
+  * preinst: Apparently I didn't actually remove the inetd.conf
+    denial-of-service checks from the preinst like I said. (They're in
+    the postinst now). Fixed that.
+
+  * control: Added a Conflict: against libwrap0 versions 7.6-2 and 7.6-3,
+    which are disgustingly buggy. (Closes: Bug#58916)
+
+  * update-inetd: Clarify the xinetd warning. Thanks to Josip Rodin.
+    (Closes: Bug#60666)
+
+  * ping6: Correct "unkown" misspelling. (Closes: Bug#56132)
+
+  * net-tools: Fix some hwtype structure misdeclarations in
+    lib/*.c. (Closes: Bug#59377)
+
+  * pmap_dump: Made pmap_dump use the 127.0.0.1 address, rather than
+    the result of get_myaddress. This is to cope with broken firewalling
+    setups that try to firewall out the loopback interface, and make the
+    machine unreachable from itself. (Closes: Bug#60517)
+
+  * ipmasqadm.8: Added a `this manpage has tables' code at the top. Thanks
+    to Craig Small.
+
+ -- Anthony Towns <ajt@debian.org>  Fri, 24 Mar 2000 07:42:27 +1000
+
+netbase (3.17-1) frozen unstable; urgency=low
+
+  * New upstream bugfix release of net-tools. (Closes: Bug#55011)
+    (Differences against upstream: got rid of pr_str typo in lib/tr.c)
+  * New upstream release of ifupdown (incorporates changes from
+    previous netbases, adds a manpage). There shouldn't be any
+    semblance of a need for nowebm for rebuilding anymore.
+
+  * postinst: The first bit of the postinst is executed twice if debconf's
+    running. This causes problems for people running slink (ie, using
+    an old netbase that doesn't stop portmap), who don't have psmisc
+    installed (and hence don't have fuser, and hence can't kill portmap,
+    and hence the second run isn't a no-op), because debconf redirects
+    all the echo's to itself, and doesn't understand them. Got all that?
+    Thanks to Adam Heath and Joey Hess for noticing the problem and
+    finding the solution.
+
+  * etc/network/options: Created options file for configuring spoof
+    protection, IPv4 forwarding, and SYN cookies. (Closes: Bug#46579)
+  * init.d/networking: Made SYN cookies not default. (Closes: Bug#57909,
+    Bug#58141)
+
+  * Added Build-Depends line.
+
+  * ipautofw/ipautofw: Remove i386 binary for .orig.tar.gz
+  * ipautofw/Makefile: Make the binary depend on the source.
+
+  * etc/network/interfaces: Remove ALPHA warnings. (Closes: Bug#58019)
+
+  * DebianNet.pm: Take a little more care when matching services.
+    Thanks to Paul Slootman for the patch. (Closes: Bug#56251)
+
+  * debian/templates: Clarify spoof-protection question (wrt 2.0 kernels).
+    (Actually did this in 3.16-10) (Closes: Bug#51657)
+
+  * debian/templates,postinst: Add a note about /etc/init.d/network and
+    /etc/network/interfaces, both via debconf and as comments into
+    /etc/init.d/network. (Closes: Bug#47378,Bug#56883)
+
+ -- Anthony Towns <ajt@debian.org>  Sun, 20 Feb 2000 17:03:00 +1000
+
+netbase (3.16-10) frozen unstable; urgency=low
+  
+  * init.d/networking: Add S15networking links in runlevels 0 and 6 (halt 
+    and reboot) so DHCP and kin are given a chance to die nicely before 
+    being killed. (Closes: Bug#49817)
+  * Also moved portmap to rcS.d and rc[06].d (41 and 10, respectively).
+
+  * preinst; Removed daytime/udp etc question from preinst, moved it to 
+    postinst, so it should only get asked once now.(Closes: Bug#54009, 
+    Bug#51219)
+  * postinst: Make sure the debconf and non-debconf halves both do the
+    same things. (Closes: Bug#57321, Bug#57199)
+  
+  * init.d/networking/Enable SYN Cookies at boot time, if they're compiled 
+    into the kernel. (Closes: Bug#43402)
+  
+  * netkit-base/ping: Got rid of the `timestamp_check' stuff.
+  
+  * cron.daily: Switch to /bin/sh rather than /bin/bash. (Closes: Bug#50525)
+
+  * etc/services: Added font-server 7100 (aka, xfs). (Closes: Bug#50886)
+  * etc/services: Added ndtp 2010/tcp. (Closes: Bug#51119)
+  * etc/services: Added ipp 631. (Closes: Bug#51956)
+  * etc/services: Addes kx 2111/tcp. (Closes: Bug#54183)
+
+ -- Anthony Towns <ajt@debian.org>  Wed,  9 Feb 2000 12:38:20 +1000
+
+netbase (3.16-9) frozen unstable; urgency=medium
+
+  * Make ifup/ifdown use dhclient/pump/dhcpcd/dhcpcd-sv for DHCP,
+    depending on kernel version and/or what's actually installed. This
+    is important for boot-floppies. (Closes: Bug#56020)
+
+  * Fix up -n option (which is missing from getopt(), tsk), and correct
+    the --help display. (Closes: Bug#56910)
+
+  * Remove the m68k-doesn't-have-glibc2 kludge, since it now does
+    have glibc2. (Closes: Bug#56940)
+
+ -- Anthony Towns <ajt@debian.org>  Fri,  4 Feb 2000 01:14:14 +1000
+
+netbase (3.16-8) unstable; urgency=low
+
+  * iputils/ping6.c: Did local defines of clear_bit, set_bit and test_bit,
+    so it no longer needs to include asm/bitops.h. Hopefully this'll fix
+    it for arm and powerpc. (Closes: Bug#46642,Bug#47522)
+
+ -- Anthony Towns <ajt@debian.org>  Tue, 14 Dec 1999 13:09:11 +1000
+
+netbase (3.16-7) unstable; urgency=low
+
+  * Fixed bashism in .config (Closes: Bug#50608, Bug#50675)
+  * The infinite looping seems to be fixed in debconf (>= 0.2.34). Added
+    a Conflicts: to help with this. (Closes: Bug#50920, Bug#50545,
+    Bug#50753).
+  * Added a missing ||true in .config which seems to be the remaining
+    debconf bug! (Closes: Bug#50968, Bug#50977)
+
+ -- Anthony Towns <ajt@debian.org>  Sat, 20 Nov 1999 07:14:12 +1000
+
+netbase (3.16-6) unstable; urgency=low
+
+  * Update debconf-isms. Should fix the weird crashes and loops on installing,
+    as well as debconf's random whining. (Closes: Bug#49565, Bug#50369,
+    Bug#50397)
+
+  * Added ircs service (tcp/994) for SSL wrapped IRC. (Closes: Bug#49848)
+
+ -- Anthony Towns <ajt@debian.org>  Thu, 18 Nov 1999 17:45:14 +1000
+
+netbase (3.16-5) unstable; urgency=low
+
+  * Remove perlism from postinst. Considering postinst is a /bin/sh
+    script, this seems wise. (Yeesh).
+
+ -- Anthony Towns <ajt@debian.org>  Thu, 18 Nov 1999 17:45:11 +1000
+
+netbase (3.16-4) unstable; urgency=low
+
+  * The `Australia v France' release.
+    Aussie, Aussie, Aussie! Oi! Oi! Oi!
+
+  * netstd no longer exists, no longer recommend it. (Closes: Bug#49325)
+
+  * /etc/services: Added afbackup entry. (Closes: Bug#48519)
+
+  * update-inetd: Add a warning for xinetd people (ie "that didn't work,
+    you'll have to do it manually!"). (Closes: Bug#45174)
+
+ -- Anthony Towns <ajt@debian.org>  Sat,  6 Oct 1999 23:45:30 +1000
+
+netbase (3.16-3) unstable; urgency=low
+
+  * portmap: Statically link _/sbin_/portmap against _/usr_/lib/libwrap.a.
+    Tsk. (Closes: Bug#44090)
+
+  * slattach: Don't buffer stdout, cope with unix98 ptys and cleanup some
+    of the error handling. Thanks to Ian Jackson for the report and
+    patch. (Closes: Bug#45515), (Downgrades: Bug#45944)
+
+  * /etc/init.d/networking: "$LOCAL_IPS", not "LOCAL_IPS". Oddly, I seem
+    to have corrected this locally, but not in the source. Weird. Thanks
+    to Kurt Starsinic for the report and patch. (Closes: Bug#45793)
+
+  * /etc/init.d/inetd: Change usage string to refer to init.d/inetd
+    instead of init.d/netbase. Also changed description from `base
+    networking daemons' to `internet superserver'. (Closes: Bug#45923)
+
+  * postinst: Cope with `hostname -i' failing. (Closes: Bug#45860)
+  * debian/rules: Get ipmasqadm docs from the right place.
+  * TODO.Debian: Update it a bit
+  * Include arping (ARP ping) from iputils. (Closes: Bug#43911)
+
+  * Add (optional) debconf support.
+
+  * Rebuild with new debhelper. Should now be FHS compliant.
+
+ -- Anthony Towns <ajt@debian.org>  Sun,  3 Oct 1999 18:30:26 +1000
+
+netbase (3.16-2) unstable; urgency=low
+
+  * ifconfig: Added note to ifconfig(8) manpage about EAGAIN and IRQ
+    conflicts. (Closes: Bug#43190)
+
+  * net-tools: Moved manpages from man/de_DE/manX to man/de/manX,
+    etc. Should now actually let you view the non-English pages.
+
+  * ifupdown: (debian/rules) touch the various generated source files
+    so that noweb isn't mistakenly required because patch doesn't
+    preserve timestamps. (Closes: Bug#43817)
+
+  * init.d/inetd: Added conflicts: against xinetd's that mess with
+    init.d/netbase -- they should mess with init.d/inetd instead
+    now. (Reassigns Bug#43643 to xinetd)
+
+ -- Anthony Towns <ajt@debian.org>  Sat,  4 Sep 1999 15:14:58 +1000
+
+netbase (3.16-1) unstable; urgency=high
+
+  * New upstream version: ipchains 1.3.9 (was 1.3.8) (Closes: Bug#37005)
+  * New upstream version: ipchains-scripts 1.1.2 (was 1.0.2)
+
+  * Now includes netfilter; but only in the source package for the time
+    being. (So I don't know how to compile it yet. Sue me)
+
+  * Split TCP wrappers to its own packages (libwrap0, libwrap0-dev, tcpd).
+    This creates a shared library (and accompanying -dev package) for
+    TCP wrappers, links the various binaries to that library, adds a
+    dependency from libwrap.so.0 to libnsl.so.1, hopefully compiles
+    better on HURD now, and adds a reference to hosts_options(5) in the
+    hosts_access(5) manpage.
+    (Closes: Bug#15311, Bug#33677, Bug#33085, Bug#37797)
+  * Recompiled with gcc 2.95-1 (Closes: Bug#38978)
+
+  * /etc/init.d/netbase: Removed.
+
+  * /etc/init.d/inetd: Created /etc/init.d/inetd which handles stopping and
+    starting inetd.
+
+  * /etc/init.d/networking: Created networking startup file: rcS.d,
+    priority 40 (just after /etc/rcS.d/S40network). Sets up spoof
+    protection and runs `ifup -a' on start, and `ifdown -a' on stop.
+    /etc/init.d/netbase now does nothing but start and stop inetd.
+    (Closes: Bug#39118, Bug#43310)
+
+  * /etc/network/spoof-protect: configuration file to encourage people to
+    actually get spoof protection to work. (Closes: Bug#17424, Bug#39265)
+
+  * postinst: Added opportunity to configure /etc/network/spoof-protect.
+
+  * preinst: As well as complaining about chargen and echo, complain about
+    time/udp and daytime/udp also. (Closes: Bug#17424, Bug#39265) (Yes,
+    these two bugs got fixed in two different ways.)
+
+  * copyright: Rearranged the summary in the copyright file and listed
+    the authors, since they are the copyright holders after all.
+
+  * /etc/services:
+        Changed name of pop-2/pop-3 (109,110/tcp,udp) to pop2, pop3, with
+          pop-2, pop-3 as aliases. (Closes: Bug#42108)
+        Added rmiregistry (1099/tcp) service for Java (Closes: Bug#42346)
+        Added nqs (607/tcp) service for generic-nqs (Closes: Bug#42594)
+        Added customs (1001/tcp,udp) service for pmake (Close: Bug#43423)
+
+ -- Anthony Towns <ajt@debian.org>  Fri, 20 Aug 1999 07:11:00 +0000
+
+netbase (3.15-4) unstable; urgency=low
+
+  * ifupdown: chmod *.pl *.sh so they're executable. diff.gz's don't 
+    preserve permissions. 
+  * iputils/ping: changed ENOSUP to EOPNOTSUPP. Thanks to Roman Hodek for
+    both these fixes. Maybe m68k and friends will work *this* time.
+
+ -- Anthony Towns <ajt@debian.org>  Fri, 23 Jul 1999 14:25:48 +1000
+
+netbase (3.15-3) unstable; urgency=low
+
+  * debian/rules: Fixed typo. (Bug#40411)
+  * debian/rules: Converted to debhelper.
+
+  * /etc/services: Added Zebra services
+  * /etc/services: Changed saned/tcp service to sane/tcp (with saned/tcp as
+    an alias). (Bug#36395,36441)
+  * /etc/services: Added rtcm port assignment services (Bug#38884)
+  * /etc/services: Added omniorb port as 8088 (Bug#40598)
+  * /etc/services: Added irc-dalnet port as 7000 (Bug#35225)
+  * /etc/services: Added mrtd ports (Bug#36999)
+
+  * ifupdown: Added ifup and ifdown commands. See /etc/network/interfaces
+    for some info. See the source code for the rest.
+
+ -- Anthony Towns <ajt@debian.org>  Mon, 19 Jul 1999 14:18:27 +1000
+
+netbase (3.15-2) unstable; urgency=low
+
+  * net-tools: Disabled ECONET support for m68k builds. Thanks to Roman
+    Hodek for the report and patch. (Bug#40411)
+  * /etc/gateways: Added gatesways(5) manpage. Thanks to Steve Kostecke.
+    (Bug#23703)
+  * debian/postinst: Changed wording of "ipfwadm -> ipfwadm.real or
+    ipfwadm-wrapper" message to (hopefully) clarify it a bit.
+  * debian/copyright: Bumped the version of net-tools. Oooops.
+
+ -- Anthony Towns <ajt@debian.org>  Mon, 19 Jul 1999 14:18:23 +1000
+
+netbase (3.15-1) unstable; urgency=medium
+
+  * debian/postrm: Fixed typo in postrm (-l != -L). (Bug#37858)
+
+  * iputils/ping: Applied patch to fix bogus errors on 2.0.x kernels, and
+    to call snprintf instead of sprintf. Thanks to Michael Herrman.
+    (Bug#37084)
+  * iputils/ping: Applied patch to fix timeval alignment problems on alpha.
+    Thanks to Bart Warmerdam. (Bug#38137)
+
+  * net-tools/lib/masq_info.c: Applied patch from RedHat to cope with a
+    couple more protocols.
+  * net-tools: Applied patch from RedHat to fix a number of possible
+    buffer overflows.
+
+  * New upstream release of net-tools (1.52).
+
+ -- Anthony Towns <ajt@debian.org>  Wed, 30 Jun 1999 23:21:40 +1000
+
+netbase (3.14-3) unstable; urgency=low
+
+  * ping: Reverted to netkit-base ping for all architectures except alpha.
+    As it turns out the iputils ping doesn't work properly on 2.0 kernels.
+    (Bug#36497)
+  * iputils/ping: Applied patch to add a "-m" option
+    to iputils/ping (to adjust maximum time spent waiting for final
+    packet) and fixes exit values of the program and `-c n' option when
+    destination is down. Thanks to Michael Herrman. (Bug#36432)
+  * iputils: Applied patches to fix some buffer overflow problems. Thanks
+    to Topi Miettinen for finding and fixing the problems.
+  * ping6/traceroute6: Applied patch to make ping6 and traceroute6 think
+    of themselves as ping6/traceroute6 instead of just ping/traceroute.
+    Thanks to Remco van de Meent.
+  * pmap_set: Fixed fairly implausible buffer overflow. Thanks to Topi
+    Miettinen for the patch. (Bug#29097)
+
+  * tcp_wrappers: Used sigsetjmp/siglongjmp instead of setjmp/longjmp
+    to handle signals properly. Thanks again to Topi Mittinen. (Bug#29105)
+
+  * ipchains: Added a4 and letter refcards to /usr/doc/netbase. (Bug#36659)
+
+  * ifconfig: Applied patch from Philip Blundell to fix strange behaviour
+    of IPv4 interfaces with ifconfig. (Bug#36093, Bug#35457)
+
+  * net-tools: Changed Makefile to make installation of ipmaddr/iptunnel
+    conditional on HAVE_IP_TOOLS.
+
+  * postinst: Made IPv6 /etc/hosts changes only prompt when upgrading from
+    netbase prior to 3.14. (Bug#36289)
+
+  * debian/rules: Fixed m68k patch. (Bug#36324)
+
+ -- Anthony Towns <ajt@debian.org>  Sat,  1 May 1999 13:38:27 +1000
+
+netbase (3.14-2) unstable; urgency=low
+
+  * ping: Replaced netkit-ping w/ iputils ping.
+  * ping/ping6: Applied patches to fix some datasize errors in 
+    iputils/ping{,6}.c . Thanks to Christopher Chimel. (Bug#35311)
+  * ping: Removed egcs' buggy optimisations in iputils and netkit-base.
+    (Bug#35801) Thanks to Horst von Brand for pointing out the problem.
+  
+  * ipfwadm: Fixed up echo ...;... in help text. *grumble* (Bug#35125)
+
+  * arp: Changed .po file to use `\t' instead of `\\t' for tabs. 
+    (Bug#35773)
+
+  * debian/rules: Hacked build target so net-tools isn't built with IPv6
+    support for m68k. (Bug#35553)
+ -- Anthony Towns <ajt@debian.org>  Thu, 25 Mar 1999 18:14:13 +1000
+
+netbase (3.14-1) unstable; urgency=low
+
+  * Added iputils package. (provides ping6, traceroute6, and
+    tracepath{,6})
+
+  * ipdwadm-wrapper: Fixed thinko in helptext, and added check for
+    /proc/net/ip_acct as well as /proc/net/ip_input to better check
+    some ipfwadm (pre-2.1.x) systems. Thanks to Francesco Portorti.
+    (Bug#34879,#34880,#34912,#35016)
+
+  * /bin/ping: Recompiled with new fakeroot to fix weird group errors.
+    (Bug#34994,#34998)
+
+ -- Anthony Towns <ajt@debian.org>  Wed, 24 Mar 1999 22:30:40 +1000
+
+netbase (3.13-1) unstable; urgency=low
+
+  * New upstream release of net-tools (1.51) (Closes: #14302)
+
+  * Compiled with glibc2.1. Thanks to Joel Klecker for some patches.
+    Should compile much more easily on non-i386 architectures now. 
+    Hopefully.
+
+  * ipfwadm: Made /sbin/ipfwadm point to ipfwadm-wrapper, which copes
+    with running a 2.0 kernel (and calling ipfwadm directly), or a 2.2
+    kernel (and using ipchains instead).
+
+  * /etc/protocols: Correct IDPR-CMTP protocol number to 38, change
+    IPv6-Crypt and IPv6-Auth entries, to the IANA names, ESP and AH
+    (respectively). Added some other IPv6 related protocols.
+
+  * /etc/services: Added swat 901/tcp. (Bug#33964)
+  * /etc/services: Added ldap 389/tcp,udp. (Bug#33944)
+  * /etc/services: Added saned 6566/tcp. (Bug#33654) 
+
+  * /etc/init.d/netbase: Fix spelling mistake. 
+
+  * net-tools: Configured in Internationalization (Bug#34638), and
+    IPv6 support. Compiled in support for the other options on a
+    "What the hell" basis.
+
+  * Changed the layout of the source package to not include version
+    numbers in the directories for each sub package. They're now in
+    /usr/doc/netbase/copyright instead.
+
+ -- Anthony Towns <ajt@debian.org>  Sat, 13 Feb 1999 14:20:32 +1000
+
+netbase (3.12-2) unstable; urgency=low
+
+  * /etc/services: Added moira services (Bug#33027)
+  * /usr/doc/netbase/ipmasqadm: Include ipmasqadm docs.
+  * inetd: Don't lose file descriptors when services fail. (Bug#24707)
+  * netstat: Cope with masqueraded ICMP packets (pings). (Bug#26950)
+
+  * /etc/hosts: Prompt in postinst to add IPv6 host/ips.
+  * /etc/protocols: Add IPv6 protocol names. (Bug#27102)
+
+  * Use "/usr" as the KSRC directory for ipmasqadm. (ipmasqadm-*/Common.mk)
+  * Require linux 2.2 (or recent 2.1) headers in /usr/include/linux
+    for compilation. (Bug#32873)
+
+  * prerm: Swap "portmap stop" and "pmap_dump". Ouch. (You'll need to
+    restart NFS *again*, in other words. This *should* be the last time,
+    though).
+
+  * suidmanager: No changes!! :)
+
+ -- Anthony Towns <ajt@debian.org>  Fri, 29 Jan 1999 02:04:47 +1000
+
+netbase (3.12-1) unstable; urgency=low
+
+  * Fixed some lintian warnings.
+  * /etc/services: Changed second mailq entry to udp. (Thanks to 
+        Russell Coker)
+  * /etc/services: Added dict 2628/tcp,udp
+
+  * suidmanager: Only call suidregister once. ("Hey, Rocky, watch
+        me pull a working netbase out of my hat!" "Oh, Bullwinkle,
+        you know that trick *never* works") Thanks again to Julian 
+        Gilbey.
+
+  * New upstream versions of:
+        ipautofw (980511)
+        ipchains (1.3.8)
+        net-tools (1.50)
+
+  * Added ipmasqadm.
+
+ -- Anthony Towns <ajt@debian.org>  Wed, 27 Jan 1999 23:24:12 +1000
+
+netbase (3.11-4) unstable; urgency=medium
+
+  * /etc/services: Added linuxconf 98/tcp
+  * ping: change tmin/tmax to unsigned longs (Bug#32196)
+  * postinst, init.d/portmap: Make portmap start read 
+        /var/run/portmap.upgrade-state so registered services don't
+        just disappear over an upgrade. (Bug#32314, #32154)
+  * postinst: Make `killing portmap' message a little bit more sensible.
+        (Bug#32314, #32154)
+  * suidmanager: See if debstd does a better job coping with suidmanager
+        than I have. (Thanks to Julian Gilbey) (Bug#32120,#32168,#32173)
+
+ -- Anthony Towns <ajt@debian.org>  Wed, 20 Jan 1999 13:14:00 +1000
+
+netbase (3.11-3) unstable; urgency=high
+
+  * init.d: Fix `&>' bashism in init.d/netbase. (Bug#32062)
+  * postinst: Cope if suidmanager isn't installed. Yeesh. 
+    (Bugs #32066,#32092,#32093,#32101,#32102,#32105)
+  * postrm: Remember to suidunregister, too.
+
+ -- Anthony Towns <ajt@debian.org>  Tue, 19 Jan 1999 23:44:19 +1000
+
+netbase (3.11-2) unstable; urgency=low
+
+  * /etc/services: canna, wnn6, and skkserv services added (Bug#30693) 
+  * /etc/services: afs services added (Bug#28290)
+  * rcN.d: Fix stop-priority levels for portmap. 
+  * init.d: Added check for portmap when starting inetd.
+  * init.d: Split portmap section of init.d/netbase into init.d/portmap
+    (Bug#22665, Bug#23610, Bug#24551, Bug#26390)
+
+  * postinst: Register ping with suidmanager (Bug#15701)
+  * prerm: Stop portmapper in prerm, rather than waiting until postinst.
+    (Bug#19678,#23073)
+
+  * /usr/doc/netbase/TODO.debian: added - additions by the bug tracking
+    system are welcome. 
+
+  * 3.11-1.2 and 3.11-1.1 changes merged.
+  * New maintainer.
+
+ -- Anthony Towns <ajt@debian.org>  Mon, 18 Jan 1999 17:02:38 +1000
+
+netbase (3.11-1.2) frozen unstable; urgency=low
+
+  * /etc/services: Added gnats service. (Fixes#18835)
+  * /etc/services: Added GNUstep environment services. (Fixes#30285) 
+  * /etc/services: Added coda services. (Fixes#26450)
+  * /etc/services: Added ssl services. (Fixes#30354)
+  * inetd: correctly resolve "3com-tsmux". (Fixes#16318)
+    (telnet doesn't support this, so /etc/services unchanged)
+  * inetd: Bumped line buffer for reading inetd.conf in inetd.c to 1024
+    characters. Noted limitation in intetd.conf manpage. (Fixes#24116)
+  * inetd: Cleanup inetd.c (thanks to Topi Miettinen) (Bug#29162)
+  * netstat: Change -u|--unix in manpage to -x|--unix in manpage.
+    (Fixes#26263)
+  * ping: Fix broken ping -f localhost behaviour (thanks to Nick Holloway
+    via the linux-kernel list). (Bug#27123)
+  * Incorporate Sparc glibc2.1 patch (thanks to Christian Meder).
+    (Bug#27522)
+  * Non-maintainer release.
+
+ -- Anthony Towns <ajt@debian.org>  Sat, 21 Nov 1998 16:53:00 +1000
+
+netbase (3.11-1.1) unstable; urgency=low
+
+  * non maintainer, no source upload
+  * fixes for glibc2.1, patch forwarded to BTS
+
+ -- Christian Meder <meder@isr.uni-stuttgart.de>  Tue,  6 Oct 1998 14:29:19 +0200
+
+netbase (3.11-1) frozen unstable; urgency=low
+
+  * /etc/services: added rsync entry, fixes: Bug#24464
+  * /etc/services: added ninstall entry, fixes: Bug#24560
+  * /etc/services: added additional check for the radius service
+                  to the preinst script, fixes: Bug#24394, Bug#24187
+  * update-inetd.8: added a short note about the comment-char option
+                   to the ssh example
+  * /etc/inetd.conf: added a short note about how to permanently
+                    disable services in /etc/inetd.conf to the
+                    default /etc/inetd.conf that will be created
+                    by the preinst script.
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Wed, 15 Jul 1998 23:17:09 +0200
+
+
+netbase (3.10-1) frozen unstable; urgency=high
+
+  * netkit-base: fixed ping signal security problem, fixes: Bug#23303
+  * netkit-base: fixed inetd manual page, fixes: Bug#23705, Bug#23706
+  * ipchains: removed libfw examples (suggestion from the upstream
+             maintainer Paul Russell <Paul.Russell@rustcorp.com.au>)
+  * ipchains-restore: fixed manual page
+  * /etc/init.d/netbase: changed ipchains commands to match all non "lo"
+                        devices (Paul Russell <Paul.Russell@rustcorp.com.au>)
+                        fixes: Bug#23745
+  * ipchains: replaced by ipchains-1.3.4 and ipchains-scripts 1.0.2
+             fixes: Bug#24024, Bug#23592
+  * net-tools: added missing include for arp.c
+              fixes: Bug#22645, Bug#22795, Bug#23335
+  * /etc/services: added socks entry, fixes: Bug#23691
+  * /etc/services: added kamanda entry
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Sun,  5 Jul 1998 21:04:48 +0200
+
+
+netbase (3.09-1) frozen unstable; urgency=medium
+
+  * added ipchains-1.3.3 (for kernel 2.1.102 and above)
+  * ipchains: wrote some simple manual pages for ipfwadm-wrapper,
+             ipchains-save and ipchains-restore.
+  * /etc/init.d/netbase: changed to use ipchains for kernel 2.1.102 and
+                         above
+  * net-tools: fixed ifconfig (some supported features were not enabled)
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Sun, 17 May 1998 16:09:58 +0200
+
+
+netbase (3.08-1) frozen unstable; urgency=low
+
+  * /etc/services: added https entry
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Sat, 16 May 1998 03:55:45 +0200
+
+
+netbase (3.07-1) frozen unstable; urgency=low
+
+  * added "Suggests: cpp" (rpcgen)
+  * net-tools: replaced by net-tools-1.45, fixes: Bug#21520, Bug#21512
+  * /etc/services: fixed postgres entry
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Wed,  6 May 1998 21:10:12 +0200
+
+
+netbase (3.06-1) frozen unstable; urgency=medium
+
+  * portmapper: moved from /usr/sbin to /sbin, fixes: Bug#16092, Bug#20957
+  * rpcgen: uses /usr/bin/cpp now, fixes: Bug#20638
+  * net-tools: replaced by net-tools-1.44, fixes: Bug#19932, Bug#20652
+  * net-tools: fixed ifconfig output for ARCnet, fixes: Bug#20385
+  * net-tools: fixed command line buffer overflow in ifconfig, Bug#21019
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Thu, 16 Apr 1998 14:01:09 +0200
+
+
+netbase (3.05-1) frozen unstable; urgency=low
+
+  * /etc/services: added mysql entries
+  * /etc/services: added codafs entries
+  * /etc/services: added radius entries
+  * /etc/services: added transparent proxy entries
+  * /etc/services: added dqs alias entries
+  * /etc/services: added kerberos-iv alias entries
+  * update-inetd.8: added description and example for the --add option
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Wed, 25 Mar 1998 13:49:17 +0100
+
+
+netbase (3.04-1) unstable; urgency=low
+
+  * added patch for sparc architecture, fixes: Bug#17495
+  * /etc/services: added omirr entries
+  * /etc/services: added afbackup entry, fixes: Bug#18336
+  * /etc/services: added afpovertcp entries, fixes: Bug#18268
+  * slattach: added "keepalive" patch, fixes: Bug#17797
+  * update-inetd: fixed help screen
+  * DebianNet.pm: made "multiple entries" warning more verbose
+                  fixes: Bug#18690
+  * /etc/init.d/netbase: changed console message for "IP spoofing protection"
+                         fixes: Bug#18656
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Sat, 28 Feb 1998 11:48:23 +0100
+
+
+netbase (3.03-1) unstable; urgency=low
+
+  * /etc/services: added amanda entries
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Sat, 10 Jan 1998 21:54:46 +0100
+
+
+netbase (3.02-1) unstable; urgency=low
+
+  * /etc/services: added hostmon, noclog entries
+  * net-tools: added missing activate_init() call to slattach (patch from
+               Michael Schmitz <schmitz@lcbvax.cchem.berkeley.edu>)
+  * recompiled with libc6-2.0.6 (should fix the portmapper problem)
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Tue, 30 Dec 1997 12:01:09 +0100
+
+
+netbase (3.01-1) unstable; urgency=low
+
+  * /etc/services: added entry for zmailer
+  * /etc/services: fixed poppassd entry
+  * ipfwadm: added support for icmp masquerading entries
+             (patch from Heiko Schlittermann <heiko@datom.de>)
+  * ipfwadm: fixed manual page (masquerading policy)
+  * net-tools: replaced by net-tools-pre1.34
+  * net-tools: fixed netstat -M option
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Wed, 19 Nov 1997 23:05:11 +0100
+
+
+netbase (3.00-1) unstable; urgency=low
+
+  * /etc/services: added binkp, fido, tfido entries
+  * /etc/init.d/netbase: enable IP spoofing protection if the kernel
+                         has the IP firewall option enabled
+  * netkit-base: ping glibc fixes
+  * net-tools: glibc fixes
+  * tcp_wrappers: added blacklist patch (if the host pattern starts
+                 with a '/' characters it will be interpreted as
+                 filename, this file can contain further host patterns).
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Fri, 19 Sep 1997 20:14:03 +0200
+
+
+netbase (2.17-1) unstable; urgency=low
+
+  * /etc/services: added asp entry
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Mon, 18 Aug 1997 00:49:40 +0200
+
+
+netbase (2.16-1) stable unstable; urgency=high
+
+  * ping: glibc fix
+  * fixed security hole in preinst script (Bug#11789)
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Wed, 13 Aug 1997 21:39:20 +0200
+
+
+netbase (2.15-1) unstable; urgency=low
+
+  * tcp_wrappers: replaced by tcp_wrappers 7.6
+  * tcp_wrappers: wrote manual pages for safe_finger and try-from
+  * portmapper: replaced by secure portmapper 5
+  * portmapper: wrote manual pages for pmap_dump and pmap_set
+  * portmapper: renamed binary from rpc.portmap to portmap
+  * inetd: replaced by netkit-base-0.10
+  * ping: replaced by netkit-base-0.10
+  * rpcinfo: moved from netstd to netbase (netkit-base-0.10)
+  * rpcgen: moved from netstd to netbase (netkit-base-0.10)
+  * added glibc patch from Hartmut Koptein <koptein@et-inf.fho-emden.de>
+  * /etc/services: added cfengine entry
+  * net-tools: moved plipconfig and slattach from /usr/sbin to /sbin
+  * net-tools: moved plipconfig and slattach from net-tools-1.2 to
+               net-tools-1.32-alpha and removed net-tools-1.2
+  * postinst/prerm: changed the scripts so the portmapper will keep its
+                    internal RPC database during the upgrade procedure
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Thu, 24 Jul 1997 19:11:35 +0200
+
+
+netbase (2.14-1) unstable; urgency=low
+
+  * added glibc patch from Michael Alan Dorman <mdorman@lot49.med.miami.edu>
+  * nettools: increased device buffer size from 1024 to 10240 bytes
+             for ifconfig/netstat. This is enough for the max. number
+             of ip_alias entries (the kernel supports 256 entries)
+  * cron.daily: changed /bin/sh to /bin/bash (Bug#9907)
+  * net-tools: added FDDI support (Larry Stefani <stefani@lkg.dec.com>)
+  * /etc/services: added isdnlog, vboxd entries
+  * /etc/services: added saft, ircd, webcache and icp entries
+  * /etc/services: added poppassd as an alias for the already assigned
+                  port 106
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Mon, 16 Jun 1997 11:08:44 +0200
+
+
+netbase (2.13-1) frozen unstable; urgency=medium
+
+  * ping: fixed a bug in rtt handling (Bug#8509)
+  * cron.daily: don't copy empty files
+  * cron.daily: rotate the backup files
+  * cron.daily: added the cron.daily script to conffiles
+  * DebianNet.pm: show a warning and ask the user if he wants to continue
+                 if the user tries to remove/disable more than one entry
+                 at a time
+  * DebianNet.pm: added new variable $DebianNet::multi to override the
+                 new behaviour mentioned above
+  * update-inetd: added --multi option (see above)
+  * postinst: restart amd if necessary
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Tue, 22 Apr 1997 13:09:31 +0200
+
+
+netbase (2.12-1) frozen unstable; urgency=low
+
+  * added ipautofw-960628
+  * ipfwadm: enabled ICMP_MASQUERADE in ipfwadm
+  * /etc/services: added qmtp (Quick Mail Transfer Protocol) entries
+  * DebianNet.3pm: added some information about entries that are
+                  commented out (by default)
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Thu, 10 Apr 1997 22:04:20 +0200
+
+
+netbase (2.11-1) frozen unstable; urgency=medium
+
+  * inetd: added a patch from David Holland <dholland@eecs.harvard.edu>
+          that makes sure that inetd only uses the standard group
+          of the user root if no additional group is specified in
+          /etc/inetd.conf
+  * /etc/services: added entries for hylafax (snpp/fax/hylafax)
+  * update-inetd: added some information about entries that are
+                 commented out (by default)
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Thu, 27 Mar 1997 23:05:56 +0100
+
+
+netbase (2.10-1) unstable; urgency=low
+
+  * portmapper: minor makefile changes
+  * nettools: some bash 2.0 fixes
+  * nettools: fixed ifconfig manual page 
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Tue, 4 Mar 1997 10:38:45 +0100
+
+
+netbase (2.09-1) unstable; urgency=high
+
+  * tcp_wrapper: updated to tcp_wrapper-7.5
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Fri, 14 Feb 1997 00:21:30 +0100
+
+
+netbase (2.08-1) unstable; urgency=low
+
+  * /etc/services: added CVS (cvspserver) entry (Bug#6631)
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Thu, 16 Jan 1997 22:22:15 +0100
+
+
+netbase (2.07-1) unstable; urgency=low
+
+  * converted to packaging standard 2.1.2.2
+  * added some information about the tcpd compile time options
+    to README.debian (Bug#6244)
+  * restart NFS and NIS services on demand (Bug#6433)
+  * update-inetd: added example to manual page (Bug#4925)
+  * ping: fixed exit status for 100% packet loss (Bug#4869)
+  * arp: fixed typo (Bug#5728)
+  * inetd: added the RFC numbers of the internal services to
+          the inetd and inetd.conf manual pages
+
+ -- Peter Tobias <tobias@et-inf.fho-emden.de>  Wed, 15 Jan 1997 15:13:32 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..b8626c4
--- /dev/null
@@ -0,0 +1 @@
+4
diff --git a/debian/config b/debian/config
new file mode 100644 (file)
index 0000000..815b737
--- /dev/null
@@ -0,0 +1,31 @@
+#!/bin/sh -e
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+
+# Display upgrade notices
+if [ "$1" = "configure" -a "$2" != "" ]; then
+    for note in radius-ports-pre-3.05 \
+                portmap-restart-pre-3.11-2 \
+                init.d-split-pre-3.16-1 \
+               etc-network-interfaces-pre-3.17-1
+    do
+        ver=${note#*-pre-}
+        if dpkg --compare-versions "$2" lt "$ver"; then
+            db_input medium "netbase/upgrade-note/$note" || true
+        fi
+    done
+    db_go
+fi
+
+
+# Some sensible defaults, that could /conceivably/ be annoying
+db_input low netbase/ipv6-hosts || true
+db_go
+
+# Configuration stuff
+db_input low netbase/spoofprot || true
+db_input low netbase/spoofprot/pre-2.2-ip || true
+db_input low netbase/spoofprot/pre-2.2-interfaces || true
+db_go
+
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..b2c1a43
--- /dev/null
@@ -0,0 +1,18 @@
+Source: netbase
+Section: admin
+Priority: important
+Maintainer: Rafal Krypa <r.krypa@samsung.com>
+X-Original-Maintainer: Anthony Towns <ajt@debian.org>
+X-Original-Uploaders: Anthony Towns <ajt@debian.org>, Marco d'Itri <md@linux.it>
+Standards-Version: 3.6.2.2
+Build-Depends: debhelper (>= 4.1.13)
+Build-Depends-Indep: gettext, po-debconf (>= 0.5.0)
+
+Package: netbase
+Architecture: all
+Depends: ifupdown, debconf (>= 0.2.0) | debconf-2.0, lsb-base (>= 3.0-6)
+Conflicts: xinetd (<= 2.2.1-8), netstd (<< 3.00), nfs-common (<< 1:0.3.2-1), nfs-user-server (<< 2.2beta47-9), nis (<= 3.6-2), rstatd (<= 3.03-3), rwalld (<= 0.16-1), rusersd (<= 0.17-1), ugidd (<< 2.2beta47-9)
+Provides: update-inetd
+Description: Basic TCP/IP networking system
+ This package provides the necessary infrastructure for basic TCP/IP based
+ networking.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644 (file)
index 0000000..d54603b
--- /dev/null
@@ -0,0 +1,8 @@
+This package was created by Peter Tobias tobias@et-inf.fho-emden.de on
+Wed, 24 Aug 1994 21:33:28 +0200, and is currently maintained by Anthony
+Towns <ajt@debian.org> and Marco d'Itri <md@linux.it>.
+
+The programs in this package are distributed under the terms of the GNU
+General Public License, version 2 as distributed by the Free Software
+Foundation. On Debian systems, a copy of this license may be found in
+/usr/share/common-licenses/GPL.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644 (file)
index 0000000..f4d817d
--- /dev/null
@@ -0,0 +1,16 @@
+usr/sbin
+usr/bin
+bin
+sbin
+etc
+etc/network
+etc/init.d
+etc/cron.daily
+usr/share/doc/netbase
+usr/share/perl5
+usr/share/man/man1
+usr/share/man/man3
+usr/share/man/man4
+usr/share/man/man5
+usr/share/man/man8
+
diff --git a/debian/netbase.config b/debian/netbase.config
new file mode 100644 (file)
index 0000000..d804b0a
--- /dev/null
@@ -0,0 +1,22 @@
+#!/bin/sh -e
+
+# Source debconf library.
+. /usr/share/debconf/confmodule
+
+# Display upgrade notices
+if [ "$1" = "configure" -a "$2" != "" ]; then
+    for note in radius-ports-pre-3.05 \
+                portmap-restart-pre-3.11-2 \
+                init.d-split-pre-3.16-1 \
+               etc-network-interfaces-pre-3.17-1
+    do
+        ver=${note#*-pre-}
+        if dpkg --compare-versions "$2" lt "$ver"; then
+            db_input medium "netbase/upgrade-note/$note" || true
+        fi
+    done
+    db_go
+fi
+
+db_go
+
diff --git a/debian/netbase.init b/debian/netbase.init
new file mode 100644 (file)
index 0000000..5746432
--- /dev/null
@@ -0,0 +1,118 @@
+#!/bin/sh -e
+### BEGIN INIT INFO
+# Provides:          networking
+# Required-Start:    mountkernfs $local_fs
+# Required-Stop:
+# Should-Start:      ifupdown
+# Default-Start:     S
+# Default-Stop:      0 6
+### END INIT INFO
+
+PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
+
+[ -x /sbin/ifup ] || exit 0
+
+. /lib/lsb/init-functions
+
+spoofprotect_rp_filter() {
+    [ -e /proc/sys/net/ipv4/conf/all/rp_filter ] || return 1
+    RC=0
+    for f in /proc/sys/net/ipv4/conf/*/rp_filter; do
+       echo 1 > $f || RC=1
+    done
+    return $RC
+}
+
+spoofprotect() {
+    log_action_begin_msg "Setting up IP spoofing protection"
+    if spoofprotect_rp_filter; then
+       log_action_end_msg 0 "rp_filter"
+    else
+       log_action_end_msg 1
+    fi
+}
+
+ip_forward() {
+    log_action_begin_msg "Enabling packet forwarding"
+    if echo 1 > /proc/sys/net/ipv4/ip_forward; then
+        log_action_end_msg 0
+    else
+       log_action_end_msg 1
+    fi
+}
+
+syncookies() {
+    log_action_begin_msg "Enabling TCP SYN cookies"
+    if echo 1 > /proc/sys/net/ipv4/tcp_syncookies; then
+        log_action_end_msg 0
+    else
+       log_action_end_msg 1
+    fi
+}
+
+doopt() {
+    optname=$1
+    default=$2
+    opt=`grep "^$optname=" /etc/network/options || true`
+    if [ -z "$opt" ]; then
+       opt="$optname=$default"
+    fi
+    optval=${opt#$optname=}
+    if [ "$optval" = "yes" ]; then
+       eval $optname
+    fi
+}
+
+process_options() {
+    [ -e /etc/network/options ] || return 0
+    log_warning_msg "/etc/network/options is deprecated."
+    doopt spoofprotect yes
+    doopt syncookies no
+    doopt ip_forward no
+}
+
+case "$1" in
+start)
+       process_options
+       log_action_begin_msg "Configuring network interfaces"
+       if ifup -a; then
+           log_action_end_msg $?
+       else
+           log_action_end_msg $?
+       fi
+       ;;
+
+stop)
+       if sed -n 's/^[^ ]* \([^ ]*\) \([^ ]*\) .*$/\2/p' /proc/mounts | 
+               grep -qE '^(nfs[1234]?|smbfs|ncp|ncpfs|coda|cifs)$'; then
+           log_warning_msg "not deconfiguring network interfaces: network shares still mounted."
+           exit 0
+       fi
+
+       log_action_begin_msg "Deconfiguring network interfaces"
+       if ifdown -a; then
+           log_action_end_msg $?
+       else
+           log_action_end_msg $?
+       fi
+       ;;
+
+force-reload|restart)
+       process_options
+       log_action_begin_msg "Reconfiguring network interfaces"
+       ifdown -a || true
+       if ifup -a; then
+           log_action_end_msg $?
+       else
+           log_action_end_msg $?
+       fi
+       ;;
+
+*)
+       echo "Usage: /etc/init.d/networking {start|stop|restart|force-reload}"
+       exit 1
+       ;;
+esac
+
+exit 0
+
diff --git a/debian/netbase.postinst b/debian/netbase.postinst
new file mode 100644 (file)
index 0000000..92732d0
--- /dev/null
@@ -0,0 +1,137 @@
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+  . /usr/share/debconf/confmodule
+fi
+
+remove_options_file() {
+  [ -z "$2" -o ! -e /etc/network/options ] || return 0
+  if dpkg --compare-versions "$2" ge "4.22-1"; then
+    return 0
+  fi
+
+  # on which conditions should /etc/network/options be silently removed?
+}
+
+remove_old_files() {
+  rm -f /etc/cron.daily/netbase /etc/network/spoof-protect
+}
+
+kill_portmapper() {
+  if [ "$2" ] && dpkg --compare-versions $2 lt "3.11-2"; then
+    if /usr/bin/rpcinfo -u localhost portmapper >/dev/null 2>&1; then
+      # portmapper's still running. stop it.
+
+      if [ -x /bin/fuser ]; then
+        PID=$(/bin/fuser -n tcp sunrpc | sed 's/^.*: *//')
+      fi
+
+      if [ "$PID" ]; then
+        if [ ! -f /var/run/portmap.upgrade-state ]; then
+          echo >&2 "Remembering old rpc services... "
+          pmap_dump >/var/run/portmap.upgrade-state
+          echo >&2 "done."
+        fi
+        echo >&2 -n "Killing portmapper... "
+        kill $PID
+        echo >&2 "done."
+      fi
+    fi
+  fi
+}
+
+update_hosts_file() {
+  if [ -f /etc/hosts ] && ! grep -q "ip6-localhost" /etc/hosts; then
+    cat >>/etc/hosts <<-EOF
+       
+       # The following lines are desirable for IPv6 capable hosts
+       # (added automatically by netbase upgrade)
+       
+       ::1     ip6-localhost ip6-loopback
+       fe00::0 ip6-localnet
+       ff00::0 ip6-mcastprefix
+       ff02::1 ip6-allnodes
+       ff02::2 ip6-allrouters
+       ff02::3 ip6-allhosts
+EOF
+  fi
+}
+
+update_initd_networks() {
+  if [ "$2" ] && dpkg --compare-versions "$2" lt "3.17-1"; then
+    if [ -e /etc/init.d/network ]; then
+      cat >> /etc/init.d/network <<EOF
+
+# (added automatically by netbase upgrade)
+#
+# In new Debian installations, this file is deprecated in favour of
+# the ifup/ifdown commands (invoked from /etc/init.d/networking), which
+# can be configured from the file /etc/network/interfaces.
+#
+# If you are receiving SIOCADDRT errors, they can be avoided by adding
+# a netmask and interface to your "route add -net" lines. eg,
+#      route add -net 127.0.0.0
+# becomes:
+#      route add -net 127.0.0.0 netmask 255.0.0.0 lo
+#
+# Alternatively, these lines can simply be deleted if you don't use 2.0.x 
+# series kernels.
+EOF
+    fi
+  fi
+}
+
+fix_old_initscript() {
+  if [ -e /etc/init.d/netbase ]; then
+    mv /etc/init.d/netbase /etc/init.d/netbase.old
+  fi
+
+  if [ "$2" ] && dpkg --compare-versions "$2" lt "3.18-1"; then
+    # only do this for people who were running unstable
+    if dpkg --compare-versions "$2" ge "3.16-1"; then
+      echo >&2 "BUGFIX: Resetting runlevels at which /etc/init.d/networking is run."
+      update-rc.d -f networking remove > /dev/null 2>&1
+    fi
+
+    update-rc.d -f netbase remove > /dev/null 2>&1
+  fi
+}
+
+update_rc() {
+  update-rc.d networking start 35 0 6 . > /dev/null
+}
+
+case "$1" in
+    configure)
+    #remove_options_file "$@"
+    remove_old_files
+    kill_portmapper "$@"
+    update_hosts_file
+    update_initd_networks "$@"
+    fix_old_initscript "$@"
+    update_rc
+    ;;
+
+    abort-upgrade|abort-remove|abort-deconfigure)
+    ;;
+
+    *)
+    echo "postinst called with unknown argument '$1'" >&2
+    exit 1
+    ;;
+esac
+
+#DEBHELPER#
+
+# shouldn't be necessary? but without it the postinst just hangs on dpkg -i :(
+#
+# do i have to do this right at the end, or can i do it earlier, for that
+# matter?
+#
+# i may be meant to redirect 3>&1 or something equally weird here :-/
+# maybe this isn't necessary anymore (since there shouldn't be any daemons
+# in this postinst anymore), but who knows?
+#
+if [ "$1" = "configure" ]; then
+    db_stop 
+fi
diff --git a/debian/netbase.postrm b/debian/netbase.postrm
new file mode 100644 (file)
index 0000000..446aa32
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh -e
+
+case "$1" in
+    remove)
+    ;;
+
+    purge)
+    update-rc.d networking remove > /dev/null
+    ;;
+
+    upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+    ;;
+
+    *)
+    echo "postrm called with unknown argument '$1'" >&2
+    exit 1
+    ;;
+esac
+
+#DEBHELPER#
diff --git a/debian/netbase.preinst b/debian/netbase.preinst
new file mode 100644 (file)
index 0000000..1bceebe
--- /dev/null
@@ -0,0 +1,32 @@
+#!/bin/sh -e
+
+create_etc_network() {
+  [ -d /etc/network/ ] || mkdir -p /etc/network/
+}
+
+create_options_file() {
+  if [ ! -f /etc/network/options ]; then
+       cat <<-EOC >/etc/network/options
+       ip_forward=no
+       spoofprotect=yes
+       syncookies=no
+       EOC
+  fi
+}
+
+case "$1" in
+    install)
+    create_etc_network
+    create_options_file
+    ;;
+
+    upgrade|abort-upgrade)
+    ;;
+
+    *)
+    echo "preinst called with unknown argument '$1'" >&2
+    exit 1
+    ;;
+esac
+
+#DEBHELPER#
diff --git a/debian/netbase.templates b/debian/netbase.templates
new file mode 100644 (file)
index 0000000..424f0b9
--- /dev/null
@@ -0,0 +1,44 @@
+Template: netbase/upgrade-note/radius-ports-pre-3.05
+Type: note
+_Description: Important hint for users of radius software
+ The official port numbers of the radius service have been changed from
+ 1645 and 1646 to 1812 and 1813. If you use the radius service please make
+ sure that the client and server software both use the same port numbers.
+
+Template: netbase/upgrade-note/portmap-restart-pre-3.11-2
+Type: note
+_Description: The old portmapper is still running.
+ The old portmapper is still running. This will cause problems, mainly that
+ "/etc/init.d/portmap stop" won't actually do anything. To fix this, I'm
+ going to try to forcibly stop portmap, and then restart it.
+
+Template: netbase/upgrade-note/init.d-split-pre-3.16-1
+Type: note
+_Description: /etc/init.d/netbase has been split.
+ /etc/init.d/netbase is no longer required or used.
+ .
+ /etc/init.d/portmap (provided by the portmap package) now handles stopping
+ and starting the portmapper, /etc/init.d/inetd (provided by the
+ netkit-inetd package) handles stopping and starting inetd, and
+ /etc/init.d/networking handles spoof protection.
+
+Template: netbase/upgrade-note/etc-network-interfaces-pre-3.17-1
+Type: note
+_Description: /etc/init.d/network superseded by /etc/network/interfaces
+ /etc/init.d/network is no longer directly supported. You may, of course,
+ continue using it to setup your networking, however new Debian installs
+ will use the ifup/ifdown commands to configure network interfaces based on
+ the settings in /etc/network/interfaces.
+ .
+ If you do convert to using /etc/network/interfaces in place of
+ /etc/init.d/network you will probably want to remove /etc/init.d/network
+ and the /etc/rcS.d/S40network symlink. These will not be touched by
+ netbase or other Debian packages in future.
+ .
+ See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments
+ in /etc/network/interfaces, for information on how to convert your network
+ configuration to this new format.
+ .
+ Note that the old default /etc/init.d/network used to add a route for the
+ loopback interface. This is no longer necessary for 2.2.x series kernels,
+ and will result in a (non-fatal) SIOCADDRT error message at bootup.
diff --git a/debian/networking.init.d b/debian/networking.init.d
new file mode 100644 (file)
index 0000000..1096540
--- /dev/null
@@ -0,0 +1,164 @@
+#!/bin/sh
+#
+# start/stop networking daemons.
+
+if ! [ -x /sbin/ifup ]; then
+    exit 0
+fi
+
+if [ -e /etc/network/spoof-protect ]; then
+    . /etc/network/spoof-protect
+fi
+
+spoofprotect_rp_filter () {
+    # This is the best method: turn on Source Address Verification and get
+    # spoof protection on all current and future interfaces.
+    
+    if [ -e /proc/sys/net/ipv4/conf/all/rp_filter ]; then
+        for f in /proc/sys/net/ipv4/conf/*/rp_filter; do
+            echo 1 > $f
+        done
+        return 0
+    else
+        return 1
+    fi
+}
+
+spoofprotect_ipfwadm () {
+    # rules for linux 2.0.x and 2.1.x (x < 102) kernels
+
+    # can't do ipfwadm based spoof protection if we don't have the appropriate
+    # configuration info.
+
+    if [ -z "$LOCAL_IPS" -o -z "$LOCAL_IFACES" ]; then return 1; fi
+
+    #what about 127.0.0.0/8 ?
+    #deny incoming packets pretending to be from our own system.
+    #set your own IP address below (or use `hostname -i` to set it).
+
+    if [ -e /proc/net/ip_input ]; then
+        # delete and re-add entry (this way we don't get duplicate entries)
+        for ip in $LOCAL_IPS; do
+            for iface in $LOCAL_IFACES; do
+                ipfwadm -I -d deny -o -P all -S $ip -W $iface -D 0/0 \
+                    2>/dev/null || true
+                ipfwadm -I -i deny -o -P all -S $ip -W $iface -D 0/0 >/dev/null
+            done
+        done
+
+        return 0
+    else
+        return 1
+    fi
+}
+
+spoofprotect_ipchains () {
+    # rules for linux 2.1.x (x > 101) kernels
+
+    # can't do ipfwadm based spoof protection if we don't have the appropriate
+    # configuration info.
+
+    if [ -z "$LOCAL_IPS" ]; then return 1; fi
+
+    if [ -e /proc/net/ip_fwchains ]; then
+        for ip in $LOCAL_IPS; do
+           ipchains -D input -j DENY -l -s $ip -i ! lo 2>/dev/null || true
+           ipchains -A input -j DENY -l -s $ip -i ! lo
+        done
+
+        return 0
+    else
+        return 1
+    fi
+}
+
+spoofprotect () {
+    echo -n "Setting up IP spoofing protection: "
+    if spoofprotect_rp_filter; then
+        echo "rp_filter."
+    elif spoofprotect_ipfwadm; then
+        echo "ipfwadm."
+    elif spoofprotect_ipchains; then
+        echo "ipchains."
+    else
+        echo "FAILED"
+    fi
+}
+
+ip_forward () {
+    if [ -e /proc/sys/net/ipv4/ip_forward ]; then
+        echo -n "Enabling packet forwarding: "
+        echo 1 > /proc/sys/net/ipv4/ip_forward
+        echo "done."
+    fi
+}
+
+syncookies () {
+    if [ -e /proc/sys/net/ipv4/tcp_syncookies ]; then
+        echo -n "Enabling TCP/IP SYN cookies: "
+        echo 1 > /proc/sys/net/ipv4/tcp_syncookies
+        echo "done."
+    fi
+}
+
+doopt () {
+    optname=$1
+    default=$2
+    opt=`grep "^$optname=" /etc/network/options`
+    if [ -z "$opt" ]; then
+        opt="$optname=$default"
+    fi
+    optval=${opt#$optname=}
+    if [ "$optval" = "yes" ]; then
+        eval $optname
+    fi
+}
+
+case "$1" in
+    start)
+       doopt spoofprotect yes
+        doopt syncookies no
+        doopt ip_forward no
+
+        echo -n "Configuring network interfaces: "
+        ifup -a
+       echo "done."
+       ;;
+    stop)
+        if sed -n 's/^[^ ]* \([^ ]*\) \([^ ]*\) .*$/\1 \2/p' /proc/mounts | 
+          grep -q "^/ nfs$"
+        then
+            echo "NOT deconfiguring network interfaces: / is an NFS mount"
+        elif sed -n 's/^[^ ]* \([^ ]*\) \([^ ]*\) .*$/\1 \2/p' /proc/mounts |  
+          grep -q "^/ smbfs$"
+        then
+            echo "NOT deconfiguring network interfaces: / is an SMB mount"
+       elif sed -n 's/^[^ ]* \([^ ]*\) \([^ ]*\) .*$/\2/p' /proc/mounts | 
+          grep -qE '^(nfs|smbfs)$'
+        then
+            echo "NOT deconfiguring network interfaces: NFS/SMB shares still mounted."
+        else
+            echo -n "Deconfiguring network interfaces: "
+            ifdown -a
+           echo "done."
+        fi
+       ;;
+    reload)
+       ;;
+    force-reload)
+       $0 restart
+       ;;
+    restart)
+        echo -n "Reconfiguring network interfaces: "
+        ifdown -a
+        ifup -a
+       echo "done."
+       ;;
+    *)
+       echo "Usage: /etc/init.d/networking {start|stop|reload|restart}"
+       exit 1
+       ;;
+esac
+
+exit 0
+
diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in
new file mode 100644 (file)
index 0000000..df6dace
--- /dev/null
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] netbase.templates
diff --git a/debian/po/ca.po b/debian/po/ca.po
new file mode 100644 (file)
index 0000000..75dede3
--- /dev/null
@@ -0,0 +1,138 @@
+# netbase (debconf) translation to Catalan.
+# Copyright (C) 2004 Free Software Foundation, Inc.
+# Aleix Badia i Bosch <abadia@ica.es>, 2004
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase_4.16_templates\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2004-04-04 19:46GMT\n"
+"Last-Translator: Aleix Badia i Bosch <abadia@ica.es>\n"
+"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Consell important pels usuaris de programari del radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"S'han modificat els nombres de port oficials del servei de radius. S'ha "
+"canviat del 1645 al 1646 i del 1812 al 1813. Si utilitzeu el servei de "
+"radius assegureu-vos que el programari del client i el del servidor "
+"utilitzen el mateix nombre de port."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Encara s'està executant un portmapper antic."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Encara s'està executant el portmapper antic. Provocarà, bàsicament, que "
+"l'ordre \"/etc/init.d/portmap stop\" no faci res. Per solucionar el problema "
+"s'intentarà forçar l'aturada del portmap i posteriorment reiniciar-lo."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "S'ha dividit el fitxer /etc/init.d/netbase."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "El fitxer /etc/init.d/netbase ja no serà necessari."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"El fitxer /etc/init.d/portmap (proporcionat pel paquet portmap) gestiona "
+"l'aturada i la iniciació del portmapper. El fitxer /etc/init.d/inetd "
+"(proporcionat pel paquet netkit-inetd) gestiona l'aturada i la iniciació de "
+"l'inetd. El fitxer /etc/init.d/networking gestiona la protecció contra "
+"l'spoof."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr ""
+"El fitxer /etc/init.d/network es reemplaçarà per l'/etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"El fitxer /etc/init.d/network ja no se suportarà directament. El podreu "
+"continuar utilitzant per configurar la xarxa, tot i això, la instal·lació de "
+"Debian utilitzarà les ordres ifup/ifdown per configurar les interfícies de "
+"la xarxa basades en els paràmetres del fitxer /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Si decidiu utilitzar l'/etc/network/interfaces en comptes de l'/etc/init.d/"
+"network probablement voldreu suprimir el fitxer /etc/init.d/network i "
+"l'enllaç simbòlic /etc/rcS.d/S40network. Ni el netbase ni cap altre paquet "
+"futur de Debian ho modificarà."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Per veure informació sobre com actualitzar la configuració de la xarxa al "
+"nou format, vegeu les pàgines de manual de l'interfaces(5), ifup(8) i ifdown"
+"(8) i també els comentaris del fitxer /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Recordeu que el fitxer /etc/init.d/network antic acostumava a afegir una "
+"ruta per a la interfície loopback. Ja no serà necessari per a les versions "
+"2.2.x i provocarà el missatge d'error SIOCADDRT (no és un error important) a "
+"l'arrencada."
diff --git a/debian/po/cs.po b/debian/po/cs.po
new file mode 100644 (file)
index 0000000..2765454
--- /dev/null
@@ -0,0 +1,144 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2004-07-19 23:41+0200\n"
+"Last-Translator: Miroslav Jezbera <jezberam@phoenix.inf.upol.cz>\n"
+"Language-Team: Czech <provoz@debian.cz>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-2\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Dùle¾itá rada pro u¾ivatele programu radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Byla zmìnìna oficiální èísla portù slu¾by radius z 1645 a 1646 na 1812 a "
+"1813. Pokud pou¾íváte slu¾bu radius, ujistìte se prosím, ¾e serverová i "
+"klientská èást programu pou¾ívá stejná èísla portù."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Starý portmapper stále bì¾í."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Starý portmapper stále bì¾í. To zpùsobí problémy, zvlá¹tì kdy¾ \"/etc/init.d/"
+"portmap stop\" aktuálnì nic neudìlá. Pro opravení tohoto se pokusím násilnì "
+"zastavit portmap a poté ho znovu spustit."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase byl rozdìlen."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase není dále vy¾adován nebo pou¾íván."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap (poskytovaný balíkem portmap) nyní obsluhuje zastavování "
+"a spou¹tìní programu portmapper, /etc/init.d/inetd (poskytovaný balíkem "
+"netkit-inetd) obsluhuje zastavování a spou¹tìní programu inetd a ochranu "
+"pøed  fal¹ováním zdrojové IP adresy se stará /etc/init.d/networking"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network je nahrazen souborem /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network u¾ není nadále pøímo podporován. Samozøejmì ho mù¾ete "
+"dále pou¾ívat k nastavování sítì, nicménì nová debianovská instalace bude "
+"pou¾ívat ifup/ifdown na nastavení sí»ových rozhraní podle nastavení "
+"uvedených v /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Pokud místo /etc/init.d/network budete pou¾ívat /etc/network/interfaces, pak "
+"zøejmì budete chtít smazat /etc/init.g/network a symbolický odkaz /etc/rcS.d/"
+"S40network. Ani netbase ani jiný Debianovský balík nebude tyto soubory ji¾ "
+"pou¾ívat."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Nahléïnìte do manuálových stránek interfaces(5), ifup(8), and ifdown(8) a "
+"komentáøù v /etc/network/interfaces, pro informace jak pøedìlat va¹i sí»ovou "
+"konfiguraci na tento nový formát."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Starý výchozí /etc/init.d/network pøidával smìrování pro loopback rozhraní. "
+"To ji¾ není nutné pro jádra øady 2.2.x a vyústí to v (nezáva¾nou) SIOCADDRT "
+"chybovou zprávu pøi startu."
diff --git a/debian/po/da.po b/debian/po/da.po
new file mode 100644 (file)
index 0000000..a4530b8
--- /dev/null
@@ -0,0 +1,145 @@
+# translation of netbase_4.16_templates.po to Danish
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans#
+#    Developers do not need to manually edit POT or PO files.
+# Claus Hindsgaul <claus_h@image.dk>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase_4.16_templates\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2004-02-28 23:26+0100\n"
+"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
+"Language-Team: Danish <dansk@klid.dk>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.2\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Vigtige tips til brugere af radius-programmerne"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Radius-servicens  officielle portnummre er blevet ændret fra 1645-1646 til "
+"1812-1813. Hvis du bruger radius-services, skal du sikre dig at klient- og "
+"server-programmerne benytter samme portnumre."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Den gamle portmapper kører stadig."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Den gamle portmapper kører stadig. Det vil skabe problemer, især at \"/etc/"
+"init.d/portmap stop\" ikke vil have nogen virkning. For at rette dette, vil "
+"jeg forsøge at tvinge portmap til at stoppe og derefter genstarte den."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase er blevet delt op."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase benyttes ikke længere."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap (en del af portmap-pakken) håndterer nu start og stop af "
+"portmapperen, /etc/init.d/inetd (en del af pakken netkit-inetd) håndterer "
+"start og stop af inetd og /etc/init.d/networking håndterer spoof-"
+"beskyttelsen."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network er overflødiggjort af /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network understøttes ikke længere direkte. Du kan naturligvis "
+"fortsætte med at bruge den til at sætte netværket op, men nye "
+"Debianinstallationer vil bruge kommandoerne ifup og ifdown til at sætte "
+"netkort op baseret på indstillingerne i /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Hvis du går over til at bruge /etc/network/interfaces i stedet fo /etc/init."
+"d/network, vil du nok også fjerne lænkerne  /etc/init.d/network og /etc/rcS."
+"d/S40network. Disse vil ikke blive ændret af netbase eller andre "
+"Debianpakker i fremtiden."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Se manualsiderne til interfaces(5), ifup(8) og ifdown(8) samt kommentarerne "
+"i /etc/network/interfaces for flere oplysninger om hvordan du kan overføre "
+"din netværksopsætning til det nye format."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Bemærk at den gamle standard /etc/init.d/network plejede at tilføje en rute "
+"til loopback-grænsefladen. Det er ikke længere nødvendigt for 2.2.x-kerner, "
+"og vil resultere i en (harmløs) SIOCADDRT-fejlbesked under opstarten."
diff --git a/debian/po/de.po b/debian/po/de.po
new file mode 100644 (file)
index 0000000..5a10761
--- /dev/null
@@ -0,0 +1,150 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Wichtiger Hinweis für Nutzer von Radius-Software"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Die offiziellen Portnummern für den Radius-Service wurde von 1645 und 1646 "
+"nach 1812 und 1813 geändert. Wenn Sie den Radius-Service verwenden, dann "
+"stellen Sie sicher, das Client und Server jeweils die gleichen Ports "
+"verwenden."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Der alte Portmapper läuft noch."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Der alte Portmapper läuft noch. Dies wird Probleme verursachen, da auch »/"
+"etc/init.d/portmap stop« im Moment nicht funktioniert. Um dieses Problem zu "
+"lösen wird jetzt versucht den Portmapper auf eine andere Art zu beenden und "
+"neu zu starten."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase wurde aufgeteilt"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "Die Datei /etc/init.d/netbase wird nicht mehr benötigt und benutzt."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"Die Datei /etc/init.d/portmap (aus dem Paket portmap) ist jetzt für das "
+"Starten und Stoppen des Portmappers verantwortlich, die Datei /etc/init.d/"
+"inetd (aus dem Paket netkit-inetd) startet den inetd, /etc/init.d/networking "
+"ist für den Spoofing-Schutz verantwortlich."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network wurde durch /etc/network/interfaces ersetzt"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"Die Datei /etc/init.d/network wird nicht mehr direkt unterstützt. Sie können "
+"Sie natürlich weiterhin für die Verwaltung Ihrer Netzwerkeinstellungen "
+"nutzen. Bei einer neuen Debian-Installation werden jedoch ifup/ifdown-"
+"Kommandos (basierend auf den Einstellungen in der Datei /etc/network/"
+"interfaces) zum Konfigurieren des Netzwerks verwendet."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Wenn Sie auf die neue Datei umstellen wollen, dann können Sie die Datei /etc/"
+"init.d/network und den symbolischen Link /etc/rcS.d/S40network löschen. "
+"Diese Dateien werden nicht mehr von netbase oder anderen Debian-Paketen "
+"benutzt."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Sehen Sie in die Handbuchseiten (man) von interfaces(5), ifup(8) und ifdown"
+"(8) und die Kommentare in /etc/network/interfaces hinsichtlich "
+"Informationen, wie Sie Ihre Netzwerkkonfiguration in dieses neue Format "
+"konvertieren können."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Beachten Sie, dass früher standardmäßig /etc/init.d/network eine Route für "
+"die Loopback-Schnittstelle gesetzt hat. Dies ist in Kernel der 2.2.x-er "
+"Serie nicht mehr notwendig und führt zu einer (nicht-kritischen) SIOCADDRT "
+"Fehlermeldung beim Starten des Systems."
diff --git a/debian/po/el.po b/debian/po/el.po
new file mode 100644 (file)
index 0000000..ac2bfa4
--- /dev/null
@@ -0,0 +1,152 @@
+# translation of el.po to Greek
+# translation of templates.po to Greek
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans#
+#    Developers do not need to manually edit POT or PO files.
+# Konstantinos Margaritis <markos@debian.org>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: el\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2004-03-28 22:08EEST\n"
+"Last-Translator: Konstantinos Margaritis <markos@debian.org>\n"
+"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.0.2\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Σημαντική πληροφορία για τους χρήστες του λογισμικου radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Οι επίσημες θύρες της υπηρεσίας radius αλλάξαν από 1645 και 1646 σε 1812 και "
+"1813 αντίστοιχα. Αν χρησιμοποιείτε την υπηρεσία radius, παρακαλώ βεβαιωθείτε "
+"ότι το λογισμικό του πελάτη και του εξυπηρετητή χρησιμοποιούν τις ίδιες "
+"θύρες."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Τρέχει ακόμη ο παλιός portmapper."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Τρέχει ακόμη ο παλιός portmapper. Αυτό θα προκαλέσει προβλήματα, κυρίως το "
+"ότι η εντολή \"/etc/init.d/portmap stop\" δε θα έχει αποτέλεσμα. Για να "
+"διορθωθεί το πρόβλημα, θα γίνει προσπάθεια απότομου τερματισμού του portmap "
+"και επανεκκινησή του."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "Το σενάριο /etc/init.d/netbase έχει διασπαστεί."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "Το σενάριο /etc/init.d/netbase δεν είναι πλέον απαραίτητο."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"Το σενάριο /etc/init.d/portmap (από το πακέτο portmap) χειρίζεται πλέον την "
+"εκκίνηση και τον τερματισμό του portmapper, ενώ το σενάριο /etc/init.d/inetd "
+"(από το πακέτο netkit-inetd) χειρίζεται πλέον την εκκίνηση και τον "
+"τερματισμό του inetd, και το σενάριο /etc/init.d/networking χειρίζεται την "
+"προστασία από εξαπάτηση διευθύνσεων IP (IP spoof protection)."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr ""
+"Το /etc/init.d/network έχει υπερκεραστεί από το /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"Το σενάριο /etc/init.d/network δεν υποστηρίζεται άμεσα πλέον. Φυσικά "
+"μπορείτε να συνεχίσετε να το χρησιμοποιείτε για τη ρύθμιση του δικτύου σας, "
+"αλλά στο εξής, οι νέες εγκαταστάσεις του Debian θα χρησιμοποιούν τις εντολές "
+"ifup/ifdown για τη ρύθμιση των διασυνδέσεων δικτύου βάσει του αρχείου /etc/"
+"network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Αν θέλετε να αρχίσετε να χρησιμοποιείτε το /etc/network/interfaces αντί του /"
+"etc/init.d/network, θα πρέπει να διαγράψετε το αρχείο /etc/init.d/network "
+"και το δεσμό /etc/rcS.d/S40network. Αυτά δεν πρόκειται να διαγραφούν από το "
+"netbase ή κάποιο άλλο πακέτο του Debian στο μέλλον."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Δείτε τις σελίδες οδηγιών interfaces(5), ifup(8) και ifdown(8), και τα "
+"σχόλια στο αρχείο /etc/network/interfaces, για οδηγίες για το πώς θα "
+"μετατρέψετε τις ρυθμίσεις του δικτύου σας στη νέα μορφή."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Σημειώστε ότι το παλιό σενάριο /etc/init.d/network, όριζε μια δρομολόγηση "
+"για τη διασύνδεση loopback. Αυτό δεν είναι πλέον αναγκαίο για τους πυρήνες "
+"2.2.x και θα ορίσει ένα (μη μοιραίο) μήνυμα λάθους SIOCADDRT κατά την "
+"εκκίνηση."
diff --git a/debian/po/es.po b/debian/po/es.po
new file mode 100644 (file)
index 0000000..ee7d1e2
--- /dev/null
@@ -0,0 +1,150 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+# Carlos Valdivia Yagüe <valyag@dat.etsit.upm.es>, 2003
+# Javier Fernández-Sanguino <jfs@debian.org>, 2005
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase 4.20\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2005-03-08 22:34+0100\n"
+"Last-Translator: Javier Fernández-Sanguino <jfs@debian.org>\n"
+"Language-Team: Debian L10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Consejo importante para los usuarios de radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Los puertos oficiales del servicio de radius han cambiado del 1645 y 1646 al "
+"1812 y 1813. Si utiliza el servicio de radius, asegúrese de que tanto el "
+"cliente como el servidor usen el mismo puerto."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Aún se está ejecutando el portmapper antiguo"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Aún está funcionando el portmapper antiguo. Esto le causará problemas, entre "
+"otros el hecho de que «/etc/init.d/portmap stop» no parará el servicio. Se "
+"se va a intentar parar el portmapper a la fuerza para arreglaro, y se "
+"reiniciará a continuación."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "Se ha troceado /etc/init.d/netbase"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "Ya no se utiliza /etc/init.d/netbase."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap (incluido en el paquete portmap) inicia y para el "
+"portmapper, /etc/init.d/inetd (incluido en el paquete netkit-inetd) inicia y "
+"para el demonio inetd, y /etc/init.d/networking maneja la protección contra "
+"spoofing."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network ha sido reemplazado por /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"Ya no se da soporte a /etc/init.d/network. Por supuesto, puede seguir "
+"usándolo para manejar su configuración de red, sin embargo, las "
+"instalaciones nuevas de Debian usarán las órdenes «ifup/ifdown» para "
+"configurar las interfaces de red, para ello se basarán en el contenido de /"
+"etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Si pasa a usar /etc/network/interfaces en lugar de /etc/init.d/network es "
+"probable que quiera borrar /etc/init.d/network y el enlace simbólico /etc/"
+"rcS.d/S40network. Estos ficheros y enlaces ya no los tocará netbase u otros "
+"paquetes Debian en el futuro."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Para obtener información sobre la conversión de la configuración de red al "
+"nuevo formato, vea las páginas de manual interfaces(5), ifup(8), e ifdown"
+"(8), y los comentarios en /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Tenga en cuenta que anteriormente /etc/init.d/network solía añadir una ruta "
+"para la interfaz de «loopback». Esto ya no es necesario a partir de los "
+"núcleos de la serie 2.2 y causará un mensaje de error SIOCADDRT al arrancar, "
+"aunque éste no es grave."
diff --git a/debian/po/fr.po b/debian/po/fr.po
new file mode 100644 (file)
index 0000000..24d07d2
--- /dev/null
@@ -0,0 +1,149 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase 4.10\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2003-06-19 16:06+0200\n"
+"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Information importante destinée aux utilisateurs de logiciels radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Les numéros de port officiels du service radius sont passés de 1645 et 1646 "
+"à 1812 et 1813. Si vous utilisez ce service, assurez-vous que client et "
+"serveur utilisent les mêmes numéros de ports."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "L'ancien répartiteur des ports (« portmapper ») fonctionne encore."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"L'ancien répartiteur des ports fonctionne encore. Cela posera des problèmes, "
+"et principalement celui-ci : « /etc/init.d/portmap stop » n'aura aucun "
+"effet. Pour corriger ce problème, je vais forcer l'arrêt de portmap pour le "
+"redémarrer ensuite."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase a été scindé."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase n'est plus demandé ni utilisé."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap, fourni par le paquet portmap, gère désormais l'arrêt et "
+"le démarrage du répartiteur des ports ; /etc/init.d/inetd, fourni par le "
+"paquet netkit-inetd, gère l'arrêt et le démarrage d'inetd et /etc/init.d/"
+"networking s'occupe de la protection contre les usurpations d'adresse IP "
+"(« spoof protection »)."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network a été remplacé par /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network n'est plus directement utilisé. Vous pouvez bien entendu "
+"encore l'utiliser pour configurer votre réseau, mais les nouvelles "
+"installations de Debian se servent des commandes ifup et ifdown pour "
+"configurer les interfaces réseau selon les paramètres contenus dans le "
+"fichier /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Si vous choisissez d'utiliser /etc/network/interfaces au lieu de /etc/init.d/"
+"network, vous voudrez probablement supprimer /etc/init.d/network et le lien "
+"symbolique /etc/rcS.d/S40network. À l'avenir, netbase ou d'autres paquets "
+"Debian délaisseront ces fichiers."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Veuillez consulter les pages de manuel interfaces(5), ifup(8) et ifdown(8) "
+"ainsi que les commentaires dans le fichier /etc/network/interfaces pour plus "
+"d'informations sur la méthode de conversion de votre configuration vers ce "
+"nouveau format."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Il faut remarquer que l'ancien script /etc/init.d/network ajoutait une route "
+"pour l'interface « loopback ». Ce n'est plus nécessaire avec les noyaux de "
+"la série 2.2.x ; et cela provoque un message d'erreur (non fatale) SIOCADDRT "
+"au démarrage de la machine."
diff --git a/debian/po/it.po b/debian/po/it.po
new file mode 100644 (file)
index 0000000..1737da2
--- /dev/null
@@ -0,0 +1,144 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Suggerimento importante per chi usa software radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"I numeri di porta ufficiali del servizio radius sono stati cambiati da 1645 "
+"e 1646 a 1812 e 1813. Se usate il servizio radius assicuratevi che il "
+"software di client e quello di server usino gli stessi numeri di porta."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Il vecchio portmapper sta ancora girando."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Il vecchio portmapper sta ancora girando, e questo potrebbe causare dei "
+"problemi; principalmente, \"/etc/init.d/portmap stop\" non funzionerà. Per "
+"correggerlo, cercherò di fermare forzatamente portmap e poi riavviarlo."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase è stato diviso."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase non è più necessario, nè viene usato."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap ora gestisce l'avvio e lo spengimento del portmapper, /"
+"etc/init.d/inetd gestisce l'avvio e lo spengimento di inetd, e /etc/init.d/"
+"networking la protezione contro lo spoofing."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network sostituito da /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network non viene più supportato direttamente. Potete, "
+"ovviamente, continuare ad usarlo per impostare la rete, ma le nuove "
+"installazioni di Debian useranno i comandi ifup/ifdown per configurare le "
+"interfacce di retre, basandosi sulle impostazioni in /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Notate che lo script /etc/init.d/network di default aggiunge una route per "
+"l'interfaccia di loopback. Per i kernel della serie 2.2.x questo non è più "
+"necessario, e porterà ad un errore SIOCADDRT all'avvio del sistema."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Vedete le man page interfaces(5), ifup(8), e ifdown(8) e i commenti in /etc/"
+"network/interfaces per informazioni su come convertire la configurazione "
+"della rete nel nuovo formato."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Il vecchio default /etc/init.d/network aggiungeva una route anche per "
+"l'interfaccia di loopback, che non è più necessaria per i kernel 2.2.x, e "
+"porterà ad un errore SIOCADDRT all'avvio del sistema, anche se non dà "
+"problemi."
diff --git a/debian/po/ja.po b/debian/po/ja.po
new file mode 100644 (file)
index 0000000..db0d57c
--- /dev/null
@@ -0,0 +1,145 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2003-09-11 23:09+0900\n"
+"Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
+"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=EUC-JP\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "radius ¥½¥Õ¥È¥¦¥§¥¢¤Î¥æ¡¼¥¶¤Ø½ÅÍפʤªÃΤ餻"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"radius ¥µ¡¼¥Ó¥¹¤Î¸ø¼°¤Ê¥Ý¡¼¥ÈÈÖ¹æ¤Ï 1645 ¤È 1646 ¤«¤é¡¢1812 ¤È 1813 ¤ËÊѹ¹¤µ"
+"¤ì¤Þ¤·¤¿¡£radius ¥µ¡¼¥Ó¥¹¤ò»È¤Ã¤Æ¤¤¤ë¤Î¤Ç¤¢¤ì¤Ð¡¢¥¯¥é¥¤¥¢¥ó¥È¤ª¤è¤Ó¥µ¡¼¥Ð¥½¥Õ"
+"¥È¥¦¥§¥¢¤ÎξÊý¤¬Æ±¤¸¥Ý¡¼¥ÈÈÖ¹æ¤ò»È¤Ã¤Æ¤¤¤ë¤³¤È¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "¸Å¤¤¥Ý¡¼¥È¥Þ¥Ã¥Ñ¡¼¤¬¤Þ¤ÀÆ°ºî¤·¤Æ¤¤¤Þ¤¹¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"¸Å¤¤¥Ý¡¼¥È¥Þ¥Ã¥Ñ¡¼¤¬¤Þ¤ÀÆ°ºî¤·¤Æ¤¤¤Þ¤¹¡£¤³¤ì¤Ï¼ç¤Ë \"/etc/init.d/portmap stop"
+"\" ¤¬¼ÂºÝ¤Ë¤Ï²¿¤âµ¯¤­¤Ê¤¤¤È¤¤¤¦ÌäÂê¤ò°ú¤­µ¯¤³¤·¤Þ¤¹¡£¤³¤ì¤ò½¤Àµ¤¹¤ë¤¿¤á¤Ë¡¢¶¯"
+"À©Åª¤Ë portmap ¤òÄä»ß¤¹¤ë¤³¤È¤ò»î¤ß¤Æ¡¢¤½¤ì¤«¤é¤½¤ì¤òºÆµ¯Æ°¤·¤Þ¤¹¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase ¤Ïʬ³ä¤µ¤ì¤Þ¤·¤¿¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase ¤Ï¤â¤¦É¬ÍפǤϤʤ¯¡¢ÍøÍѤµ¤ì¤Þ¤»¤ó¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap (portmap ¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤ÆÄ󶡤µ¤ì¤ë) ¤Ï¸½ºß¤Ç¤Ï¥Ý¡¼¥È"
+"¥Þ¥Ã¥Ñ¡¼¤ÎÄä»ß¤È³«»Ï¤òÁàºî¤·¡¢/etc/init.d/inetd (netkit-inetd ¥Ñ¥Ã¥±¡¼¥¸¤Ë"
+"¤è¤Ã¤ÆÄ󶡤µ¤ì¤ë) ¤Ï inetd ¤ÎÄä»ß¤È½ªÎ»¤òÁàºî¤·¡¢/etc/init.d/networking ¤Ï¥¹"
+"¥×¡¼¥Õ¤ÎËɸæ¤òÁàºî¤·¤Þ¤¹¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network ¤Ï /etc/network/interfaces ¤Ë¤è¤Ã¤ÆÇÑ´þ¤µ¤ì¤Þ¤¹"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network ¤Ï¤â¤¦¤Þ¤Ã¤¿¤¯¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¤â¤Á¤í¤ó¤¢¤Ê¤¿¤Î"
+"¥Í¥Ã¥È¥ï¡¼¥¯¤Î¥»¥Ã¥È¥¢¥Ã¥×¤Ë»È¤¤Â³¤±¤ë¤³¤È¤Ï²Äǽ¤Ç¤¹¤¬¡¢¿·¤·¤¤ Debian ¥¤¥ó¥¹"
+"¥È¡¼¥ë¤Ç¤Ï¥Í¥Ã¥È¥ï¡¼¥¯¥¤¥ó¥¿¡¼¥Õ¥§¥¤¥¹¤ÎÀßÄê¤Ë¡¢/etc/network/interfaces ¤ÎÀß"
+"Äê¤Ë´ð¤Å¤¯ ifup/ifdown ¥³¥Þ¥ó¥É¤ò»È¤¤¤Þ¤¹¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"/etc/init.d/network ¤ÎÂå¤ï¤ê¤Ë /etc/network/interfaces ¤ò»È¤¦¤è¤¦ÊÑ´¹¤¹¤ë¤Î¤Ç"
+"¤¢¤ì¤Ð¡¢¤ª¤½¤é¤¯ /etc/init.d/network ¤ª¤è¤Ó /etc/rcS.d/S40network ¥·¥ó¥Ü¥ê¥Ã"
+"¥¯¥ê¥ó¥¯¤òºï½ü¤·¤¿¤¤¤³¤È¤Ç¤·¤ç¤¦¡£¤³¤ì¤é¤Ï netbase ¤ä¤½¤Î¾¤Î Debian ¥Ñ¥Ã¥±¡¼"
+"¥¸¤Ç¤Ïº£¸åÁàºî¤µ¤ì¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"¤¢¤Ê¤¿¤Î¥Í¥Ã¥È¥ï¡¼¥¯ÀßÄê¤ò¤³¤Î¿·¤·¤¤·Á¼°¤ËÊÑ´¹¤¹¤ëÊýË¡¤Î¾ðÊó¤Ë¤Ä¤¤¤Æ¤Ï¡¢"
+"interfaces(5)¡¢ifup(8)¡¢ifdown(8)¤Î¥Þ¥Ë¥å¥¢¥ë¥Ú¡¼¥¸¤È /etc/network/"
+"interfaces ¤Ë¤¢¤ë¥³¥á¥ó¥È¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"¸Å¤¤¥Ç¥Õ¥©¥ë¥È¤Î /etc/init.d/network ¤Ç¤Ï¥ë¡¼¥×¥Ð¥Ã¥¯¥¤¥ó¥¿¡¼¥Õ¥§¥¤¥¹¤Î·ÐÏ© "
+"(route) ¤ÎÄɲäò»È¤Ã¤Æ¤¤¤¿¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£¤³¤ì¤Ï¤â¤¦ 2.2.x ¥·¥ê¡¼¥º¤Î"
+"¥«¡¼¥Í¥ë¤Ç¤ÏɬÍפʤ¯¡¢µ¯Æ°»þ¤Ë (Ã×̿Ū¤Ç¤Ï¤Ê¤¤) SIOCADDRT ¥¨¥é¡¼¥á¥Ã¥»¡¼¥¸¤¬"
+"½Ð¤ë·ë²Ì¤Ë¤Ê¤ê¤Þ¤¹¡£"
diff --git a/debian/po/nl.po b/debian/po/nl.po
new file mode 100644 (file)
index 0000000..e1335f7
--- /dev/null
@@ -0,0 +1,145 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2003-08-08 12:16+0100\n"
+"Last-Translator: Bart Cornelis <cobaco@linux.be>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Belangrijke opmerking voor gebruikers van radius programma's"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"De officiële poortnummers van de radius service zijn veranderd van 1645 en "
+"1646 naar 1812 en 1813.  Als u de radius service gebruikt, overtuig uzelf er "
+"van dat de client en server beide de zelfde poortnummers gebruiken."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "De oude portmapper draait nog steeds."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"De oude portmapper draait nog.  Dit zal problemen veroorzaken, voornamelijk "
+"dat \"/etc/init.d/portmap stop\" niets doet.  Om dit goed te krijgen zal ik "
+"de oude portmap geforceerd stoppen, en het opnieuw starten."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase is opgesplitst."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase is niet langer noodzakelijk of gebruikt."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap (voorzien in het portmap pakket) behandelt nu het "
+"starten en stoppen van de portmapper, /etc/init.d/inetd (uit het netkit-"
+"inetd pakket) behandelt het starten en stoppen van inetd, en /etc/init.d/"
+"networking doet de spoof-beveiliging."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network gaat over in /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network wordt niet langer direct ondersteund, hoewel u het "
+"natuurlijk kunt blijven gebruiken. Nieuwe Debian installaties maken gebruik "
+"van de ifup/ifdown commando'som netwerk interfaces in te stellen volgens de "
+"instellingen in /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Als u overschakelt en /etc/network/interfaces gaat gebruiken in plaats van /"
+"etc/init.d/network, kunt u best /etc/init.d/network en de snelkoppeling /etc/"
+"rcS.d/S40networkverwijderen.  Deze zullen niet meer gebruikt worden door "
+"netbase of andere Debian pakketten."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Zie de interfaces(5), ifup(8) en ifdown(8) man pagina's, en de opmerkingen "
+"in /etc/network/interfaces, voor informatie over hoe uw netwerk configuratie "
+"naar dit nieuwe formaatte converteren."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Merk op dat de oude default /etc/init.d/network een route voor de loopback "
+"interface toevoegde. Voor 2.2.x serie kernels is dit niet langer "
+"noodzakelijk, daarnaast resulteert hetvoor die kernels in een (niet-fatale) "
+"SIOADDRT fout melding bij het opstarten."
diff --git a/debian/po/pl.po b/debian/po/pl.po
new file mode 100644 (file)
index 0000000..93184ca
--- /dev/null
@@ -0,0 +1,146 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2004-01-18 12:52+0100\n"
+"Last-Translator: Bartosz Fenski <fenio@o2.pl>\n"
+"Language-Team: Polish <pddp@debian.linux.org.pl>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-2\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Wa¿na wskazówka dla u¿ytkowników oprogramowania radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Oficjalne numery portów us³ug radius zosta³y zmienione z 1645 i 1646 na 1812 "
+"i 1813. Je¶li u¿ywasz us³ugi radius, upewnij siê, ¿e zarówno klient jak i "
+"serwer u¿ywaj± tych samych numerów portów."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Stary portmapper nadal uruchomiony."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Stary portmapper jest nadal uruchomiony. To bêdzie powodowaæ problemy, "
+"g³ównie dlatego, ¿e aktualnie \"/etc/init.d/portmap stop\" nie robi niczego. "
+"By poprawiæ ten b³±d, spróbujê si³± zatrzymaæ portmappera i wtedy go "
+"uruchomiæ ponownie."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase zosta³ rozdzielony."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase nie jest wiêcej wymagane i u¿ywane."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap (z pakietu portmap) obs³uguje teraz zatrzymywanie i "
+"uruchamianie portmappera. /etc/init.d/inetd (z pakietu netkit-inetd) "
+"obs³uguje zatrzymywanie i uruchamianie inetd, a /etc/init.d/networking "
+"obs³uguje zabezpieczenia przed podszywaniem."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network zosta³o zast±pione przez /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network nie jest ju¿ bezpo¶rednio wspierany. Mo¿esz oczywi¶cie "
+"kontynuowaæ u¿ywanie go do konfiguracji sieci, ale instalacje Debiana bêd± "
+"do konfiguracji interfejsów sieciowych u¿ywa³y poleceñ ifup/ifdown "
+"bazuj±cych na ustawieniach z /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Je¶li zdecydujesz siê na korzystanie z /etc/network/interfaces w zamian za /"
+"etc/init.d/network, zapewne bêdziesz chcia³ usun±æ /etc/init.d/network i "
+"dowi±zanie symboliczne /etc/rcS.d/S40network. Ten plik nie bêdzie ju¿ w "
+"przysz³o¶ci obs³ugiwany przez netbase ani inny pakiet Debiana."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"By dowiedzieæ siê jak przekonwertowaæ swoj± konfiguracjê sieci do nowego "
+"formatu, sprawd¼ strony podrêcznika systemowego interfaces(5), ifup(8), "
+"ifdown(8) oraz komentarze w /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Zauwa¿, ¿e stary, domy¶lny /etc/init.d/network dodawa³o zazwyczaj trasê "
+"routingu dla interfejsu loopback. Pocz±wszy od j±der z serii 2.2.x nie jest "
+"to ju¿ wymagane i bêdzie powodowaæ pojawienie siê (niekrytycznego)b³êdu "
+"podczas uruchamiania systemu."
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
new file mode 100644 (file)
index 0000000..be75243
--- /dev/null
@@ -0,0 +1,146 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase-4.09\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2003-03-08 17:49+0300\n"
+"Last-Translator: André Luís Lopes <andrelop@ig.com.br>\n"
+"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Dica importante para usuários de software radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Os números oficiais das portas do serviço radius mudaram de 1645 e 1646 para "
+"1812 e 1813. Caso você use servidores radius por favor certifique-se de que "
+"os softwares cliente e servidor usem ambos os mesmos números de porta."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "O antigo portmapper ainda está sendo executado."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"O antigo portmapper ainda está sendo executado. Isto pode causar problemas, "
+"principalmente porque \"/etc/init.d/portmap stop\" não funcionará. Para "
+"consertar isto, a interrupção do portmap será forçada e então ele será "
+"reiniciado."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase foi dividido."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase não é mais requerido ou usado."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap (fornecido pelo pacote portmap) agora gerencia a "
+"interrupção e a inicialização do portmapper, /etc/init.d/inetd (fornecido "
+"pelo pacote netkit-inetd) gerencia a interrupção e a inicialização do inetd "
+"e /etc/init.d/networking gerencia proteção contra spoof."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network substituído por /etc/init.d/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"O arquivo /etc/init.d/network não é mais diretamente suportado. Você pode, é "
+"claro, continuar a usá-lo para configurar sua rede, porém novas instalações "
+"Debian utilizarão os comandos ifup/ifdown para configurar interfaces de rede "
+"baseado nas configurações em /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Caso você converta para o uso de /etc/network/interfaces ao invés de /etc/"
+"init.d/network você provavelmente irá querer remover o arquivo /etc/init.d/"
+"network e a ligação simbólica /etc/rcS.d/S40network. Estes não serão tocados "
+"pelo netbase ou outro pacote Debian no futuro."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Consulte as páginas de manual interfaces(5), ifup(8) e ifdown(8) e os "
+"comentários no arquivo /etc/network/interfaces par maiores informações sobre "
+"como converter sua configuração de rede para esse novo formato."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Note que o arquivo padrão antigo /etc/init.d/network costumava adicionar uma "
+"rota para a interface loopback (lo). Isto não é mais necessário para kernels "
+"Linux da série 2.2.x e posteriores e resultará em uma mensagem de erro (não "
+"fatal) SIOCADDRT na inicialização."
diff --git a/debian/po/ru.po b/debian/po/ru.po
new file mode 100644 (file)
index 0000000..00871f0
--- /dev/null
@@ -0,0 +1,150 @@
+# Russian messages:
+# ??? <???@???>, ????
+# Ilgiz Kalmetev <translator@ilgiz.pp.ru>, 2003
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=KOI8-R\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "÷ÁÖÎÏÅ ÚÁÍÅÞÁÎÉÅ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÅÊ radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"ïÆÉÃÉÁÌØÎÙÅ ÎÏÍÅÒÁ ÐÏÒÔÏ× ÓÅÒ×ÉÓÁ radius ÂÙÌÉ ÉÚÍÅÎÅÎÙ Ó 1645 É 1646 ÎÁ 1812 "
+"É 1813. åÓÌÉ ×Ù ÉÓÐÏÌØÚÕÅÔÅ radius, ÔÏ ÕÄÏÓÔÏ×ÅÒØÔÅÓØ, ÞÔÏ É ËÌÉÅÎÔÓËÏÅ, É "
+"ÓÅÒ×ÅÒÎÏÅ ÐÒÏÇÒÁÍÍÎÏÅ ÏÂÅÓÐÅÞÅÎÉÅ ÉÓÐÏÌØÚÕÀÔ ÏÄÉÎÁËÏ×ÙÅ ÎÏÍÅÒÁ ÐÏÒÔÏ×."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "óÔÁÒÙÊ portmapper ÏÓÔÁÅÔÓÑ ÒÁÂÏÔÁÀÝÉÍ."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"óÔÁÒÙÊ portmapper ÏÓÔÁÅÔÓÑ ÒÁÂÏÔÁÀÝÉÍ. üÔÏ ÍÏÖÅÔ ÐÒÉ×ÅÓÔÉ Ë ÐÒÏÂÌÅÍÁÍ, × "
+"ÏÓÎÏ×ÎÏÍ ÉÚ-ÚÁ ÔÏÇÏ, ÞÔÏ \"/etc/init.d/portmap stop\" × ÄÅÊÓÔ×ÉÔÅÌØÎÏÓÔÉ ÎÅ "
+"ÂÕÄÅÔ ÞÔÏ-ÌÉÂÏ ÄÅÌÁÔØ. þÔÏÂÙ ÜÔÏ ÉÓÐÒÁ×ÉÔØ, ÎÕÖÎÏ ÐÒÉÎÕÄÉÔÅÌØÎÏ ÐÒÉÂÉÔØ "
+"portmap É ÚÁÔÅÍ ÐÅÒÅÚÁÐÕÓÔÉÔØ ÅÇÏ."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase ÂÙÌ ÒÁÚÄÅÌÅÎ."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase ÂÏÌØÛÅ ÎÅ ÔÒÅÂÕÅÔÓÑ É ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"úÁÐÕÓËÏÍ É ÏÓÔÁÎÏ×ËÏÊ portmapper`Á ÔÅÐÅÒØ ÚÁÎÉÍÁÅÔÓÑ /etc/init.d/portmap "
+"(ÐÏÓÔÁ×ÌÑÅÍÙÊ × ÐÁËÅÔÅ portmap), /etc/init.d/inetd (ÐÏÓÔÁ×ÌÑÅÍÙÊ × ÐÁËÅÔÅ "
+"netkit-inetd) ÏÂÓÌÕÖÉ×ÁÅÔ ÏÓÔÁÎÏ×ËÕ É ÚÁÐÕÓË inetd, É /etc/init.d/networking "
+"ÚÁÎÉÍÁÅÔÓÑ ÚÁÝÉÔÏÊ ÏÔ ÐÏÄÄÅÌËÉ ÁÄÒÅÓÏ×."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network ÚÁÍÅÎÅΠÆÁÊÌÏÍ /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network ÂÏÌØÛÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÎÁÐÒÑÍÕÀ. ëÏÎÅÞÎÏ, ×Ù ÍÏÖÅÔÅ, "
+"ÐÒÏÄÏÌÖÁÔØ ÐÏÌØÚÏ×ÁÔØÓÑ ÉÍ ÄÌÑ ÎÁÓÔÒÏÊËÉ ×ÁÛÅÊ ÓÅÔÉ, ÏÄÎÁËÏ ÎÏ×ÙÅ "
+"ÕÓÔÁÎÏ×ÝÉËÉ Debian ÂÕÄÕÔ ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ÎÁÓÔÒÏÊËÉ ÓÅÔÅ×ÙÈ ÉÎÔÅÒÆÅÊÓÏ× "
+"ËÏÍÁÎÄÙ ifup/ifdown, ËÏÔÏÒÙÅ ÎÁÓÔÒÁÉ×ÁÀÔÓÑ × ÆÁÊÌÅ /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"åÓÌÉ ÷Ù ÓÏÂÉÒÁÅÔÅÓØ ÐÒÉÍÅÎÑÔØ /etc/network/interfaces ×ÍÅÓÔÏ /etc/init.d/"
+"network, ÔÏ ×ÏÚÍÏÖÎÏ ÷Ù ÚÁÈÏÔÉÔÅ ÕÄÁÌÉÔØ ÆÁÊÌ /etc/init.d/network É "
+"ÓÉÍ×ÏÌÉÞÅÓËÕÀ Ó×ÑÚØ /etc/rcS.d/S40network. üÔÉ ÄÅÊÓÔ×ÉÑ × ÂÕÄÕÝÅÍ ÎÅ ÂÕÄÕÔ "
+"ÐÒÅÄÐÒÉÎÉÍÁÔØÓÑ ÐÁËÅÔÏÍ netbase ÉÌÉ ÄÒÕÇÉÍÉ ÐÁËÅÔÁÍÉ Debian."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"óÍ. × ÓÔÒÁÎÉÃÁÈ ÒÕËÏ×ÏÄÓÔ× interfaces(5), ifup(8) É ifdown(8), Á ÔÁËÖÅ × "
+"ËÏÍÍÅÎÔÁÒÉÑÈ × ÆÁÊÌÅ /etc/network/interfaces Ó×ÅÄÅÎÉÑ Ï ÔÏÍ, ËÁË ÐÅÒÅÊÔÉ ÎÁ "
+"ÎÏ×ÙÊ ÆÏÒÍÁÔ ÎÁÓÔÒÏÊËÉ ÷ÁÛÅÊ ÓÅÔÉ."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"ïÂÒÁÔÉÔÅ ×ÎÉÍÁÎÉÅ, ÎÁ ÔÏ, ÞÔÏ ÓÔÁÒÙÊ ÆÁÊÌ /etc/init.d/network ÉÓÐÏÌØÚÕÅÔÓÑ "
+"ÄÌÑ ÄÏÂÁ×ÌÅÎÉÑ ÍÁÒÛÒÕÔÁ ÄÌÑ ÉÎÔÅÒÆÅÊÓÁ loopback. üÔÏ ÂÏÌÅÅ ÎÅ ÔÒÅÂÕÅÔÓÑ ÄÌÑ "
+"ÑÄÅÒ ÓÅÒÉÉ 2.2.x, É ÂÕÄÅÔ ÐÒÉ×ÏÄÉÔØ Ë ×ÙÄÁÞÅ ÓÏÏÂÝÅÎÉÑ Ï (ÎÅÆÁÔÁÌØÎÏÊ) "
+"ÏÛÉÂËÅ SIOCADDRT ÐÒÉ ÚÁÇÒÕÚËÅ ÓÉÓÔÅÍÙ."
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
new file mode 100644 (file)
index 0000000..1778b54
--- /dev/null
@@ -0,0 +1,113 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
diff --git a/debian/po/tr.po b/debian/po/tr.po
new file mode 100644 (file)
index 0000000..3465fe5
--- /dev/null
@@ -0,0 +1,139 @@
+# Turkish translation of netbase.
+# This file is distributed under the same license as the netbase package.
+# Mehmet Turker <mturker@innova.com.tr>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2004-03-21 03:20+0200\n"
+"Last-Translator: Mehmet Turker <mturker@innova.com.tr>\n"
+"Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms:  nplurals=1; plural=0;\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Radius uygulama kullanıcıları için önemli ipuçları"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Radius servisinin resmi port numaraları 1645 ve 1646'dan 1812 ve 1813'e "
+"değiştirilmiştir. Eğer radius servisini kullanıyorsanız lütfen sunucu ve "
+"istemci yazılımların ikisinin de aynı port numaralarını kullandığından emin "
+"olunuz."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Eski portmapper hala çalışıyor."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Eski portmapper hala çalışıyor. Bu problemlere yol açacaktır. Esas olarak \"/"
+"etc/init.d/portmap stop\" herhangi birşey yapmayacaktır. Bunu düzeltmek "
+"için, portmap'i zorla kapatıp tekrar açmayı deneyeceğim."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase bölünmüş."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase artık gerekli değil ya da kullanılmıyor."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap (portmap paketi tarafından sunuluyor) artık portmapper'ı "
+"başlatma ve durdurmayı, /etc/init.d/inetd (netkit-inetd paketi tarafından "
+"sunuluyor) inetd'yi başlatma ve durdurmayı, /etc/init.d/networking yanıltma "
+"korumasını (spoof protection) idare ediyor."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/network/interfaces /etc/init.d/network'ün yerini aldı"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network artık doğrudan desteklenmiyor. Tabii ki ağınızı kurmak "
+"için onu kullanmaya devam edebilirsiniz, bununla birlikte yeni Debian "
+"kurulumları /etc/network/interfaces'te yer alan arayüzleri ayarlamak için "
+"ifup/ifdown komutlarını kullanacaktır."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Eğer /etc/init.d/network yerine /etc/network/interfaces'i kullanacaksanız "
+"büyük ihtimalle /etc/init.d/network ve /etc/rcS.d/S40network sembolik bağını "
+"silmek isteyeceksiniz. Bunlara gelecekte netbase ya da diğer Debian "
+"paketleri tarafından dokunulmayacaktır."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Ağ yapılandırmanızı bu yeni formata göre nasıl değiştirebileceğinizle ilgili "
+"olarak interfaces(5), ifup(8) ve ifdown(8) man sayfalarına ve /etc/network/"
+"interfaces içindeki yorum satırlarına bakınız."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Eski /etc/init.d/network varsayılan satırları loopback arayüzüne route "
+"eklemek için kullanılıyordu. Bu 2.2.x serisi çekirdekler için artık gerekli "
+"değildir ve açılış sırasında (ölümcül-olmayan) bir hata mesajıyla "
+"sonuçlanacaktır."
diff --git a/debian/po/uk.po b/debian/po/uk.po
new file mode 100644 (file)
index 0000000..2936b08
--- /dev/null
@@ -0,0 +1,146 @@
+# translation of netbase-templates.po to Ukrainian
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans#
+#    Developers do not need to manually edit POT or PO files.
+# Eugeniy Meshcheryakov <eugen@univ.kiev.ua>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase-templates_uk\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2004-03-08 18:17+0200\n"
+"Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n"
+"Language-Team: Ukrainian\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Важливе зауваження для користувачів radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Офіційні номери портів служби radius були змінені з 1645 та 1646 на 1812 та "
+"1813. Якщо ви використовуєте службу radius, то впевніться, що клієнтське та "
+"серверне програмне забезпечення використовують однакові номери портів."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Старий portmap ще запущений."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Старий portmap ще запущений. Це може викликати проблеми, головним чином із-"
+"за того, що \"/etc/init.d/portmap stop\" насправді не буде нічого робити. "
+"Щоб виправити це, portmap буде примусово зупинений та перезапущений."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase був розділений."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase більше непотрібний та не використовується."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"Запуском та зупинкою portmap зараз займається /etc/init.d/portmap (що "
+"міститься в пакунку portmap), /etc/init.d/inetd (з пакунку netkit-inetd) "
+"обслуговує запуск та зупинку inetd, та /etc/init.d/networking займається "
+"захистом від підробки адрес."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network замінений файлом /etc/network/interfaces"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network більше не підтримується напряму. Звичайно, ви можете "
+"продовжувати використовувати його для налаштовування вашої мережі, але нові "
+"версії Debian будуть використовувати команди ifup/ifdown для налаштовування "
+"мережі базуючись на установках в /etc/network/interfaces."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Якщо ви збираєтесь використовувати /etc/network/interfaces замість /etc/init."
+"d/network, то можливо ви захочете видалити /etc/init.d/network та символьне "
+"посилання /etc/rcS.d/S40network. Це не буде зроблено пакунком netbase або "
+"іншим пакунком Debian в майбутньому."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Дивіться в сторінках керівництва interfaces(5), ifup(8) та ifdown(8) "
+"інформацію пор те, як перейти на новий формат налаштовування вашої мережі."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Зверніть увагу, що застарілий файл /etc/init.d/network використовувався для "
+"додавання шляху для інтерфейсу lo. Це більше непотрібно для ядер версії 2.2."
+"x, і буде призводити до (нефатальної) помилки SIOCADDRT при завантаженні."
diff --git a/debian/po/vi.po b/debian/po/vi.po
new file mode 100644 (file)
index 0000000..88574e2
--- /dev/null
@@ -0,0 +1,137 @@
+# Vietnamese translation for netbase.
+# Copyright © 2005 Free Software Foundation, Inc.
+# Clytie Siddall <clytie@riverland.net.au>, 2005.
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase 4.21\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2005-06-26 16:51+0930\n"
+"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
+"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "Mẹo quan trọng cho mọi người dùng phần mềm radius"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"Số hiệu cổng chính thức của dịch vụ radius đã được thay đổi từ 1645 và 1646 "
+"thành 1812 và 1813. Nếu bạn có sử dụng dịch vụ radius, hãy kiểm tra xem có "
+"phần mềm cả khách lẫn phục vụ đều sử dụng cùng số hiệu cổng."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "Bộ ảnh xạ cổng cũ vẫn còn có chạy."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"Bộ ảnh xạ cổng cũ vẫn còn có chạy, mà sẽ gây lỗi, chính là lệnh «etc/init.d/"
+"portmap stop» sẽ không làm gì. Để sửa lỗi này, trình này sẽ cố bước kết thức "
+"trình portmap (ảnh xạ cổng), rồi khởi chạy lại nó."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "«/etc/init.d/netbase» đã bị chia tách."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "Không còn cần thiết hay sử dụng lại «/etc/init.d/netbase»."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"«/etc/init.d/portmap» (do gói tin «portmap» cung cấp) lúc bây giờ quản lý "
+"kết thức và khởin chạy bộ ảnh xạ cổng. «/etc/init.d/inetd» (do gói tin "
+"«netkit-inetd» cung cấp) quản lý kết thức và khởi chạy «inetd».  «/etc/init."
+"d/networking» quản lý bảo vệ chống giả."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "«/etc/init.d/network» đã bị thay thế bằng «/etc/network/interfaces»."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"Không còn hỗ trợ lại «/etc/init.d/network» một cách trực tiếp. Bạn có thể "
+"tiếp tục sử dụng nó để thiết lập cách quản lý mạng. Tuy nhiên, mọi bản cài "
+"đặt Debian mới sẽ sử dụng những lệnh « ifup/ifdown» (nếu lên, nếu xuống) để "
+"cấu hình giao diện mạng, đựa vào thiết lập trong «/etc/network/interfaces»."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"Nếu bạn có chọn sử dụng «/etc/network/interfaces» thay thế «/etc/init.d/"
+"network», trong trường hợp ấy bạn rất có thể sẽ muốn loại bỏ «/etc/init.d/"
+"network» và liên kết tượng trưng «/etc/rcS.d/S40network». Cả netbase lẫn bất "
+"cứ gói tin Debian nào đều sẽ không cần những điều này trong trương lai."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"Hãy xem những trang hướng dẫn (man) «interfaces(5)», «ifup(8)» và «ifdown"
+"(8)», cũng xem những chú thích trong tập tin «/etc/network/interfaces», để "
+"tìm thông tin thêm về cách chuyển đổi cấu hình mạng bạn sang định dạng mới "
+"này."
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"Hãy ghi chú rằng «/etc/init.d/network» mặc định cũ đã thêm một đường dẫn cho "
+"giao diện mạch. Hạt nhân loạt 2.2.x không còn cần thiết lại nó, và nó sẽ gây "
+"ra một thông điệp lỗi (không phải nghiêm trọng) «SIOCADDRT» khi khởi động."
diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po
new file mode 100644 (file)
index 0000000..4b3b006
--- /dev/null
@@ -0,0 +1,139 @@
+#
+#    Translators, if you are not familiar with the PO format, gettext
+#    documentation is worth reading, especially sections dedicated to
+#    this format, e.g. by running:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+#    Some information specific to po-debconf are available at
+#            /usr/share/doc/po-debconf/README-trans
+#         or http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+#    Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: netbase 4.15\n"
+"Report-Msgid-Bugs-To: yauheni.kaliuta@nokia.com\n"
+"POT-Creation-Date: 2008-03-04 15:13+0200\n"
+"PO-Revision-Date: 2004-02-06 18:32+0800\n"
+"Last-Translator: Hiei Xu <nicky@mail.edu.cn>\n"
+"Language-Team: Chinese/Simplified <i18n-translation@lists.linux.net.cn>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid "Important hint for users of radius software"
+msgstr "对 radius 软件用户的重要提示"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:1001
+msgid ""
+"The official port numbers of the radius service have been changed from 1645 "
+"and 1646 to 1812 and 1813. If you use the radius service please make sure "
+"that the client and server software both use the same port numbers."
+msgstr ""
+"radius 服务的正式端口已经从 1645 和 1646 变成了 1812 和 1813。如果您使用 "
+"radius 服务请确保客户端和服务端都使用相同的端口。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid "The old portmapper is still running."
+msgstr "旧的 portmapper 仍在运行中。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:2001
+msgid ""
+"The old portmapper is still running. This will cause problems, mainly that "
+"\"/etc/init.d/portmap stop\" won't actually do anything. To fix this, I'm "
+"going to try to forcibly stop portmap, and then restart it."
+msgstr ""
+"旧的 portmapper 仍在运行中。这会引发一些问题,主要是“/etc/init.d/portmap "
+"stop”命令实际上无效的。为了修复这个问题,我打算尝试强制停止 portmap,然后重启"
+"它。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase has been split."
+msgstr "/etc/init.d/netbase 已经被分拆。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid "/etc/init.d/netbase is no longer required or used."
+msgstr "/etc/init.d/netbase 已经不再需要了。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:3001
+msgid ""
+"/etc/init.d/portmap (provided by the portmap package) now handles stopping "
+"and starting the portmapper, /etc/init.d/inetd (provided by the netkit-inetd "
+"package) handles stopping and starting inetd, and /etc/init.d/networking "
+"handles spoof protection."
+msgstr ""
+"/etc/init.d/portmap(由 poartmap 包提供)现在负责处理停止和启动 portmapper 服"
+"务,/etc/init.d/inetd(由 netkit-inetd 包提供)负责处理停止和启动 inetd 服务,/"
+"etc/init.d/networking 则负责处理欺骗保护。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid "/etc/init.d/network superseded by /etc/network/interfaces"
+msgstr "/etc/init.d/network 被 /etc/network/interfaces 取代"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"/etc/init.d/network is no longer directly supported. You may, of course, "
+"continue using it to setup your networking, however new Debian installs will "
+"use the ifup/ifdown commands to configure network interfaces based on the "
+"settings in /etc/network/interfaces."
+msgstr ""
+"/etc/init.d/network 已经不再被直接支持。当然您还是可以继续用它来设置您的网"
+"络,然而 Debian 安装会采用 /etc/network/interfaces 文件的设置通过 ifup/"
+"ifdown 命令来配置网络接口。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"If you do convert to using /etc/network/interfaces in place of /etc/init.d/"
+"network you will probably want to remove /etc/init.d/network and the /etc/"
+"rcS.d/S40network symlink. These will not be touched by netbase or other "
+"Debian packages in future."
+msgstr ""
+"如果您要转用 /etc/network/interfaces 代替 /etc/init.d/network,您很可能需要删"
+"除 /etc/init.d/network 和 /etc/rcS.d/S40network 的符号链接。netbase 或以后别"
+"的 Debian 包都不会再用到它们了。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"See the interfaces(5), ifup(8), and ifdown(8) man pages, and the comments "
+"in /etc/network/interfaces, for information on how to convert your network "
+"configuration to this new format."
+msgstr ""
+"要将您的网络配置转换到这种新格式,若想获知如何操作,请参阅 interfaces(5)、"
+"ifup(8) 和 ifdown(8) 的手册页以及 /etc/network/interfaces 文件里面的注释。"
+
+#. Type: note
+#. Description
+#: ../netbase.templates:4001
+msgid ""
+"Note that the old default /etc/init.d/network used to add a route for the "
+"loopback interface. This is no longer necessary for 2.2.x series kernels, "
+"and will result in a (non-fatal) SIOCADDRT error message at bootup."
+msgstr ""
+"注意过去的缺省文件 /etc/init.d/network 是用于为环回接口添加路由。2.2.x 系列内"
+"核已经不再需要这个文件了,而且它还会导致系统在启动时出现一个 (非致命的) "
+"SIOCADDRT 错误信息。"
diff --git a/debian/postinst b/debian/postinst
new file mode 100644 (file)
index 0000000..fdc189c
--- /dev/null
@@ -0,0 +1,129 @@
+#!/bin/sh
+# post install script for the Debian GNU/Linux netbase package
+
+set -e
+
+if [ ! -e /usr/share/debconf/confmodule ]; then
+       echo "netbase requires debconf to install."
+       exit 1
+fi
+
+if [ "$1" = "configure" ]; then
+    . /usr/share/debconf/confmodule
+fi
+
+if [ "$1" = "configure" -a "$2" ] && dpkg --compare-versions $2 lt 3.11-2; then
+    if /usr/bin/rpcinfo -u localhost portmapper >/dev/null 2>&1; then
+        # portmapper's still running. stop it.
+
+        if [ -x /bin/fuser ]; then
+            PID=`/bin/fuser -n tcp sunrpc | sed 's/^.*: *//'`
+        fi
+
+        if [ "$PID" ]; then
+            if [ ! -f /var/run/portmap.upgrade-state ]; then
+                echo >&2 "Remembering old rpc services..."
+                pmap_dump >/var/run/portmap.upgrade-state
+            fi
+            echo >&2 -n "Killing portmapper"
+            kill $PID
+            echo >&2 "."
+        fi
+    fi
+fi
+
+if [ "$1" = "configure" ]; then
+    # Get answers to questions
+    db_get netbase/ipv6-hosts;         ADD_IPV6_HOSTS="$RET"
+
+    db_get netbase/spoofprot/pre-2.2-ip;         LOCAL_IPS="$RET"
+    db_get netbase/spoofprot/pre-2.2-interfaces; LOCAL_IFACES="$RET"
+   
+    # Apply answers where applicable
+    if [ -f /etc/hosts ] && ! grep "ip6-localhost" /etc/hosts >/dev/null; then
+        if [ "$ADD_IPV6_HOSTS" = "true" ]; then 
+            echo -n "Adding IPv6 hostnames..."
+            cat >>/etc/hosts <<EOF
+
+# The following lines are desirable for IPv6 capable hosts
+# (added automatically by netbase upgrade)
+
+::1     ip6-localhost ip6-loopback
+fe00::0 ip6-localnet
+ff00::0 ip6-mcastprefix
+ff02::1 ip6-allnodes
+ff02::2 ip6-allrouters
+ff02::3 ip6-allhosts
+EOF
+            echo "done."
+        fi
+    fi
+
+    if [ ! -e /etc/network/spoof-protect ]; then
+        cat >/etc/network/spoof-protect <<EOF
+# default spoof protection configuration
+#
+# this is only necessary for pre-2.2 kernels.
+# (it can be determined automatically under 2.2.x)
+
+EOF
+        echo >>/etc/network/spoof-protect "LOCAL_IPS=\"$LOCAL_IPS\""
+        echo >>/etc/network/spoof-protect "LOCAL_IFACES=\"$LOCAL_IFACES\""
+        chmod 644 /etc/network/spoof-protect
+    fi
+
+    if [ "$2" ] && dpkg --compare-versions "$2" lt "3.17-1"; then
+        if [ -e /etc/init.d/network ]; then
+            cat >> /etc/init.d/network << EOF
+
+# (added automatically by netbase upgrade)
+#
+# In new Debian installations, this file is deprecated in favour of
+# the ifup/ifdown commands (invoked from /etc/init.d/networking), which
+# can be configured from the file /etc/network/interfaces.
+#
+# If you are receiving SIOCADDRT errors, they can be avoided by adding
+# a netmask and interface to your "route add -net" lines. eg,
+#      route add -net 127.0.0.0
+# becomes:
+#      route add -net 127.0.0.0 netmask 255.0.0.0 lo
+#
+# Alternatively, these lines can simply be deleted if you don't use 2.0.x 
+# series kernels.
+EOF
+        fi
+    fi
+
+    if [ -e /etc/init.d/netbase ]; then
+        mv /etc/init.d/netbase /etc/init.d/netbase.old
+    fi
+
+    if [ "$2" ] && dpkg --compare-versions "$2" lt "3.18-1"; then
+        # only do this for people who were running unstable
+        if dpkg --compare-versions "$2" ge 3.16-1; then
+           echo >&2 "BUGFIX: Resetting runlevels at which /etc/init.d/networking is run."
+            update-rc.d -f networking remove >/dev/null 2>&1
+       fi
+    fi
+
+    if [ $2 ] && dpkg --compare-versions $2 lt 3.18-1; then
+        update-rc.d -f netbase remove >/dev/null 2>&1
+    fi
+
+    update-rc.d networking start 35 0 6 . >/dev/null
+fi
+
+#DEBHELPER#
+
+# shouldn't be necessary? but without it the postinst just hangs on dpkg -i :(
+#
+# do i have to do this right at the end, or can i do it earlier, for that
+# matter?
+#
+# i may be meant to redirect 3>&1 or something equally weird here :-/
+# maybe this isn't necessary anymore (since there shouldn't be any daemons
+# in this postinst anymore), but who knows?
+#
+if [ "$1" = "configure" ]; then
+    db_stop 
+fi
diff --git a/debian/postrm b/debian/postrm
new file mode 100644 (file)
index 0000000..53a512e
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh -e
+
+if [ "$1" = "purge" ]
+then
+  update-rc.d networking remove >/dev/null
+fi
+
+#DEBHELPER#
diff --git a/debian/preinst b/debian/preinst
new file mode 100644 (file)
index 0000000..7a2cda9
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh -e
+
+# The pre-4.00 prerm will have incorrectly stopped inetd. If so, restart
+# it.
+#if [ "$1" = "upgrade" ] && `dpkg --compare-versions "$2" -lt "4.00"`; then
+#  if [ -e /etc/init.d/inetd ]; then
+#    /etc/init.d/inetd restart
+#  fi
+#fi
+
+if [ ! -d /etc/network ]; then
+  mkdir -p /etc/network
+fi
+
+# create a new /etc/network/options file if it doesn't already exist
+if [ ! -f /etc/network/options ]; then
+  cat <<EOC >/etc/network/options
+ip_forward=no
+spoofprotect=yes
+syncookies=no
+EOC
+fi
+
+#DEBHELPER#
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..6632030
--- /dev/null
@@ -0,0 +1,65 @@
+#!/usr/bin/make -f
+# Sample debian.rules file - for GNU Hello (1.3).
+# Copyright 1994,1995 by Ian Jackson.
+# I hereby give you perpetual unlimited permission to copy,
+# modify and relicense this file, provided that you do not remove
+# my name from the file itself.  (I assert my moral right of
+# paternity under the Copyright, Designs and Patents Act 1988.)
+# This file may have to be extensively modified
+
+#export DH_VERBOSE=1
+
+D := $(CURDIR)/debian/netbase
+
+build:
+       dh_testdir
+
+#      check for duplicate etc-services entries and abort if any found
+       @echo Checking for duplicate services:
+       @if (sed 's/#.*$$//;s/[[:space:]][[:space:]]*/ /g' etc-services | \
+             while read name serv other; do \
+               for a in $$name $$other; do echo $$a $$serv; done; \
+              done | sort | uniq -d | sed 's/^/  /' | grep ^); \
+        then \
+         false; \
+       else \
+         echo "  None found"; \
+       fi
+
+clean:
+       dh_testdir
+       dh_testroot
+
+       dh_clean
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k
+       dh_installdirs etc/ etc/network/ usr/share/perl5/ usr/sbin/
+
+       install -o root -g root -m 0644 etc-hosts $D/etc/hosts
+       install -o root -g root -m 0644 etc-protocols $D/etc/protocols
+       install -o root -g root -m 0644 etc-rpc $D/etc/rpc
+       install -o root -g root -m 0644 etc-services $D/etc/services
+       install -o root -g root -m 0644 DebianNet.pm $D/usr/share/perl5/
+       install -o root -g root -m 0755 update-inetd $D/usr/sbin/
+
+binary-indep: build install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs
+       dh_installdocs
+       dh_installdebconf
+       dh_installinit --noscripts --init-script=networking
+       dh_installman DebianNet.3pm update-inetd.8
+       dh_perl
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+       dh_gencontrol
+       dh_builddeb
+
+binary: binary-indep
+
+.PHONY: build clean binary-indep binary-arch binary install
diff --git a/debian/suid b/debian/suid
new file mode 100644 (file)
index 0000000..c6ee68e
--- /dev/null
@@ -0,0 +1,3 @@
+bin/ping
+bin/ping6
+usr/bin/traceroute6
diff --git a/debian/templates b/debian/templates
new file mode 100644 (file)
index 0000000..2182c9a
--- /dev/null
@@ -0,0 +1,77 @@
+Template: netbase/upgrade-note/radius-ports-pre-3.05
+Type: note
+Description: Important hint for users of radius software
+ The official port numbers of the radius service have been changed
+ from 1645 and 1646 to 1812 and 1813. If you use the radius service
+ please make sure that the client and server software both use the
+ same port numbers.
+
+Template: netbase/upgrade-note/portmap-restart-pre-3.11-2
+Type: note
+Description: The old portmapper is still running.
+ The old portmapper is still running. This will cause problems, mainly that
+ "/etc/init.d/portmap stop" won't actually do anything. To fix this, I'm
+ going to try to forcibly stop portmap, and then restart it.
+
+Template: netbase/upgrade-note/init.d-split-pre-3.16-1
+Type: note
+Description: /etc/init.d/netbase has been split.
+ /etc/init.d/netbase is no longer required or used.
+ .
+ /etc/init.d/portmap (provided by the portmap package) now handles
+ stopping and starting the portmapper, /etc/init.d/inetd (provided by
+ the netkit-inetd package) handles stopping and starting inetd, and
+ /etc/init.d/networking handles spoof protection.
+
+Template: netbase/upgrade-note/etc-network-interfaces-pre-3.17-1
+Type: note
+Description: /etc/init.d/network superceded by /etc/network/interfaces
+ /etc/init.d/network is no longer directly supported. You may, of course,
+ continue using it to setup your networking, however new Debian installs
+ will use the ifup/ifdown commands to configure network interfaces based
+ on the settings in /etc/network/interfaces.
+ .
+ If you do convert to using /etc/network/interfaces in place of
+ /etc/init.d/network you will probably want to remove /etc/init.d/network
+ and the /etc/rcS.d/S40network symlink. These will not be touched by
+ netbase or other Debian packages in future.
+ .
+ Note that the old default /etc/init.d/network used to add a route for the
+ loopback interface. This is no longer necessary for 2.2.x series kernels,
+ and will result in a (non-fatal) SIOCADDRT error message at bootup.
+
+Template: netbase/ipv6-hosts
+Type: boolean
+Default: true
+Description: Would you like IPv6 addresses added to /etc/hosts?
+ Sooner or later, Debian will include out-of-the box support
+ for IPv6 (see http://www.ipv6.org/). As such, you might like
+ to start playing with this, and seeing what things break as
+ we try to add support for IPv6.
+
+Template: netbase/spoofprot
+Type: note
+Description: Spoof protection for pre-2.2 kernels
+ If you are running a pre-2.2 series kernel, IP spoof 
+ protection cannot be enabled without special configuration,
+ found in /etc/network/spoof-protect and provided by answering
+ the following questions. 
+ .
+ For 2.2.x and later kernels, this information will be determined
+ automatically at boot time, so you don't need to enter anything here
+ unless you also use pre-2.2 kernels.
+
+Template: netbase/spoofprot/pre-2.2-ip
+Type: string
+Default: 127.0.0.1/8
+Description: What IP addresses (or address ranges) should be considered local?
+ IP addresses and ranges should be listed in any order, and separated by 
+ spaces. Addresses should be specified as a dotted quad, while ranges should
+ be specified in CIDR-style. So the class C network 192.168.42.0-192.168.42.255
+ would be specified as 192.168.42.0/24.
+
+Template: netbase/spoofprot/pre-2.2-interfaces
+Type: string
+Default: eth0 eth1 ppp0
+Description: What remote interfaces does this host have?
+
diff --git a/debian/templates.de b/debian/templates.de
new file mode 100644 (file)
index 0000000..e7e2cb0
--- /dev/null
@@ -0,0 +1,130 @@
+Template: netbase/upgrade-note/radius-ports-pre-3.05
+Type: note
+Description: Important hint for users of radius software
+ The official port numbers of the radius service have been changed
+ from 1645 and 1646 to 1812 and 1813. If you use the radius service
+ please make sure that the client and server software both use the
+ same port numbers.
+Description-de: Wichtiger Hinweis für Nutzer von Radius-Software
+ Die offiziellen Portnummern für den Radius-Service wurde von 1645
+ und 1646 nach 1812 und 1813 geändert. Wenn Sie den Radius-Service
+ verwenden, dann stellen Sie sicher, das Client und Server jeweils
+ die gleichen Ports verwenden.
+
+Template: netbase/upgrade-note/portmap-restart-pre-3.11-2
+Type: note
+Description: The old portmapper is still running.
+ The old portmapper is still running. This will cause problems, mainly that
+ "/etc/init.d/portmap stop" won't actually do anything. To fix this, I'm
+ going to try to forcibly stop portmap, and then restart it.
+Description-de: Der alte Portmapper läuft noch
+ Der alte Portmapper läuft noch. Dies wird Probleme verursachen, da auch
+ "/etc/init.d/portmap stop" im Moment nicht funktioniert. Um dieses
+ Problem zu lösen wird jetzt versucht den Portmapper auf eine andere
+ Art zu beenden und neu zu starten.
+
+Template: netbase/upgrade-note/init.d-split-pre-3.16-1
+Type: note
+Description: /etc/init.d/netbase has been split.
+ /etc/init.d/netbase is no longer required or used.
+ .
+ /etc/init.d/portmap (provided by the portmap package) now handles
+ stopping and starting the portmapper, /etc/init.d/inetd (provided by
+ the netkit-inetd package) handles stopping and starting inetd, and
+ /etc/init.d/networking handles spoof protection.
+Description-de: /etc/init.d/netbase wurde aufgeteilt
+ Die Datei /etc/init.d/netbase wird nicht mehr benötigt und benutzt.
+ .
+ Die Datei /etc/init.d/portmap (aus dem Paket portmap) ist jetzt für
+ das Starten und Stoppen des Portmappers verwantwortlich, die Datei
+ /etc/init.d/inetd (aus dem Paket netkit-inetd) startet den inetd,
+ /etc/init.d/networking ist für den Spoofing-Schutz verantwortlich.
+
+Template: netbase/upgrade-note/etc-network-interfaces-pre-3.17-1
+Type: note
+Description: /etc/init.d/network superceded by /etc/network/interfaces
+ /etc/init.d/network is no longer directly supported. You may, of course,
+ continue using it to setup your networking, however new Debian installs
+ will use the ifup/ifdown commands to configure network interfaces based
+ on the settings in /etc/network/interfaces.
+ .
+ If you do convert to using /etc/network/interfaces in place of
+ /etc/init.d/network you will probably want to remove /etc/init.d/network
+ and the /etc/rcS.d/S40network symlink. These will not be touched by
+ netbase or other Debian packages in future.
+ .
+ Note that the old default /etc/init.d/network used to add a route for the
+ loopback interface. This is no longer necessary for 2.2.x series kernels,
+ and will result in a (non-fatal) SIOCADDRT error message at bootup.
+Description-de: /etc/init.d/network wurde durch /etc/network/interfaces ersetzt
+ Die Datei /etc/init.d/network wird nicht mehr direkt unterstützt. Sie
+ können Sie natürlich weiterhin für die Verwaltung Ihrer
+ Netzwerkeinstellungen nutzen. Bei einer neuen Debian-Installation werden
+ ifup/ifdown-Komandos (basierend auf den Einstellungen in der Datei
+ /etc/network/interfaces) zum Konfigurieren des Netzwerks verwendet.
+ .
+ Wenn Sie auf die neue Datei umstellen wollen, dann können Sie die Datei
+ /etc/init.d/network und den symbolischen Link /etc/rcS.d/S40network
+ löschen. Diese Dateien werden nicht mehr von netbase oder anderen
+ Debian-Paketen benutzt.
+ .
+ Die alte Standarddatei /etc/init.d/network setzt auch eine Default-Route
+ für die Loopback-Schnittstelle. Diese Route wird für Kernel der 2.2er-Serie
+ nicht mehr benötigt und verursacht einen nicht-kritischen SIOCADDRT-Fehler
+ beim Starten des Rechners.
+
+Template: netbase/ipv6-hosts
+Type: boolean
+Default: true
+Description: Would you like IPv6 addresses added to /etc/hosts?
+ Sooner or later, Debian will include out-of-the box support
+ for IPv6 (see http://www.ipv6.org/). As such, you might like
+ to start playing with this, and seeing what things break as
+ we try to add support for IPv6.
+Description-de: Sollen IPv6-Adressen zu /etc/hosts hinzugefügt werden?
+ Früher oder später wurd Debian out-of-the-box IPv6 unterstützen
+ (siehe dazu http://www.ipv6.org). Daher wollen Sie vielleicht
+ etwas damit ausprobieren, um zu sehen wie weit die Unterstützung
+ für IPv6 schon ist.
+
+Template: netbase/spoofprot
+Type: note
+Description: Spoof protection for pre-2.2 kernels
+ If you are running a pre-2.2 series kernel, IP spoof 
+ protection cannot be enabled without special configuration,
+ found in /etc/network/spoof-protect and provided by answering
+ the following questions. 
+ .
+ For 2.2.x and later kernels, this information will be determined
+ automatically at boot time, so you don't need to enter anything here
+ unless you also use pre-2.2 kernels.
+Description-de: Spoofing-Schutz für pre-2.2-Kernel
+ Wenn Sie einen Kernel vor Version 2.2 verwenden, dann kann der
+ Spoofing-Schutz nicht ohne spezielle Konfiguration aktiviert
+ werden. Die nötigen Einstellungen werden in der Datei
+ /etc/network/spoof-protect vorgenommen. Beantworten Sie dazu die
+ folgenden Fragen.
+ .
+ Für Kernel der 2.2er-Serie werden diese Informationen automatisch
+ beim booten ermittelt; sie müssen dann hier nichts eingeben, es
+ sei denn Sie verwenden einen Kernel vor Version 2.2.
+
+Template: netbase/spoofprot/pre-2.2-ip
+Type: string
+Default: 127.0.0.1/8
+Description: What IP addresses (or address ranges) should be considered local?
+ IP addresses and ranges should be listed in any order, and separated by 
+ spaces. Addresses should be specified as a dotted quad, while ranges should
+ be specified in CIDR-style. So the class C network 192.168.42.0-192.168.42.255
+ would be specified as 192.168.42.0/24.
+Description-de: Welche IP-Adressen (oder -Bereiche) sollen lokal sein?
+ IP-Adressen und -Bereiche können hier getrennt durch Leerzeichen aufgezählt
+ werden. Adressen werden als normale Adressen angegeben. IP-Bereiche werden
+ in CIDR-Art angegeben. So wird das Class-C-Netz 192.168.42.0-192.168.42.255
+ als 192.168.42.0/24 angegeben.
+
+Template: netbase/spoofprot/pre-2.2-interfaces
+Type: string
+Default: eth0 eth1 ppp0
+Description: What remote interfaces does this host have?
+Description-de: Welche Netzwerkschnittstellen hat dieser Rechner?
diff --git a/debian/templates.de.old b/debian/templates.de.old
new file mode 100644 (file)
index 0000000..3ac0637
--- /dev/null
@@ -0,0 +1,122 @@
+Template: netbase/upgrade-note/radius-ports-pre-3.05
+Description: Important hint for users of radius software
+ The official port numbers of the radius service have been changed
+ from 1645 and 1646 to 1812 and 1813. If you use the radius service
+ please make sure that the client and server software both use the
+ same port numbers.
+Description-de: Wichtiger Hinweis für Nutzer von Radius-Software
+ Die offiziellen Portnummern für Radius wurden von 1645 und 1646 auf
+ 1812 und 1813 verändert. Wenn Sie Radius einsetzen, stellen Sie bitte
+ sicher, dass Client und Server beide dieselben Portnummern verwenden.
+
+Template: netbase/upgrade-note/portmap-restart-pre-3.11-2
+Description: The old portmapper is still running.
+ The old portmapper is still running. This will cause problems, mainly that
+ "/etc/init.d/portmap stop" won't actually do anything. To fix this, I'm
+ going to try to forcibly stop portmap, and then restart it.
+Description-de: Der alte Portmapper läuft immer noch
+ Der alte Portmapper läuft noch. Dies wird Probnleme verursachen. So
+ wird zum Beispiel "/etc/init.d/portmap stop" keine Wirkung mehr haben.
+ Um dies zu beheben, wird der Portmapper nun angehalten, und dann neu
+ gestartet.
+
+Template: netbase/upgrade-note/init.d-split-pre-3.16-1
+Description: /etc/init.d/netbase has been split.
+ /etc/init.d/netbase is no longer required or used.
+ .
+ /etc/init.d/portmap (provided by the portmap package) now handles
+ stopping and starting the portmapper, /etc/init.d/inetd (provided by
+ the netkit-inetd package) handles stopping and starting inetd, and
+ /etc/init.d/networking handles spoof protection.
+Description-de: /etc/init.d/netbase wurde aufgeteilt..
+ /etc/init.d/netbase wird nicht mehr verwendet und ist nicht mehr
+ notwendig.
+ .
+ /etc/init.d/portmap (aus der Package portmap) ist nun für Start und
+ Stop des Portmappers verantwortlich. /etc/init.d/inetd (aus der
+ Package netkit-inetd package) ist für den inetd verantwortlich, und
+ die Zuständigkeit für die Spoof Protection liegt bei /etc/init.d/networking.
+
+Template: netbase/upgrade-note/etc-network-interfaces-pre-3.17-1
+Description: /etc/init.d/network superceded by /etc/network/interfaces
+ /etc/init.d/network is no longer directly supported. You may, of course,
+ continue using it to setup your networking, however new Debian installs
+ will use the ifup/ifdown commands to configure network interfaces based
+ on the settings in /etc/network/interfaces.
+ .
+ If you do convert to using /etc/network/interfaces in place of
+ /etc/init.d/network you will probably want to remove /etc/init.d/network
+ and the /etc/rcS.d/S40network symlink. These will not be touched by
+ netbase or other Debian packages in future.
+ .
+ Note that the old default /etc/init.d/network used to add a route for the
+ loopback interface. This is no longer necessary for 2.2.x series kernels,
+ and will result in a (non-fatal) SIOCADDRT error message at bootup.
+Description-de: /etc/init.d/network durch /etc/network/interfaces ersetzt.
+ /etc/init.d/network wird nicht mehr direkt unterstützt. Dieses Script
+ kann natürlich zur Konfiguration des Netzes weiterhin eingesetzt
+ werden, neue Debian-Installationen werden aber die Kommandos ifup und
+ ifdown verwenden, um die Netzwerk-Interfaces entsprechend der in
+ /etc/network/interfaces abgelegten Einstellungen zu initialisieren.
+ .
+ Nach einer eventuellen Umstellung von /etc/init.d/network auf
+ /etc/network/interfaces, sollte /etc/init.d/network und der Symlink
+ /etc/rcS.d/S40network entfernt werden. Diese Veränderungen werden
+ nicht von netbase oder anderen Debian Packages in Zukunft vorgenommen
+ werden.
+ .
+ Die alten /etc/init.d/network-Scripts haben eine Route für das
+ loopback-Interface hinzugeführt. Für 2.2.x-Kernels ist das nicht mehr
+ notwendig, und wird mit einer (unkritischen) SIOCADDRT-Fehlermeldung
+ beim Systemstart quittiert.
+
+Template: netbase/ipv6-hosts
+Description: Would you like IPv6 addresses added to /etc/hosts?
+ Sooner or later, Debian will include out-of-the box support
+ for IPv6 (see http://www.ipv6.org/). As such, you might like
+ to start playing with this, and seeing what things break as
+ we try to add support for IPv6.
+Description-de: Sollen IPv6-Adressen in /etc/hosts hinzugefügt werden?
+ In Zukunft wird Debian in der ausgelieferten Version Support für IPv6
+ (siehe http://www.ipv6.org/) bieten. Um das Experimentieren mit IPv6
+ zu unterstützen, können IPv6-Adressen zu /etc/hosts hinzugefügt
+ werden, damit festgestellt werden kann, welche Probleme bei der
+ Einführung von IPv6 auftreten können.
+
+Template: netbase/spoofprot
+Description: Spoof protection for pre-2.2 kernels
+ If you are running a pre-2.2 series kernel, IP spoof 
+ protection cannot be enabled without special configuration,
+ found in /etc/network/spoof-protect and provided by answering
+ the following questions. 
+ .
+ For 2.2.x and later kernels, this information will be determined
+ automatically at boot time, so you don't need to enter anything here
+ unless you also use pre-2.2 kernels.
+Description: Spoof Protection für Kernels vor 2.2
+ Beim Einsatz eines Kernels vor Version 2.2 kann IP Spoof Protection
+ nicht aktiviert werden, ohne dass eine spezielle Konfiguration
+ vorgenommen wird, die in /etc/network/spoof-protect abgelegt und
+ durch Beantwortung der folgenden Fragen erstellt wird.
+ .
+ Für 2.2.x oder neuere Kernels wird diese Information beim Systemstart
+ automatisch ermittelt, so dass hier keine Angaben gemacht werden
+ müssen, wenn kein Kernel vor 2.2 mehr eingesetzt wird.
+
+Template: netbase/spoofprot/pre-2.2-ip
+Description: What IP addresses (or address ranges) should be considered local?
+ IP addresses and ranges should be listed in any order, and separated by 
+ spaces. Addresses should be specified as a dotted quad, while ranges should
+ be specified in CIDR-style. So the class C network 192.168.42.0-192.168.42.255
+ would be specified as 192.168.42.0/24.
+Description-de: Welche IP-Adressen und Adressbereiche sollen als lokal behandelt werden?
+ IP-Adressen und Adressbereiche können in beliebiger Reihenfolge
+ angegeben und mit Spaces voneinander getrennt werden. Adressen sollen
+ als dotted quad angegeben werden, und Adressbereiche in CIDR-Notation.
+ Das Netz 192.168.42.0-192.168.42.255 wird also als 192.168.42.0/24
+ geschrieben.
+
+Template: netbase/spoofprot/pre-2.2-interfaces
+Description: What remote interfaces does this host have?
+Description-de: Welche Interfaces für die Verbindung mit entfernten Netzen hat dieser Host?
+
diff --git a/debian/templates.it b/debian/templates.it
new file mode 100644 (file)
index 0000000..f144116
--- /dev/null
@@ -0,0 +1,118 @@
+Template: netbase/upgrade-note/radius-ports-pre-3.05
+Description: Important hint for users of radius software
+ The official port numbers of the radius service have been changed
+ from 1645 and 1646 to 1812 and 1813. If you use the radius service
+ please make sure that the client and server software both use the
+ same port numbers.
+Description-it: Suggerimento importante per chi usa software radius
+ I numeri di porta ufficiali del servizio radius sono stati cambiati
+ da 1645 e 1646 a 1812 e 1813. Se usate il servizio radius assicuratevi
+ che il software di client e quello di server usino gli stessi numeri
+ di porta.
+
+Template: netbase/upgrade-note/portmap-restart-pre-3.11-2
+Description: The old portmapper is still running.
+ The old portmapper is still running. This will cause problems, mainly that
+ "/etc/init.d/portmap stop" won't actually do anything. To fix this, I'm
+ going to try to forcibly stop portmap, and then restart it.
+Description-it: Il vecchio portmapper sta ancora girando.
+ Il vecchio portmapper sta ancora girando, e questo potra' causare dei
+ problemi; principalmente, "/etc/init.d/portmap stop" non
+ funzionera'. Per correggerlo, cerchero' di fermare forzatamente
+ portmap e poi riavviarlo.
+
+Template: netbase/upgrade-note/init.d-split-pre-3.16-1
+Description: /etc/init.d/netbase has been split.
+ /etc/init.d/netbase is no longer required or used.
+ .
+ /etc/init.d/portmap (provided by the portmap package) now handles
+ stopping and starting the portmapper, /etc/init.d/inetd (provided by
+ the netkit-inetd package) handles stopping and starting inetd, and
+ /etc/init.d/networking handles spoof protection.
+Description-it: /etc/init.d/netbase e' stato diviso.
+ /etc/init.d/netbase non e' piu' necessario, ne' viene usato.
+ .
+ /etc/init.d/portmap ora gestisce l'avvio e lo spengimento del portmapper,
+ /etc/init.d/inetd gestisce l'avvio e lo spengimento di inetd, e
+ /etc/ini.d/networking la protezione contro lo spoofing.
+
+Template: netbase/upgrade-note/etc-network-interfaces-pre-3.17-1
+Description: /etc/init.d/network superceded by /etc/network/interfaces
+ /etc/init.d/network is no longer directly supported. You may, of course,
+ continue using it to setup your networking, however new Debian installs
+ will use the ifup/ifdown commands to configure network interfaces based
+ on the settings in /etc/network/interfaces.
+ .
+ If you do convert to using /etc/network/interfaces in place of
+ /etc/init.d/network you will probably want to remove /etc/init.d/network
+ and the /etc/rcS.d/S40network symlink. These will not be touched by
+ netbase or other Debian packages in future.
+ .
+ Note that the old default /etc/init.d/network used to add a route for the
+ loopback interface. This is no longer necessary for 2.2.x series kernels,
+ and will result in a (non-fatal) SIOCADDRT error message at bootup.
+Description-it: /etc/init.d/network sostituito da /etc/network/interfaces
+ /etc/init.d/network non viene piu' supportato direttamente. Potete,
+ ovviamente, continuare ad usarlo per impostare la rete, ma le nuove
+ installazioni di Debian useranno i comandi ifup/ifdown per configurare
+ le interfacce di retre, basandosi sulle impostazioni in
+ /etc/network/interfaces.
+ .
+ Notate che lo script /etc/init.d/network di default aggiunge una route
+ per l'interfaccia di loopback. Per i kernel della serie 2.2.x questo
+ non e' piu' necessario, e portera' ad un errore SIOCADDRT all'avvio del
+ sistema.
+ .
+ Il vecchio default /etc/init.d/network aggiungeva una route anche per
+ l'interfaccia di loopback, che non e' piu' necessaria per i kernel
+ 2.2.x, e portera' ad un errore SIOCADDRT all'avvio del sistema,
+ anche se non da' problemi.
+
+Template: netbase/ipv6-hosts
+Description: Would you like IPv6 addresses added to /etc/hosts?
+ Sooner or later, Debian will include out-of-the box support
+ for IPv6 (see http://www.ipv6.org/). As such, you might like
+ to start playing with this, and seeing what things break as
+ we try to add support for IPv6.
+Description-it: Volete aggiungere gli indirizzi IPV6 ad /etc/hosts?
+ Prima o poi, Debian includera' il supporto per IPV6 nella normale
+ configurazione (vedere http://www.ipv6.org/). Al momento potreste
+ voler cominciare a giocarci, ed a vedere cosa si rompe a mano a mano
+ che aggiungiamo il supporto per l'IPV6.
+
+Template: netbase/spoofprot
+Description: Spoof protection for pre-2.2 kernels
+ If you are running a pre-2.2 series kernel, IP spoof 
+ protection cannot be enabled without special configuration,
+ found in /etc/network/spoof-protect and provided by answering
+ the following questions. 
+ .
+ For 2.2.x and later kernels, this information will be determined
+ automatically at boot time, so you don't need to enter anything here
+ unless you also use pre-2.2 kernels.
+Description-it: Protezione dallo spoofing per i kernel pre-2.2
+ Se state usando un kernel di una serie precedente alla 2.2, la protezione
+ allo spoofing IP non puo' essere abilitata senza una configurazione
+ speciale, che si trova in /etc/network/spoof-protect e che viene fornita
+ rispondendo alle seguenti domande.
+ .
+ Per i kernel 2.2.x e successivi, questa informazione verra' determinata
+ automaticamente al momento del boot, quindi non avete bisogno di
+ indicarla qui a meno che non usiate anche kernel pre-2.2.
+
+Template: netbase/spoofprot/pre-2.2-ip
+Description: What IP addresses (or address ranges) should be considered local?
+ IP addresses and ranges should be listed in any order, and separated by 
+ spaces. Addresses should be specified as a dotted quad, while ranges should
+ be specified in CIDR-style. So the class C network 192.168.42.0-192.168.42.255
+ would be specified as 192.168.42.0/24.
+Description-it: Quali indirizzi IP (o intervalli) devono essere considerati locali?
+ Gli indirizzi IP e gli intervalli di indirizzi possono essere elencati in
+ qualsiasi ordine, separati da spazi. Gli indirizzi devono essere indicati
+ in notazione normale, mentre gli indirizzi vanno indicati in stile CIDR, 
+ quindi la rete di classe C 192.168.42.0-192.168.42.255 deve essere indicata
+ come 192.168.42.0/24.
+
+Template: netbase/spoofprot/pre-2.2-interfaces
+Description: What remote interfaces does this host have?
+Description-it: Quali interfacce remote ha questo host?
diff --git a/debian/templates.nl b/debian/templates.nl
new file mode 100644 (file)
index 0000000..8e9f337
--- /dev/null
@@ -0,0 +1,119 @@
+Template: netbase/upgrade-note/radius-ports-pre-3.05
+Description: Important hint for users of radius software
+ The official port numbers of the radius service have been changed
+ from 1645 and 1646 to 1812 and 1813. If you use the radius service
+ please make sure that the client and server software both use the
+ same port numbers.
+Description-nl: Belangrijke opmerking voor gebruikers van radius programma's
+ De officiële poortnummers van de radius service zijn veranderd van
+ 1645 en 1646 naar 1812 en 1813.  Als u de radius service gebruikt,
+ overtuig uzelf er van dat de client en server beide de zelfde
+ poortnummers gebruiken.
+
+Template: netbase/upgrade-note/portmap-restart-pre-3.11-2
+Description: The old portmapper is still running.
+ The old portmapper is still running. This will cause problems, mainly that
+ "/etc/init.d/portmap stop" won't actually do anything. To fix this, I'm
+ going to try to forcibly stop portmap, and then restart it.
+Description-nl: De oude portmapper draait nog steeds.
+ De oude portmapper draait nog.  Dit zal problemen veroorzaken,
+ voornamelijk dat "/etc/init.d/portmap stop" niets doet.  Om dit goed
+ te krijgen zal ik de oude portmap geforceerd stoppen, en het opnieuw
+ starten.
+
+Template: netbase/upgrade-note/init.d-split-pre-3.16-1
+Description: /etc/init.d/netbase has been split.
+ /etc/init.d/netbase is no longer required or used.
+ .
+ /etc/init.d/portmap (provided by the portmap package) now handles
+ stopping and starting the portmapper, /etc/init.d/inetd (provided by
+ the netkit-inetd package) handles stopping and starting inetd, and
+ /etc/init.d/networking handles spoof protection.
+Description-nl: /etc/init.d/netbase is opgesplitst.
+ /etc/init.d/netbase is niet langer noodzakelijk of gebruikt.
+ .
+ /etc/init.d/portmap (voorzien in het portmap pakket) behandelt nu het
+ starten en stoppen van de portmapper, /etc/init.d/inetd (uit het
+ netkit-inetd pakket) behandelt het starten en stoppen van inetd, en
+ /etc/init.d/networking doet de spoof-beveiliging.
+
+Template: netbase/upgrade-note/etc-network-interfaces-pre-3.17-1
+Description: /etc/init.d/network superceded by /etc/network/interfaces
+ /etc/init.d/network is no longer directly supported. You may, of course,
+ continue using it to setup your networking, however new Debian installs
+ will use the ifup/ifdown commands to configure network interfaces based
+ on the settings in /etc/network/interfaces.
+ .
+ If you do convert to using /etc/network/interfaces in place of
+ /etc/init.d/network you will probably want to remove /etc/init.d/network
+ and the /etc/rcS.d/S40network symlink. These will not be touched by
+ netbase or other Debian packages in future.
+ .
+ Note that the old default /etc/init.d/network used to add a route for the
+ loopback interface. This is no longer necessary for 2.2.x series kernels,
+ and will result in a (non-fatal) SIOCADDRT error message at bootup.
+Description-nl: /etc/init.d/network gaat over in /etc/network/interfaces
+ /etc/init.d/network wordt niet langer direct ondersteund.  U kunt het
+ natuurlijk blijven gebruiken om uw netwerk in te stellen, maar nieuwe
+ Debian installaties zullen de commando's ifup/ifdown gebruiken om
+ netwerk interfaces te configureren gebaseerd op de instellingen uit
+ /etc/network/interfaces.
+ .
+ Als u /etc/network/interfaces gaat gebruiken in plaats van
+ /etc/init.d/network, wilt u waarschijnlijk /etc/init.d/network en
+ de koppeling /etc/rcS.d/S40network verwijderen.  Ze zullen niet meer
+ aangeraakt worden door netbase of een ander Debian pakket in de
+ toekomst.
+ .
+ Merk op dat het oude /etc/init.d/network een route toevoegde voor de
+ lokale interface.  Dit is voor 2.2.x kernels niet langer
+ noodzakelijk, en resulteert in een (niet-fatale) foutmelding over
+ SIOCADDRT tijdens het opstarten.
+
+Template: netbase/ipv6-hosts
+Description: Would you like IPv6 addresses added to /etc/hosts?
+ Sooner or later, Debian will include out-of-the box support
+ for IPv6 (see http://www.ipv6.org/). As such, you might like
+ to start playing with this, and seeing what things break as
+ we try to add support for IPv6.
+Description-nl: Wilt u IPv6 adressen toevoegen aan /etc/hosts?
+ Vroeg of laat zal Debian standaard IPv6 ondersteuning leveren (zie
+ http://www.ipv6.org/).  Zodoende wilt u er misschien alvast mee
+ spelen, om te zien wat er misgaat als wij ondersteuning voor IPv6
+ toevoegen.
+
+Template: netbase/spoofprot
+Description: Spoof protection for pre-2.2 kernels
+ If you are running a pre-2.2 series kernel, IP spoof 
+ protection cannot be enabled without special configuration,
+ found in /etc/network/spoof-protect and provided by answering
+ the following questions. 
+ .
+ For 2.2.x and later kernels, this information will be determined
+ automatically at boot time, so you don't need to enter anything here
+ unless you also use pre-2.2 kernels.
+Description-nl: Spoof-bescherming voor pre-2.2 kernels
+ Als u een pre-2.2 kernel draait, kan IP spoof-bescherming niet
+ aangezet worden zonder speciale configuratie uit
+ /etc/network/spoof-protect en de volgende vragen.
+ .
+ Voor 2.2.x en latere kernels, kan deze informatie automatisch
+ opgevraagd worden bij het opstarten, zodat u geen andere informatie
+ hoeft op te geven tenzij u ook pre-2.2 kernels draait.
+
+Template: netbase/spoofprot/pre-2.2-ip
+Description: What IP addresses (or address ranges) should be considered local?
+ IP addresses and ranges should be listed in any order, and separated by 
+ spaces. Addresses should be specified as a dotted quad, while ranges should
+ be specified in CIDR-style. So the class C network 192.168.42.0-192.168.42.255
+ would be specified as 192.168.42.0/24.
+Description-nl: Welke IP adressen (of adresgebieden) zijn lokaal?
+ IP adressen en gebieden moeten opgegeven worden, in willekeurige
+ volgorde, en gescheiden door spaties.  Adressen moeten opgegeven
+ worden als vier getallen gescheiden door punten, terwijl gebieden
+ opgegeven moeten worden in CIDR-stijl.  Dus het klasse-C netwerk
+ 192.168.42.0-192.168.42.255 wordt opgegeven als 192.168.42.0/24.
+
+Template: netbase/spoofprot/pre-2.2-interfaces
+Description: What remote interfaces does this host have?
+Description-nl: Welke publieke interfaces heeft deze computer?
diff --git a/debian/templates.ru b/debian/templates.ru
new file mode 100644 (file)
index 0000000..7dc4eaf
--- /dev/null
@@ -0,0 +1,126 @@
+Template: netbase/upgrade-note/radius-ports-pre-3.05
+Type: note
+Description: Important hint for users of radius software
+ The official port numbers of the radius service have been changed
+ from 1645 and 1646 to 1812 and 1813. If you use the radius service
+ please make sure that the client and server software both use the
+ same port numbers.
+Description-ru: ÷ÁÖÎÏÅ ÚÁÍÅÞÁÎÉÅ ÄÌÑ ÐÏÌØÚÏ×ÁÔÅÌÅÊ radius
+ ïÆÉÃÉÁÌØÎÙÅ ÎÏÍÅÒÁ ÐÏÒÔÏ× ÓÅÒ×ÉÓÁ radius ÂÙÌÉ ÉÚÍÅÎÅÎÙ Ó 1645 É 1646 ÎÁ
+ 1812 É 1813. åÓÌÉ ×Ù ÉÓÐÏÌØÚÕÅÔÅ radius, ÔÏ ÕÄÏÓÔÏ×ÅÒØÔÅÓØ, ÞÔÏ É ËÌÉÅÎÔÓËÏÅ,
+ É ÓÅÒ×ÅÒÎÏÅ ÐÒÏÇÒÁÍÍÎÏÅ ÏÂÅÓÐÅÞÅÎÉÅ ÉÓÐÏÌØÚÕÀÔ ÏÄÉÎÁËÏ×ÙÅ ÎÏÍÅÒÁ ÐÏÒÔÏ×.
+
+Template: netbase/upgrade-note/portmap-restart-pre-3.11-2
+Type: note
+Description: The old portmapper is still running.
+ The old portmapper is still running. This will cause problems, mainly that
+ "/etc/init.d/portmap stop" won't actually do anything. To fix this, I'm
+ going to try to forcibly stop portmap, and then restart it.
+Description-ru: óÔÁÒÙÊ portmapper ÏÓÔÁÅÔÓÑ ÒÁÂÏÔÁÀÝÉÍ. 
+ óÔÁÒÙÊ portmapper ÏÓÔÁÅÔÓÑ ÒÁÂÏÔÁÀÝÉÍ. üÔÏ ÍÏÖÅÔ ÐÒÉ×ÅÓÔÉ Ë ÐÒÏÂÌÅÍÁÍ,
+ × ÏÓÎÏ×ÎÏÍ ÉÚ-ÚÁ ÔÏÇÏ, ÞÔÏ "/etc/init.d/portmap stop" × ÄÅÊÓÔ×ÉÔÅÌØÎÏÓÔÉ
+ ÎÅ ÂÕÄÅÔ ÞÔÏ-ÌÉÂÏ ÄÅÌÁÔØ. þÔÏÂÙ ÜÔÏ ÉÓÐÒÁ×ÉÔØ, ÎÕÖÎÏ ÐÒÉÎÕÄÉÔÅÌØÎÏ
+ ÐÒÉÂÉÔØ portmap É ÚÁÔÅÍ ÐÅÒÅÚÁÐÕÓÔÉÔØ ÅÇÏ.
+
+Template: netbase/upgrade-note/init.d-split-pre-3.16-1
+Type: note
+Description: /etc/init.d/netbase has been split.
+ /etc/init.d/netbase is no longer required or used.
+ .
+ /etc/init.d/portmap (provided by the portmap package) now handles
+ stopping and starting the portmapper, /etc/init.d/inetd (provided by
+ the netkit-inetd package) handles stopping and starting inetd, and
+ /etc/init.d/networking handles spoof protection.
+Description-ru: /etc/init.d/netbase ÂÙÌ ÒÁÚÄÅÌÅÎ.
+ /etc/init.d/netbase ÂÏÌØÛÅ ÎÅ ÔÒÅÂÕÅÔÓÑ É ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ.
+ .
+ úÁÐÕÓËÏÍ É ÏÓÔÁÎÏ×ËÏÊ portmapper`Á ÔÅÐÅÒØ ÚÁÎÉÍÁÅÔÓÑ /etc/init.d/portmap
+ (ÐÏÓÔÁ×ÌÑÅÍÙÊ × ÐÁËÅÔÅ portmap), /etc/init.d/inetd (ÐÏÓÔÁ×ÌÑÅÍÙÊ × ÐÁËÅÔÅ
+ netkit-inetd) ÏÂÓÌÕÖÉ×ÁÅÔ ÏÓÔÁÎÏ×ËÕ É ÚÁÐÕÓË inetd, É
+ /etc/init.d/networking ÚÁÎÉÍÁÅÔÓÑ ÚÁÝÉÔÏÊ ÏÔ ÐÏÄÄÅÌËÉ ÁÄÒÅÓÏ×.
+
+Template: netbase/upgrade-note/etc-network-interfaces-pre-3.17-1
+Type: note
+Description: /etc/init.d/network superceded by /etc/network/interfaces
+ /etc/init.d/network is no longer directly supported. You may, of course,
+ continue using it to setup your networking, however new Debian installs
+ will use the ifup/ifdown commands to configure network interfaces based
+ on the settings in /etc/network/interfaces.
+ .
+ If you do convert to using /etc/network/interfaces in place of
+ /etc/init.d/network you will probably want to remove /etc/init.d/network
+ and the /etc/rcS.d/S40network symlink. These will not be touched by
+ netbase or other Debian packages in future.
+ .
+ Note that the old default /etc/init.d/network used to add a route for the
+ loopback interface. This is no longer necessary for 2.2.x series kernels,
+ and will result in a (non-fatal) SIOCADDRT error message at bootup.
+Description-ru: /etc/init.d/network ÚÁÍÅÎÅΠÆÁÊÌÏÍ /etc/network/interfaces
+ /etc/init.d/network ÂÏÌØÛÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÎÁÐÒÑÍÕÀ. ëÏÎÅÞÎÏ, ×Ù ÍÏÖÅÔÅ,
+ ÐÒÏÄÏÌÖÁÔØ ÉÍ ÐÏÌØÚÏ×ÁÔØÓÑ ÄÌÑ ÎÁÓÔÒÏÊËÉ ×ÁÛÅÊ ÓÅÔÉ, ÏÄÎÁËÏ ÎÏ×ÙÅ ÕÓÔÁÎÏ×ÝÉËÉ
+ Debian ÂÕÄÕÔ ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ÎÁÓÔÒÏÊËÉ ÓÅÔÅ×ÙÈ ÉÎÔÅÒÆÅÊÓÏ× ËÏÍÁÎÄÙ
+ ifup/ifdown, ËÏÔÏÒÙÅ ÞÉÔÁÀÔ ÎÁÓÔÒÏÊËÉ ÉÚ ÆÁÊÌÁ /etc/network/interfaces.
+ .
+ åÓÌÉ ×Ù ÐÒÏÉÚ×ÏÄÉÔÅ ÐÒÅÏÂÒÁÚÏ×ÁÎÉÑ ÄÌÑ ÐÒÉÍÅÎÅÎÉÑ /etc/network/interfaces
+ ×ÚÁÍÅΠ/etc/init.d/network, ÔÏ ×ÏÚÍÏÖÎÏ ×Ù ÚÁÈÏÔÉÔÅ ÕÄÁÌÉÔØ ÆÁÊÌ
+ /etc/init.d/network É ÓÉÍ×ÏÌÉÞÅÓËÕÀ Ó×ÑÚØ /etc/rcS.d/S40network. üÔÉ ÄÅÊÓÔ×ÉÑ
+ ÎÅ ÂÕÄÕÔ ÐÒÅÄÐÒÉÎÉÍÁÔØÓÑ ÐÁËÅÔÏÍ netbase ÉÌÉ ÄÒÕÇÉÍÉ ÐÁËÅÔÁÍÉ Debian × ÂÕÄÕÝÅÍ.
+ .
+ ïÂÒÁÔÉÔÅ ×ÎÉÍÁÎÉÅ, ÎÁ ÔÏ, ÞÔÏ ÓÔÁÒÙÊ ÆÁÊÌ /etc/init.d/network ÉÓÐÏÌØÚÕÅÔÓÑ ÄÌÑ
+ ÄÏÂÁ×ÌÅÎÉÑ ÍÁÒÛÒÕÔÁ ÄÌÑ ÉÎÔÅÒÆÅÊÓÁ loopback. üÔÏ ÂÏÌÅÅ ÎÅ ÔÒÅÂÕÅÔÓÑ ÄÌÑ ÑÄÅÒ
+ ÓÅÒÉÉ 2.2.x, É ÂÕÄÅÔ ÐÒÉ×ÏÄÉÔØ Ë ×ÙÄÁÞÅ ÓÏÏÂÝÅÎÉÑ Ï (ÎÅÆÁÔÁÌØÎÏÊ) ÏÛÉÂËÅ SIOCADDRT.
+
+Template: netbase/ipv6-hosts
+Type: boolean
+Default: true
+Description: Would you like IPv6 addresses added to /etc/hosts?
+ Sooner or later, Debian will include out-of-the box support
+ for IPv6 (see http://www.ipv6.org/). As such, you might like
+ to start playing with this, and seeing what things break as
+ we try to add support for IPv6.
+Description-ru: ÷Ù ÈÏÔÅÌÉ ÂÙ ÄÏÂÁ×ÉÔØ ÁÄÒÅÓÁ IPv6 × ÆÁÊÌ /etc/hosts?
+ òÁÎØÛÅ ÉÌÉ ÐÏÚÖÅ, ÎÏ Debian ÂÕÄÅÔ ×ËÌÀÞÁÔØ ÐÏÄÄÅÒÖËÕ "ÉÚ ËÏÒÏÂËÉ"
+ ÐÒÏÔÏËÏÌÁ IPv6 (ÓÍ. http://www.ipv6.org/). ÷ Ó×ÑÚÉ Ó ÜÔÉÍ ×ÁÍ ×ÏÚÍÏÖÎÏ
+ ÚÁÈÏÞÅÔÓÑ ÕÖÅ ÓÅÊÞÁÓ ÐÏÉÇÒÁÔØÓÑ É ÐÏÓÍÏÔÒÅÔØ, ÞÔÏ É ÇÄÅ ÓÌÏÍÁÅÔÓÑ, ÅÓÌÉ 
+ ÄÏÂÁ×ÉÔØ ÐÏÄÄÅÒÖËÕ IPv6.
+
+Template: netbase/spoofprot
+Type: note
+Description: Spoof protection for pre-2.2 kernels
+ If you are running a pre-2.2 series kernel, IP spoof 
+ protection cannot be enabled without special configuration,
+ found in /etc/network/spoof-protect and provided by answering
+ the following questions. 
+ .
+ For 2.2.x and later kernels, this information will be determined
+ automatically at boot time, so you don't need to enter anything here
+ unless you also use pre-2.2 kernels.
+Description-ru: úÁÝÉÔÁ ÏÔ ÐÏÄÄÅÌËÉ IP ÁÄÒÅÓÏ× ÄÌÑ ÑÄÅÒ ×ÅÒÓÉÊ ÄÏ 2.2
+ åÓÌÉ ×Ù ÐÏÌØÚÕÅÔÅÓØ ÑÄÒÏÍ ×ÅÒÓÉÉ ÄÏ 2.2, ÔÏ ÚÁÝÉÔÁ ÏÔ ÐÏÄÄÅÌËÉ IP ÁÄÒÅÓÏ× 
+ ÎÅ ÍÏÖÅÔ ÂÙÔØ ×ËÌÀÞÅÎÁ ÂÅÚ ÓÐÅÃÉÁÌØÎÏÊ ÎÁÓÔÒÏÊËÉ, ÎÁÈÏÄÑÝÅÊÓÑ × ÆÁÊÌÅ
+ /etc/network/spoof-protect É ÐÒÅÄÏÓÔÁ×ÌÑÅÍÏÊ ÐÏÓÌÅ ÏÔ×ÅÔÁ ÎÁ ÓÌÅÄÕÀÝÉÅ
+ ÄÁÌÅÅ ×ÏÐÒÏÓÙ.
+ .
+ äÌÑ ÑÄÅÒ 2.2 É ÂÏÌÅÅ ÐÏÚÄÎÉÈ ÜÔÁ ÉÎÆÏÒÍÁÃÉÑ ÏÐÒÅÄÅÌÑÅÔÓÑ Á×ÔÏÍÁÔÉÞÅÓËÉ
+ ÐÒÉ ÚÁÇÒÕÚËÅ ÓÉÓÔÅÍÙ, ÔÁË ÞÔÏ ×ÁÍ ÎÉÞÅÇÏ ÎÅ ÎÕÖÎÏ ÄÅÌÁÔØ ÓÐÅÃÉÁÌØÎÏ, ÅÓÌÉ
+ ÔÏÌØËÏ ×Ù ÎÅ ÉÓÐÏÌØÚÕÅÔÅ ÑÄÒÏ ×ÅÒÓÉÉ ÄÏ 2.2.
+
+Template: netbase/spoofprot/pre-2.2-ip
+Type: string
+Default: 127.0.0.1/8
+Description: What IP addresses (or address ranges) should be considered local?
+ IP addresses and ranges should be listed in any order, and separated by 
+ spaces. Addresses should be specified as a dotted quad, while ranges should
+ be specified in CIDR-style. So the class C network 192.168.42.0-192.168.42.255
+ would be specified as 192.168.42.0/24.
+Description-ru: ëÁËÉÅ IP ÁÄÒÅÓÁ (ÉÌÉ ÁÄÒÅÓÎÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï) ÄÏÌÖÎÙ ÓÞÉÔÁÔØÓÑ ÌÏËÁÌØÎÙÍÉ?
+ IP ÁÄÒÅÓÁ É ÐÒÏÓÔÒÁÎÓÔ×Á ÄÏÌÖÎÙ ÕËÁÚÙ×ÁÔØÓÑ × ÌÀÂÏÍ ÐÏÒÑÄËÅ É ÒÁÚÄÅÌÑÔØÓÑ ÐÒÏÂÅÌÁÍÉ.
+ áÄÒÅÓÁÄÏÌÖÎÙ ÂÙÔØ ÕËÁÚÁÎÙ × ÔÏÞÅÞÎÏÊ ÎÏÔÁÃÉÉ, ÐÒÏÓÔÒÁÎÓÔ×Á ÁÄÒÅÓÏ× ÕËÁÚÙ×ÁÀÔÓÑ ×
+ CIDR-ÓÔÉÌÅ. ôÁË ÓÅÔØ ËÌÁÓÓÁ C 192.168.42.0-192.168.42.255 ÄÏÌÖÎÁ ÂÙÔØ ÕËÁÚÁÎÁ ËÁË
+ 192.168.42.0/24.
+
+Template: netbase/spoofprot/pre-2.2-interfaces
+Type: string
+Default: eth0 eth1 ppp0
+Description: What remote interfaces does this host have?
+Description-ru: ëÁËÉÅ ÕÄÁÌÅÎÎÙÅ ÉÎÔÅÒÆÅÊÓÙ ÄÏÌÖÅΠÉÍÅÔØ ÜÔÏÔ ÈÏÓÔ?
diff --git a/etc-gateways b/etc-gateways
new file mode 100644 (file)
index 0000000..1958fa8
--- /dev/null
@@ -0,0 +1,3 @@
+# /etc/gateways:
+#
+#<net | host> NAME1 gateway NAME2 metric VALUE <passive | active | external> 
diff --git a/etc-hosts b/etc-hosts
new file mode 100644 (file)
index 0000000..400b703
--- /dev/null
+++ b/etc-hosts
@@ -0,0 +1,2 @@
+127.0.0.1      localhost
+192.168.129.3  phone
diff --git a/etc-protocols b/etc-protocols
new file mode 100644 (file)
index 0000000..00d2cf8
--- /dev/null
@@ -0,0 +1,56 @@
+# Internet (IP) protocols
+#
+# Updated from http://www.iana.org/assignments/protocol-numbers and other
+# sources.
+# New protocols will be added on request if they have been officially
+# assigned by IANA and are not historical.
+# If you need a huge list of used numbers please install the nmap package.
+
+ip     0       IP              # internet protocol, pseudo protocol number
+#hopopt        0       HOPOPT          # IPv6 Hop-by-Hop Option [RFC1883]
+icmp   1       ICMP            # internet control message protocol
+igmp   2       IGMP            # Internet Group Management
+ggp    3       GGP             # gateway-gateway protocol
+ipencap        4       IP-ENCAP        # IP encapsulated in IP (officially ``IP'')
+st     5       ST              # ST datagram mode
+tcp    6       TCP             # transmission control protocol
+egp    8       EGP             # exterior gateway protocol
+igp    9       IGP             # any private interior gateway (Cisco)
+pup    12      PUP             # PARC universal packet protocol
+udp    17      UDP             # user datagram protocol
+hmp    20      HMP             # host monitoring protocol
+xns-idp        22      XNS-IDP         # Xerox NS IDP
+rdp    27      RDP             # "reliable datagram" protocol
+iso-tp4        29      ISO-TP4         # ISO Transport Protocol class 4 [RFC905]
+xtp    36      XTP             # Xpress Transfer Protocol
+ddp    37      DDP             # Datagram Delivery Protocol
+idpr-cmtp 38   IDPR-CMTP       # IDPR Control Message Transport
+ipv6   41      IPv6            # Internet Protocol, version 6
+ipv6-route 43  IPv6-Route      # Routing Header for IPv6
+ipv6-frag 44   IPv6-Frag       # Fragment Header for IPv6
+idrp   45      IDRP            # Inter-Domain Routing Protocol
+rsvp   46      RSVP            # Reservation Protocol
+gre    47      GRE             # General Routing Encapsulation
+esp    50      IPSEC-ESP       # Encap Security Payload [RFC2406]
+ah     51      IPSEC-AH        # Authentication Header [RFC2402]
+skip   57      SKIP            # SKIP
+ipv6-icmp 58   IPv6-ICMP       # ICMP for IPv6
+ipv6-nonxt 59  IPv6-NoNxt      # No Next Header for IPv6
+ipv6-opts 60   IPv6-Opts       # Destination Options for IPv6
+rspf   73      RSPF CPHB       # Radio Shortest Path First (officially CPHB)
+vmtp   81      VMTP            # Versatile Message Transport
+eigrp  88      EIGRP           # Enhanced Interior Routing Protocol (Cisco)
+ospf   89      OSPFIGP         # Open Shortest Path First IGP
+ax.25  93      AX.25           # AX.25 frames
+ipip   94      IPIP            # IP-within-IP Encapsulation Protocol
+etherip        97      ETHERIP         # Ethernet-within-IP Encapsulation [RFC3378]
+encap  98      ENCAP           # Yet Another IP encapsulation [RFC1241]
+#      99                      # any private encryption scheme
+pim    103     PIM             # Protocol Independent Multicast
+ipcomp 108     IPCOMP          # IP Payload Compression Protocol
+vrrp   112     VRRP            # Virtual Router Redundancy Protocol
+l2tp   115     L2TP            # Layer Two Tunneling Protocol [RFC2661]
+isis   124     ISIS            # IS-IS over IPv4
+sctp   132     SCTP            # Stream Control Transmission Protocol
+fc     133     FC              # Fibre Channel
+
diff --git a/etc-rpc b/etc-rpc
new file mode 100644 (file)
index 0000000..1b30625
--- /dev/null
+++ b/etc-rpc
@@ -0,0 +1,40 @@
+# This file contains user readable names that can be used in place of rpc
+# program numbers.
+
+portmapper     100000  portmap sunrpc
+rstatd         100001  rstat rstat_svc rup perfmeter
+rusersd                100002  rusers
+nfs            100003  nfsprog
+ypserv         100004  ypprog
+mountd         100005  mount showmount
+ypbind         100007
+walld          100008  rwall shutdown
+yppasswdd      100009  yppasswd
+etherstatd     100010  etherstat
+rquotad                100011  rquotaprog quota rquota
+sprayd         100012  spray
+3270_mapper    100013
+rje_mapper     100014
+selection_svc  100015  selnsvc
+database_svc   100016
+rexd           100017  rex
+alis           100018
+sched          100019
+llockmgr       100020
+nlockmgr       100021
+x25.inr                100022
+statmon                100023
+status         100024
+bootparam      100026
+ypupdated      100028  ypupdate
+keyserv                100029  keyserver
+tfsd           100037 
+nsed           100038
+nsemntd                100039
+ypxfrd         100069
+pcnfsd         150001
+amd            300019  amq
+sgi_fam                391002
+ugidd          545580417
+fypxfrd                600100069       freebsd-ypxfrd
+bwnfsd          788585389
diff --git a/etc-services b/etc-services
new file mode 100644 (file)
index 0000000..e36a18d
--- /dev/null
@@ -0,0 +1,535 @@
+# Network services, Internet style
+#
+# Note that it is presently the policy of IANA to assign a single well-known
+# port number for both TCP and UDP; hence, officially ports have two entries
+# even if the protocol doesn't support UDP operations.
+#
+# Updated from http://www.iana.org/assignments/port-numbers and other
+# sources like http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/services .
+# New ports will be added on request if they have been officially assigned
+# by IANA and used in the real-world or are needed by a debian package.
+# If you need a huge list of used numbers please install the nmap package.
+
+tcpmux         1/tcp                           # TCP port service multiplexer
+echo           7/tcp
+echo           7/udp
+discard                9/tcp           sink null
+discard                9/udp           sink null
+systat         11/tcp          users
+daytime                13/tcp
+daytime                13/udp
+netstat                15/tcp
+qotd           17/tcp          quote
+msp            18/tcp                          # message send protocol
+msp            18/udp
+chargen                19/tcp          ttytst source
+chargen                19/udp          ttytst source
+ftp-data       20/tcp
+ftp            21/tcp
+fsp            21/udp          fspd
+ssh            22/tcp                          # SSH Remote Login Protocol
+ssh            22/udp
+telnet         23/tcp
+smtp           25/tcp          mail
+time           37/tcp          timserver
+time           37/udp          timserver
+rlp            39/udp          resource        # resource location
+nameserver     42/tcp          name            # IEN 116
+whois          43/tcp          nicname
+tacacs         49/tcp                          # Login Host Protocol (TACACS)
+tacacs         49/udp
+re-mail-ck     50/tcp                          # Remote Mail Checking Protocol
+re-mail-ck     50/udp
+domain         53/tcp          nameserver      # name-domain server
+domain         53/udp          nameserver
+mtp            57/tcp                          # deprecated
+tacacs-ds      65/tcp                          # TACACS-Database Service
+tacacs-ds      65/udp
+bootps         67/tcp                          # BOOTP server
+bootps         67/udp
+bootpc         68/tcp                          # BOOTP client
+bootpc         68/udp
+tftp           69/udp
+gopher         70/tcp                          # Internet Gopher
+gopher         70/udp
+rje            77/tcp          netrjs
+finger         79/tcp
+www            80/tcp          http            # WorldWideWeb HTTP
+www            80/udp                          # HyperText Transfer Protocol
+link           87/tcp          ttylink
+kerberos       88/tcp          kerberos5 krb5 kerberos-sec     # Kerberos v5
+kerberos       88/udp          kerberos5 krb5 kerberos-sec     # Kerberos v5
+supdup         95/tcp
+hostnames      101/tcp         hostname        # usually from sri-nic
+iso-tsap       102/tcp         tsap            # part of ISODE
+acr-nema       104/tcp         dicom           # Digital Imag. & Comm. 300
+acr-nema       104/udp         dicom           # Digital Imag. & Comm. 300
+csnet-ns       105/tcp         cso-ns          # also used by CSO name server
+csnet-ns       105/udp         cso-ns
+rtelnet                107/tcp                         # Remote Telnet
+rtelnet                107/udp
+pop2           109/tcp         postoffice pop-2 # POP version 2
+pop2           109/udp         pop-2
+pop3           110/tcp         pop-3           # POP version 3
+pop3           110/udp         pop-3
+sunrpc         111/tcp         portmapper      # RPC 4.0 portmapper
+sunrpc         111/udp         portmapper
+auth           113/tcp         authentication tap ident
+sftp           115/tcp
+uucp-path      117/tcp
+nntp           119/tcp         readnews untp   # USENET News Transfer Protocol
+ntp            123/tcp
+ntp            123/udp                         # Network Time Protocol
+pwdgen         129/tcp                         # PWDGEN service
+pwdgen         129/udp                         # PWDGEN service
+loc-srv                135/tcp         epmap           # Location Service
+loc-srv                135/udp         epmap
+netbios-ns     137/tcp                         # NETBIOS Name Service
+netbios-ns     137/udp
+netbios-dgm    138/tcp                         # NETBIOS Datagram Service
+netbios-dgm    138/udp
+netbios-ssn    139/tcp                         # NETBIOS session service
+netbios-ssn    139/udp
+imap2          143/tcp         imap            # Interim Mail Access P 2 and 4
+imap2          143/udp         imap
+snmp           161/tcp                         # Simple Net Mgmt Protocol
+snmp           161/udp                         # Simple Net Mgmt Protocol
+snmp-trap      162/tcp         snmptrap        # Traps for SNMP
+snmp-trap      162/udp         snmptrap        # Traps for SNMP
+cmip-man       163/tcp                         # ISO mgmt over IP (CMOT)
+cmip-man       163/udp
+cmip-agent     164/tcp
+cmip-agent     164/udp
+mailq          174/tcp                 # Mailer transport queue for Zmailer
+mailq          174/udp                 # Mailer transport queue for Zmailer
+xdmcp          177/tcp                         # X Display Mgr. Control Proto
+xdmcp          177/udp
+nextstep       178/tcp         NeXTStep NextStep       # NeXTStep window
+nextstep       178/udp         NeXTStep NextStep       #  server
+bgp            179/tcp                         # Border Gateway Protocol
+bgp            179/udp
+prospero       191/tcp                         # Cliff Neuman's Prospero
+prospero       191/udp
+irc            194/tcp                         # Internet Relay Chat
+irc            194/udp
+smux           199/tcp                         # SNMP Unix Multiplexer
+smux           199/udp
+at-rtmp                201/tcp                         # AppleTalk routing
+at-rtmp                201/udp
+at-nbp         202/tcp                         # AppleTalk name binding
+at-nbp         202/udp
+at-echo                204/tcp                         # AppleTalk echo
+at-echo                204/udp
+at-zis         206/tcp                         # AppleTalk zone information
+at-zis         206/udp
+qmtp           209/tcp                         # Quick Mail Transfer Protocol
+qmtp           209/udp                         # Quick Mail Transfer Protocol
+z3950          210/tcp         wais            # NISO Z39.50 database
+z3950          210/udp         wais
+ipx            213/tcp                         # IPX
+ipx            213/udp
+imap3          220/tcp                         # Interactive Mail Access
+imap3          220/udp                         # Protocol v3
+pawserv                345/tcp                         # Perf Analysis Workbench
+pawserv                345/udp
+zserv          346/tcp                         # Zebra server
+zserv          346/udp
+fatserv                347/tcp                         # Fatmen Server
+fatserv                347/udp
+rpc2portmap    369/tcp
+rpc2portmap    369/udp                         # Coda portmapper
+codaauth2      370/tcp
+codaauth2      370/udp                         # Coda authentication server
+clearcase      371/tcp         Clearcase
+clearcase      371/udp         Clearcase
+ulistserv      372/tcp                         # UNIX Listserv
+ulistserv      372/udp
+ldap           389/tcp                 # Lightweight Directory Access Protocol
+ldap           389/udp
+imsp           406/tcp                 # Interactive Mail Support Protocol
+imsp           406/udp
+https          443/tcp                         # http protocol over TLS/SSL
+https          443/udp
+snpp           444/tcp                         # Simple Network Paging Protocol
+snpp           444/udp
+microsoft-ds   445/tcp                         # Microsoft Naked CIFS
+microsoft-ds   445/udp
+saft           487/tcp                 # Simple Asynchronous File Transfer
+saft           487/udp
+isakmp         500/tcp                 # IPsec - Internet Security Association
+isakmp         500/udp                 #  and Key Management Protocol
+rtsp           554/tcp                 # Real Time Stream Control Protocol
+rtsp           554/udp                 # Real Time Stream Control Protocol
+nqs            607/tcp                         # Network Queuing system
+nqs            607/udp
+npmp-local     610/tcp         dqs313_qmaster          # npmp-local / DQS
+npmp-local     610/udp         dqs313_qmaster
+npmp-gui       611/tcp         dqs313_execd            # npmp-gui / DQS
+npmp-gui       611/udp         dqs313_execd
+hmmp-ind       612/tcp         dqs313_intercell        # HMMP Indication / DQS
+hmmp-ind       612/udp         dqs313_intercell
+ipp            631/tcp                         # Internet Printing Protocol
+ipp            631/udp
+#
+# UNIX specific services
+#
+exec           512/tcp
+biff           512/udp         comsat
+login          513/tcp
+who            513/udp         whod
+shell          514/tcp         cmd             # no passwords used
+syslog         514/udp
+printer                515/tcp         spooler         # line printer spooler
+talk           517/udp
+ntalk          518/udp
+route          520/udp         router routed   # RIP
+timed          525/udp         timeserver
+tempo          526/tcp         newdate
+courier                530/tcp         rpc
+conference     531/tcp         chat
+netnews                532/tcp         readnews
+netwall                533/udp                         # for emergency broadcasts
+gdomap         538/tcp                         # GNUstep distributed objects
+gdomap         538/udp
+uucp           540/tcp         uucpd           # uucp daemon
+klogin         543/tcp                         # Kerberized `rlogin' (v5)
+kshell         544/tcp         krcmd           # Kerberized `rsh' (v5)
+afpovertcp     548/tcp                         # AFP over TCP
+afpovertcp     548/udp
+remotefs       556/tcp         rfs_server rfs  # Brunhoff remote filesystem
+nntps          563/tcp         snntp           # NNTP over SSL
+nntps          563/udp         snntp
+submission     587/tcp                         # Submission [RFC2476]
+submission     587/udp
+ldaps          636/tcp                         # LDAP over SSL
+ldaps          636/udp
+tinc           655/tcp                         # tinc control port
+tinc           655/udp
+silc           706/tcp
+silc           706/udp
+kerberos-adm   749/tcp                         # Kerberos `kadmin' (v5)
+#
+webster                765/tcp                         # Network dictionary
+webster                765/udp
+rsync          873/tcp
+rsync          873/udp
+ftps-data      989/tcp                         # FTP over SSL (data)
+ftps           990/tcp
+telnets                992/tcp                         # Telnet over SSL
+telnets                992/udp
+imaps          993/tcp                         # IMAP over SSL
+imaps          993/udp
+ircs           994/tcp                         # IRC over SSL
+ircs           994/udp
+pop3s          995/tcp                         # POP-3 over SSL
+pop3s          995/udp
+#
+# From ``Assigned Numbers'':
+#
+#> The Registered Ports are not controlled by the IANA and on most systems
+#> can be used by ordinary user processes or programs executed by ordinary
+#> users.
+#
+#> Ports are used in the TCP [45,106] to name the ends of logical
+#> connections which carry long term conversations.  For the purpose of
+#> providing services to unknown callers, a service contact port is
+#> defined.  This list specifies the port used by the server process as its
+#> contact port.  While the IANA can not control uses of these ports it
+#> does register or list uses of these ports as a convienence to the
+#> community.
+#
+socks          1080/tcp                        # socks proxy server
+socks          1080/udp
+proofd         1093/tcp
+proofd         1093/udp
+rootd          1094/tcp
+rootd          1094/udp
+openvpn                1194/tcp
+openvpn                1194/udp
+rmiregistry    1099/tcp                        # Java RMI Registry
+rmiregistry    1099/udp
+kazaa          1214/tcp
+kazaa          1214/udp
+nessus         1241/tcp                        # Nessus vulnerability
+nessus         1241/udp                        #  assessment scanner
+lotusnote      1352/tcp        lotusnotes      # Lotus Note
+lotusnote      1352/udp        lotusnotes
+ms-sql-s       1433/tcp                        # Microsoft SQL Server
+ms-sql-s       1433/udp
+ms-sql-m       1434/tcp                        # Microsoft SQL Monitor
+ms-sql-m       1434/udp
+ingreslock     1524/tcp
+ingreslock     1524/udp
+prospero-np    1525/tcp                        # Prospero non-privileged
+prospero-np    1525/udp
+datametrics    1645/tcp        old-radius
+datametrics    1645/udp        old-radius
+sa-msg-port    1646/tcp        old-radacct
+sa-msg-port    1646/udp        old-radacct
+kermit         1649/tcp
+kermit         1649/udp
+l2f            1701/tcp        l2tp
+l2f            1701/udp        l2tp
+radius         1812/tcp
+radius         1812/udp
+radius-acct    1813/tcp        radacct         # Radius Accounting
+radius-acct    1813/udp        radacct
+unix-status    1957/tcp                        # remstats unix-status server
+log-server     1958/tcp                        # remstats log server
+remoteping     1959/tcp                        # remstats remoteping server
+nfs            2049/tcp                        # Network File System
+nfs            2049/udp                        # Network File System
+rtcm-sc104     2101/tcp                        # RTCM SC-104 IANA 1/29/99
+rtcm-sc104     2101/udp
+cvspserver     2401/tcp                        # CVS client/server operations
+cvspserver     2401/udp
+venus          2430/tcp                        # codacon port
+venus          2430/udp                        # Venus callback/wbc interface
+venus-se       2431/tcp                        # tcp side effects
+venus-se       2431/udp                        # udp sftp side effect
+codasrv                2432/tcp                        # not used
+codasrv                2432/udp                        # server port
+codasrv-se     2433/tcp                        # tcp side effects
+codasrv-se     2433/udp                        # udp sftp side effect
+mon            2583/tcp                        # MON
+mon            2583/udp
+dict           2628/tcp                        # Dictionary server
+dict           2628/udp
+gpsd           2947/tcp
+gpsd           2947/udp
+gds_db         3050/tcp                        # InterBase server
+gds_db         3050/udp
+icpv2          3130/tcp        icp             # Internet Cache Protocol
+icpv2          3130/udp        icp
+mysql          3306/tcp
+mysql          3306/udp
+nut            3493/tcp                        # Network UPS Tools
+nut            3493/udp
+distcc         3632/tcp                        # distributed compiler
+distcc         3632/udp
+daap           3689/tcp                        # Digital Audio Access Protocol
+daap           3689/udp
+svn            3690/tcp        subversion      # Subversion protocol
+svn            3690/udp        subversion
+iax            4569/tcp                        # Inter-Asterisk eXchange
+iax            4569/udp
+radmin-port    4899/tcp                        # RAdmin Port
+radmin-port    4899/udp
+rfe            5002/udp                        # Radio Free Ethernet
+rfe            5002/tcp
+sip            5060/tcp                        # Session Initiation Protocol
+sip            5060/udp
+sip-tls                5061/tcp
+sip-tls                5061/udp
+xmpp-client    5222/tcp        jabber-client   # Jabber Client Connection
+xmpp-client    5222/udp        jabber-client
+xmpp-server    5269/tcp        jabber-server   # Jabber Server Connection
+xmpp-server    5269/udp        jabber-server
+cfengine       5308/tcp
+cfengine       5308/udp
+postgresql     5432/tcp        postgres        # PostgreSQL Database
+postgresql     5432/udp        postgres
+x11            6000/tcp        x11-0           # X Window System
+x11            6000/udp        x11-0
+x11-1          6001/tcp
+x11-1          6001/udp
+x11-2          6002/tcp
+x11-2          6002/udp
+x11-3          6003/tcp
+x11-3          6003/udp
+x11-4          6004/tcp
+x11-4          6004/udp
+x11-5          6005/tcp
+x11-5          6005/udp
+x11-6          6006/tcp
+x11-6          6006/udp
+x11-7          6007/tcp
+x11-7          6007/udp
+gnutella-svc   6346/tcp                        # gnutella
+gnutella-svc   6346/udp
+gnutella-rtr   6347/tcp                        # gnutella 
+gnutella-rtr   6347/udp
+afs3-fileserver 7000/tcp       bbs             # file server itself
+afs3-fileserver 7000/udp       bbs
+afs3-callback  7001/tcp                        # callbacks to cache managers
+afs3-callback  7001/udp
+afs3-prserver  7002/tcp                        # users & groups database
+afs3-prserver  7002/udp
+afs3-vlserver  7003/tcp                        # volume location database
+afs3-vlserver  7003/udp
+afs3-kaserver  7004/tcp                        # AFS/Kerberos authentication
+afs3-kaserver  7004/udp
+afs3-volser    7005/tcp                        # volume managment server
+afs3-volser    7005/udp
+afs3-errors    7006/tcp                        # error interpretation service
+afs3-errors    7006/udp
+afs3-bos       7007/tcp                        # basic overseer process
+afs3-bos       7007/udp
+afs3-update    7008/tcp                        # server-to-server updater
+afs3-update    7008/udp
+afs3-rmtsys    7009/tcp                        # remote cache manager service
+afs3-rmtsys    7009/udp
+font-service   7100/tcp        xfs             # X Font Service
+font-service   7100/udp        xfs
+bacula-dir     9101/tcp                        # Bacula Director
+bacula-dir     9101/udp
+bacula-fd      9102/tcp                        # Bacula File Daemon
+bacula-fd      9102/udp
+bacula-sd      9103/tcp                        # Bacula Storage Daemon
+bacula-sd      9103/udp
+amanda         10080/tcp                       # amanda backup services
+amanda         10080/udp
+hkp            11371/tcp                       # OpenPGP HTTP Keyserver
+hkp            11371/udp                       # OpenPGP HTTP Keyserver
+bprd           13720/tcp                       # VERITAS NetBackup
+bprd           13720/udp
+bpdbm          13721/tcp                       # VERITAS NetBackup
+bpdbm          13721/udp
+bpjava-msvc    13722/tcp                       # BP Java MSVC Protocol
+bpjava-msvc    13722/udp
+vnetd          13724/tcp                       # Veritas Network Utility
+vnetd          13724/udp
+bpcd           13782/tcp                       # VERITAS NetBackup
+bpcd           13782/udp
+vopied         13783/tcp                       # VERITAS NetBackup
+vopied         13783/udp
+wnn6           22273/tcp                       # wnn6
+wnn6           22273/udp
+
+#
+# Datagram Delivery Protocol services
+#
+rtmp           1/ddp                   # Routing Table Maintenance Protocol
+nbp            2/ddp                   # Name Binding Protocol
+echo           4/ddp                   # AppleTalk Echo Protocol
+zip            6/ddp                   # Zone Information Protocol
+
+#=========================================================================
+# The remaining port numbers are not as allocated by IANA.
+#=========================================================================
+
+# Kerberos (Project Athena/MIT) services
+# Note that these are for Kerberos v4, and are unofficial.  Sites running
+# v4 should uncomment these and comment out the v5 entries above.
+#
+kerberos4      750/udp         kerberos-iv kdc # Kerberos (server)
+kerberos4      750/tcp         kerberos-iv kdc
+kerberos_master        751/udp                         # Kerberos authentication
+kerberos_master        751/tcp 
+passwd_server  752/udp                         # Kerberos passwd server
+krb_prop       754/tcp         krb5_prop hprop # Kerberos slave propagation
+krbupdate      760/tcp         kreg            # Kerberos registration
+kpasswd                761/tcp         kpwd            # Kerberos "passwd"
+swat           901/tcp                         # swat
+kpop           1109/tcp                        # Pop with Kerberos
+knetd          2053/tcp                        # Kerberos de-multiplexor
+zephyr-srv     2102/udp                        # Zephyr server
+zephyr-clt     2103/udp                        # Zephyr serv-hm connection
+zephyr-hm      2104/udp                        # Zephyr hostmanager
+eklogin                2105/tcp                        # Kerberos encrypted rlogin
+# Hmmm. Are we using Kv4 or Kv5 now? Worrying.
+# The following is probably Kerberos v5  --- ajt@debian.org (11/02/2000)
+kx             2111/tcp                        # X over Kerberos
+iprop          2121/tcp                        # incremental propagation
+#
+# Unofficial but necessary (for NetBSD) services
+#
+supfilesrv     871/tcp                         # SUP server
+supfiledbg     1127/tcp                        # SUP debugging
+
+#
+# Services added for the Debian GNU/Linux distribution
+#
+linuxconf      98/tcp                          # LinuxConf
+poppassd       106/tcp                         # Eudora
+poppassd       106/udp
+ssmtp          465/tcp         smtps           # SMTP over SSL
+moira_db       775/tcp                         # Moira database
+moira_update   777/tcp                         # Moira update protocol
+moira_ureg     779/udp                         # Moira user registration
+spamd          783/tcp                         # spamassassin daemon
+omirr          808/tcp         omirrd          # online mirror
+omirr          808/udp         omirrd
+customs                1001/tcp                        # pmake customs server
+customs                1001/udp
+skkserv                1178/tcp                        # skk jisho server port
+predict                1210/udp                        # predict -- satellite tracking
+rmtcfg         1236/tcp                        # Gracilis Packeten remote config server
+wipld          1300/tcp                        # Wipl network monitor
+xtel           1313/tcp                        # french minitel
+xtelw          1314/tcp                        # french minitel
+support                1529/tcp                        # GNATS
+sieve          2000/tcp                        # Sieve mail filter daemon
+cfinger                2003/tcp                        # GNU Finger
+ndtp           2010/tcp                        # Network dictionary transfer protocol
+frox           2121/tcp                        # frox: caching ftp proxy
+ninstall       2150/tcp                        # ninstall service
+ninstall       2150/udp
+zebrasrv       2600/tcp                        # zebra service
+zebra          2601/tcp                        # zebra vty
+ripd           2602/tcp                        # ripd vty (zebra)
+ripngd         2603/tcp                        # ripngd vty (zebra)
+ospfd          2604/tcp                        # ospfd vty (zebra)
+bgpd           2605/tcp                        # bgpd vty (zebra)
+ospf6d         2606/tcp                        # ospf6d vty (zebra)
+ospfapi                2607/tcp                        # OSPF-API
+isisd          2608/tcp                        # ISISd vty (zebra)
+afbackup       2988/tcp                        # Afbackup system
+afbackup       2988/udp
+afmbackup      2989/tcp                        # Afmbackup system
+afmbackup      2989/udp
+xtell          4224/tcp                        # xtell server
+fax            4557/tcp                        # FAX transmission service (old)
+hylafax                4559/tcp                        # HylaFAX client-server protocol (new)
+distmp3                4600/tcp                        # distmp3host daemon
+munin          4949/tcp        lrrd            # Munin
+enbd-cstatd    5051/tcp                        # ENBD client statd
+enbd-sstatd    5052/tcp                        # ENBD server statd
+pcrd           5151/tcp                        # PCR-1000 Daemon
+noclog         5354/tcp                        # noclogd with TCP (nocol)
+noclog         5354/udp                        # noclogd with UDP (nocol)
+hostmon                5355/tcp                        # hostmon uses TCP (nocol)
+hostmon                5355/udp                        # hostmon uses UDP (nocol)
+rplay          5555/udp                        # RPlay audio service
+rplay          5555/tcp
+rptp           5556/udp                        # Remote Play Transfer Protocol
+rptp           5556/tcp
+nsca           5667/tcp                        # Nagios Agent - NSCA
+mrtd           5674/tcp                        # MRT Routing Daemon
+bgpsim         5675/tcp                        # MRT Routing Simulator
+canna          5680/tcp                        # cannaserver
+sane-port      6566/tcp        sane saned      # SANE network scanner daemon
+ircd           6667/tcp                        # Internet Relay Chat
+zope-ftp       8021/tcp                        # zope management by ftp
+webcache       8080/tcp                        # WWW caching service
+tproxy         8081/tcp                        # Transparent Proxy
+omniorb                8088/tcp                        # OmniORB
+omniorb                8088/udp
+clc-build-daemon 8990/tcp                      # Common lisp build daemon
+xinetd         9098/tcp
+mandelspawn    9359/udp        mandelbrot      # network mandelbrot
+zope           9673/tcp                        # zope server
+kamanda                10081/tcp                       # amanda backup services (Kerberos)
+kamanda                10081/udp
+amandaidx      10082/tcp                       # amanda backup services
+amidxtape      10083/tcp                       # amanda backup services
+smsqp          11201/tcp                       # Alamin SMS gateway
+smsqp          11201/udp
+xpilot         15345/tcp                       # XPilot Contact Port
+xpilot         15345/udp
+sgi-cmsd       17001/udp               # Cluster membership services daemon
+sgi-crsd       17002/udp
+sgi-gcd                17003/udp                       # SGI Group membership daemon
+sgi-cad                17004/tcp                       # Cluster Admin daemon
+isdnlog                20011/tcp                       # isdn logging system
+isdnlog                20011/udp
+vboxd          20012/tcp                       # voice box system
+vboxd          20012/udp
+binkp          24554/tcp                       # binkp fidonet protocol
+asp            27374/tcp                       # Address Search Protocol
+asp            27374/udp
+dircproxy      57000/tcp                       # Detachable IRC Proxy
+tfido          60177/tcp                       # fidonet EMSI over telnet
+fido           60179/tcp                       # fidonet EMSI over TCP
+
+# Local services
diff --git a/resolv+.8 b/resolv+.8
new file mode 100644 (file)
index 0000000..94ae825
--- /dev/null
+++ b/resolv+.8
@@ -0,0 +1,124 @@
+.TH RESOLV+ 8 "August 19, 1992"
+.SH NAME
+resolv+ - enhanced DNS resolver library
+.SH DESCRIPTION
+.I Resolv+
+is a modified version of the standard Berkeley BIND host resolver library.
+Enhancements include support for host lookups via the Internet Domain
+Name System (DNS), the
+.IR /etc/hosts
+file, and Sun's Network Information Service (NIS).
+.PP
+The programmer interface to the resolv+ routines is identical to that
+of the standard resolver library.  For further information see the
+appropriate manual pages.
+.SH CONFIGURATION
+As with the standard resolver library, the file
+.IR /etc/resolv.conf
+must be set up before the resolver can function.
+In addition, the file
+.IR /etc/host.conf
+contains configuration information specific to resolv+.
+.PP
+The
+.IR host.conf
+file should contain one configuration keyword per line, followed
+by appropriate configuration information.  The keywords recognized are
+.I order ,
+.I trim ,
+.I multi ,
+.I nospoof ,
+and
+.I reorder .
+Each keyword is described seperately below.
+.IP order
+This keyword specifies how host lookups are to be performed.  It should be
+followed by one or more lookup methods, seperated by commas.  Valid
+methods are
+.I bind ,
+.I hosts
+and
+.I nis .
+.IP trim
+This keyword may be listed more than once.  Each time it should be followed
+by a single domain name, with the leading dot.  When set, the resolv+
+library will automatically trim the given domain name from the end of
+any hostname resolved via DNS.  This is intended for use with local hosts
+and domains.  (Related note: trim will not affect hostnames gathered via
+NIS or the hosts file.  Care should be taken to insure that the first
+hostname for each entry in the hosts file is fully qualified or non-qualified,
+as appropriate for the local installation.)
+.IP multi
+Valid values are
+.I on
+and
+.I off .
+If set to "on," the resolv+ library will return all valid addresses for
+a host that appears in the
+.IR /etc/hosts
+file, instead of only the first.  This is off by default, as it may cause
+a substantial performance loss at sites with large hosts files.
+.IP nospoof
+Valid values are
+.I on
+and
+.I off .
+If set to "on," the resolv+ library will attempt to prevent hostname spoofing
+to enhance the security of
+.IR rlogin
+and
+.IR rsh .
+It works as follows: after performing a host address lookup, resolv+ will
+perform a hostname lookup for that address.  If the two hostnames do not
+match, the query will fail.
+.IP alert
+If this option is set to "on" and the
+.I nospoof
+option is also set, resolv+ will log a warning of the error via the
+.IR syslog
+facility.  The default value is off.
+.IP reorder
+Valid values are
+.I on
+and
+.I off .
+If set to "on," resolv+ will attempt to reorder host addresses so that
+local addresses (i.e., on the same subnet) are listed first when a
+gethostbyname() is performed.  Reordering is done for all lookup methods.
+The default value is off.
+.SH "ENVIRONMENT VARIABLES"
+The following environment variables may be set to override resolv+'s
+configured behavior:
+.IP RESOLV_HOST_CONF
+If set, it will override the default filename ("/etc/host.conf") for
+the resolv+ configuration file.
+.IP RESOLV_SERV_ORDER
+If set, will override the "order" keyword in the host.conf file.
+.IP RESOLV_SPOOF_CHECK
+If set, will override the spoof check flag.  Valid values are "off"
+to disable checking, "warn" to enable checking and warning, and "warn off"
+to enable checking but not warning.
+.IP RESOLV_ADD_TRIM_DOMAINS
+If set, contains a list of domains to trim that will augment, not
+supersede, the list in the host.conf file.
+.IP RESOLV_OVERRIDE_TRIM_DOMAINS
+If set, contains a list of domains to trim that will override those
+in the host.conf file.
+.IP RESOLV_MULTI
+If set, overrides the "multi" keyword in the host.conf file.
+.IP RESOLV_REORDER
+If set, overrides the "reorder" keyword in the host.conf file.
+.SH FILES
+/etc/host.conf,
+/etc/hosts
+.SH BUGS
+Quite possibly.
+.SH AUTHOR
+The original BIND resolver library comes from the University of California
+at Berkeley's Computer Science Research Group.  The original resolv+
+modifications were made by Bill Wisner <wisner@uunet.UU.NET>.  Bug fixes
+and enhancements were contributed by Patrick Gosling, Chris Metcalf,
+John DiMarco and J. Porter Clark, John P. Rouillard, Dan O'Neill and
+Tom Limoncelli.
+.SH "SEE ALSO"
+resolver(3), resolver(5), hosts(5), hostname(7), named(8)
diff --git a/update-inetd b/update-inetd
new file mode 100644 (file)
index 0000000..64ddf31
--- /dev/null
@@ -0,0 +1,170 @@
+#!/usr/bin/perl
+#
+# update-inetd: a utility to add entries to the /etc/inetd.conf file
+#
+# Copyright (C) 1995 Peter Tobias <tobias@et-inf.fho-emden.de>
+#
+#    update-inetd is free software; you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published
+#    by the Free Software Foundation; either version 2 of the License,
+#    or (at your option) any later version.
+#
+#    update-inetd is distributed in the hope that it will be useful, but
+#    WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+#    General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with update-inetd; if not, write to the Free Software Foundation,
+#    Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+require 5.000;
+require DebianNet;
+
+# hack to make update-inetd work in a script which calls debconf
+if($ENV{DEBIAN_HAS_FRONTEND}) {
+    my $file = ($ENV{DEBIAN_FRONTEND} eq 'noninteractive') ?
+       '/dev/null' : '/dev/tty'; # see 4.13 changelog entry
+    open(STDIN,  "<$file") or die "Couldn't reopen stdin($file): $!";
+    open(STDOUT, ">$file") or die "Couldn't reopen stdout($file): $!";
+    open(STDERR, ">$file") or die "Couldn't reopen stderr($file): $!";
+}
+
+$| = 1;
+
+$version = "1.12";
+
+$0 =~ s#.*/##;
+
+while ($ARGV[0] =~ m/^-/) {
+    $_ = shift(@ARGV);
+    if (/--help$/) {
+        &usage;
+    } elsif (/--version$/) {
+        &version;
+    } elsif (/--add$/) {
+        $mode="add";
+    } elsif (/--remove$/) {
+        $mode="remove";
+    } elsif (/--enable$/) {
+        $mode="enable";
+    } elsif (/--disable$/) {
+        $mode="disable";
+    } elsif (/--multi$/) {
+        $DebianNet::multi = "true";
+    } elsif (/--verbose$/) {
+        $DebianNet::verbose = "true";
+    } elsif (/--debug$/) {
+        $debug = "true";
+    } elsif (/--file$/) {
+        $file = shift(@ARGV);
+        die "$0: Option \`--file' requires an argument\n" unless ($file and not ($file =~ m/^--/));
+        $DebianNet::inetdcf = $file;
+    } elsif (/--group$/) {
+        $group = shift(@ARGV);
+        die "$0: Option \`--group' requires an argument\n" unless ($group and not ($group =~ m/^--/));
+    } elsif (/--comment-chars$/) {
+        $sep = shift(@ARGV);
+        die "$0: Option \`--comment-chars' requires an argument\n" unless ($sep);
+        die "$0: The comment characters do not start with a \`#'!\n" unless ($sep =~ /^#/);
+        $DebianNet::sep = $sep;
+    } elsif (/--pattern$/) {
+        $pattern = shift(@ARGV);
+        die "$0: Option \`--pattern' requires an argument\n" unless ($pattern and not ($pattern =~ m/^--/));
+    } else {
+        print "$0: Unknown option: $_\n";
+        print "Try \`$0 --help' for more information.\n";
+        exit(1);
+    }
+}
+
+$group = "OTHER" unless ($group);
+
+&usage unless($mode);
+
+# die "You must be root to run this script.\n" if ($> != 0);
+
+if ($#ARGV > 0) {
+    print "Too many arguments!\n";
+} elsif ($#ARGV == -1) {
+    print "Too few arguments!\n";
+} else {
+    $modearg = $ARGV[0];
+    die "The service name may not include a whitespace character!\n" if (($mode eq "enable" or $mode eq "disable") and ($modearg =~ /\s+|\\t/));
+    die "The entry definition does not contain any whitespace characters!\n" if ($mode eq "add" and not ($modearg =~ /\s+|\\t/));
+}
+
+print "Processing $DebianNet::inetdcf\n" if (defined($DebianNet::verbose));
+print "Using mode \"$mode\", group \"$group\", pattern \"$pattern\" and seperator \"$DebianNet::sep\"\n" if (defined($debug));
+print "Multiple remove/disable: $DebianNet::multi\n" if (defined($debug) and defined($DebianNet::multi));
+print "ARGUMENT: $modearg\n" if (defined($debug));
+
+if ($mode eq "add") {
+    if (( -f "/etc/xinetd.conf" ) && ( -x "/usr/sbin/xinetd" )) {
+        print "--------- IMPORTANT INFORMATION FOR XINETD USERS ----------\n";
+        print "The following line will be added to your /etc/inetd.conf file:\n\n";
+        print "$modearg\n\n";
+        print "If you are indeed using xinetd, you will have to convert the\n";
+        print "above into /etc/xinetd.conf format, and add it manually. See\n";
+        print "/usr/share/doc/xinetd/README.Debian for more information.\n";
+        print "-----------------------------------------------------------\n\n";
+    }
+
+    DebianNet::add_service($modearg, $group);
+} elsif ($mode eq "remove") {
+    DebianNet::remove_service($modearg);
+} elsif ($mode eq "enable") {
+    @arglst = split(/,/, $modearg);
+    while(@arglst) {
+        $_ = shift(@arglst);
+        DebianNet::enable_service($_, $pattern);
+    }
+} elsif ($mode eq "disable") {
+    @arglst = split(/,/, $modearg);
+    while(@arglst) {
+        $_ = shift(@arglst);
+        DebianNet::disable_service($_, $pattern);
+    }
+} else {
+    die "Mode = \`$modearg'? This should not happen!\n";
+}
+
+sub version {
+    print "$0 $version\n";
+    print "DebianNet module $DebianNet::version\n";
+    exit(0);
+}
+
+sub usage {
+    print <<EOF;
+Usage: $0 [OPTION] MODE ARGUMENT
+
+Options:
+  --version                       output version information and exit
+  --help                          display this help and exit
+  --verbose                       explain what is being done
+  --debug                         enables debugging mode
+  --multi                         allow multiple removes/disables
+  --file FILENAME                 use FILENAME instead of /etc/inetd.conf
+  --group GROUPNAME               add entry to section GROUPNAME
+  --comment-chars CHARACTERS      use CHARACTERS as comment characters
+  --pattern PATTERN               use PATTERN to select a service
+
+Modes:
+  --add ENTRY                     add ENTRY to $DebianNet::inetdcf
+  --remove ENTRY                  remove ENTRY (regular expression)
+  --enable SERVICE                enable SERVICE in $DebianNet::inetdcf
+  --disable SERVICE               disable SERVICE in $DebianNet::inetdcf
+
+In order to prevent the shell from changing your ENTRY definition
+you have to quote the ENTRY using single or double quotes. You can
+use tabs (the tab character or \\t) and spaces to separate the fields
+of the ENTRY. If you want to enable/disable more than one SERVICE you
+can use a comma separated list of services (no whitespace characters
+allowed).
+
+EOF
+    exit(0);
+}
+
diff --git a/update-inetd.8 b/update-inetd.8
new file mode 100644 (file)
index 0000000..21a2c77
--- /dev/null
@@ -0,0 +1,200 @@
+.\" Copyright 1995 Peter Tobias <tobias@et-inf.fho-emden.de>
+.\" May be distributed under the GNU General Public License
+.TH update-inetd 8 "21 September 1995" "Linux" "Linux Programmer's Manual"
+.SH NAME
+update\-inetd \- create, remove, enable or disable entry
+in /etc/inetd.conf
+.SH SYNOPSIS
+.B update\-inetd
+[\-\-file FILENAME] [\-\-help] [\-\-version] [\-\-verbose]
+[\-\-comment-chars CHARACTERS] [\-\-debug] [\-\-group GROUPNAME] \-\-add ENTRY
+
+.B update\-inetd
+[\-\-file FILENAME] [\-\-help] [\-\-version] [\-\-verbose]
+[--debug] \-\-remove ENTRY
+
+.B update\-inetd
+[\-\-file FILENAME] [\-\-help] [\-\-version] [\-\-verbose]
+[\-\-comment-chars CHARACTERS] [\-\-pattern PATTERN] [\-\-multi]
+[\-\-debug] \-\-enable SERVICE
+
+.B update\-inetd
+[\-\-file FILENAME] [\-\-help] [\-\-version] [\-\-verbose]
+[\-\-comment-chars CHARACTERS] [\-\-pattern PATTERN] [\-\-multi]
+[\-\-debug] \-\-disable SERVICE
+
+.SH DESCRIPTION
+.B update\-inetd
+can be used to add, remove, enable or disable
+entries in the
+.IR /etc/inetd.conf
+file (you can specify a different file by using the
+.B \-\-file
+option).
+After the
+.IR /etc/inetd.conf
+file has been changed,
+.B update\-inetd
+will send a SIGHUP signal to the inetd process to make sure
+that inetd will use the new
+.IR /etc/inetd.conf
+file. For Perl scripts you can also use the Perl module
+.B DebianNet.pm
+\&. See
+.BR DebianNet (3pm)
+for further information.
+.B update\-inetd
+can also be used to add entries that are commented out by
+default. They will be treated like normal entries. That
+also means that if you already have an entry that is
+commented out you can't add an entry for the same service
+without removing the old one first.
+
+update-inetd treats entries that are commented out by a single `#' character
+as entries that have been commented out by a user. It won't change such
+entries.
+
+
+.SH OPTIONS
+.TP
+.I "\-\-version"
+Print version information on standard output and
+exit successfully.
+
+.TP
+.I "\-\-help"
+Print a usage message on standard output and exit
+successfully.
+
+.TP
+.I "\-\-verbose"
+Explain what is being done.
+
+.TP
+.I "\-\-debug"
+Enables debugging mode.
+
+.TP
+.I "\-\-file FILENAME"
+Use FILENAME instead of
+.IR /etc/inetd.conf
+\&.
+
+.TP
+.I "\-\-group GROUPNAME"
+Specify that the new entry should be placed in group
+GROUPNAME (e.g. \*(rqMAIL"). If the group does not
+exist the entry will be placed at the end of the file.
+The default group is \*(rqOTHER".
+
+.TP
+.I "\-\-comment-chars CHARACTERS"
+update-inetd uses \*(rq#<off>#\ \*(rq as the default comment characters.
+You can use this option to specify different comment characters.
+This is only necessary if you have to deal with two (or more)
+services of the same name.
+
+.TP
+.I "\-\-pattern PATTERN"
+This option can be used to select a service. You only need this
+option if you have two (or more) services of the same name.
+
+.TP
+.I "\-\-multi"
+If you want to disable/remove more than one entry at a time
+you should use this option. If you try to remove more than one
+entry at a time without using this option the program will show
+a warning and asks the user if he want to continue.
+
+.TP
+.I "\-\-add ENTRY"
+Add an entry to
+.IR /etc/inetd.conf
+\&. A description of the ENTRY format can be found in the inetd(8)
+or inetd.conf(5) manual pages (or just look at the /etc/services
+file). In order to prevent the shell from changing your ENTRY
+definition you have to quote the ENTRY using single or double
+quotes. You can use tabs (the tab character or \et) and spaces
+to separate the fields of the ENTRY. To add the ENTRY to a
+specific section in the /etc/inetd.conf file please use the
+.B \-\-group
+option in addtion to the
+.B \-\-add
+option.
+
+If you are trying to add an entry which already exists update-inetd
+won't add the entry. For uncommented entries it will do nothing
+and for entries that are commented out by the comment-chars (see
+option
+.B \-\-comment\-chars
+) it will enable the existing entry. If you want to completely replace
+an entry just remove the entry with the
+.B \-\-remove
+option first.
+
+.TP
+.I "\-\-remove ENTRY"
+Remove an entry from
+.IR /etc/inetd.conf
+\&. You can use a regular expression to remove the entry.
+
+.TP
+.I "\-\-enable SERVICE"
+Enable SERVICE (e.g. \*(rqftp") in
+.IR /etc/inetd.conf
+\&. If you want to enable more than one SERVICE you can use a comma
+separated list of services (no whitespace characters allowed).
+
+.TP
+.I "\-\-disable SERVICE"
+Disable SERVICE (e.g. \*(rqftp") in
+.IR /etc/inetd.conf
+\&. If you want to disable more than one SERVICE you can use a comma
+separated list of services (no whitespace characters allowed).
+.PP
+In order to prevent the shell from changing your ENTRY definition
+you have to quote the ENTRY using single or double quotes. You can
+use tabs (the tab character or \et) and spaces to separate the fields
+of the ENTRY. If you want to enable/disable more than one SERVICE you
+can use a comma separated list of services (no whitespace characters
+allowed).
+
+.SH EXAMPLES
+You've installed ssh (secure encrypting remote shell) and wish
+to disable its unencrypted cousins:
+
+         update-inetd --comment-chars '#' --disable login,shell,exec,telnet
+
+Using a single '#' character as a comment-char prevents update-inetd
+to reenable the services on package upgrades.
+
+You think the clock on your computer is often inaccurate and
+wish to make sure other computers cannot read it:
+
+         update-inetd --disable time,daytime
+
+You get the clock fixed:
+
+         update-inetd --enable time,daytime
+
+You hear a rumor that inetd is easily crashed via a SYN attack
+against the time and daytime services, you want to turn off only
+their TCP versions, while leaving the analogous UDP services
+enabled:
+
+         update-inetd --pattern tcp --disable time,daytime
+
+You just finished writing a POP3 server and want to install the
+/etc/inetd.conf entry from the makefile:
+
+         update-inetd --group MAIL --add \e
+ 'pop-3\et\etstream\ettcp\etnowait\etroot\et/usr/sbin/tcpd\et/usr/sbin/in.pop3d'
+
+.SH FILES
+/etc/inetd.conf
+/var/run/inetd.pid
+.SH SEE ALSO
+DebianNet(3pm)
+.SH AUTHOR
+Peter Tobias, <tobias@et\-inf.fho\-emden.de>
+