Nur über IP

Post Reply
Message
Author
Steve

Nur über IP

#1 Post by Steve »

ich hab ein apache server eingerichtet mit DNS, ich kann am server im browser iww.wan.de eingeben und ich lande auf die testpage vom linux, ich kann auch im netzwerk auf ein anderen rechner auf die testseite landen aber nur wenn ich der IP nummer eingebe, ich möchte aber nur iww.wan.de im netzwerk eingeben was hab ich vergessen einzustellen?

Boron

Re: Nur über IP

#2 Post by Boron »

Du solltest auf den anderen Rechner die IP deines Servers als DNS eintragen.

Steve

Re: Nur über IP

#3 Post by Steve »

das funktioniert leider auch nicht

ratte

Re: Nur über IP

#4 Post by ratte »

trage in der /etc/hosts

123.456.789.012 iww.wan.de

ein, natuerlich mit seiner richtigen IP-Nr.

ratte

Steve

Re: Nur über IP

#5 Post by Steve »

der steht schon in etc/hosts in der console sagt er irgend was von ein syntax error in named.conf da sehe ich aber nichts

cerberusger
Posts: 348
Joined: 28. Dec 2000 13:30
Location: Muenchen

Re: Nur über IP

#6 Post by cerberusger »

na, wenn er das sagt, wird das schon stimmen ... vielleicht postest mal deine named.conf, meine glaskugel is grad verstaubt.

dev0
Linux is a wigwam - no windows, no gates, apache inside <img src="http://www.pl-forum.de/UltraBoard/Images/Happy.gif" border="0" align="middle">

Steve

Re: Nur über IP

#7 Post by Steve »

//BIND8-Konfigurationsdatei
//Vereinfachte VERSION FUER LINUXBU.CH

options {
directory "/var/named";
allow-query { 127.0/16; 163.176.1/24; }
forwarders { 163.176.4.197; };

# Enable the next entry to prefer usage of the name
# server declared in the forwarders section.

#forward first;

# The listen-on record contains a list of local network
# interfaces to listen on. Optionally the port can be
# specified. Default is to listen on all interfaces found
# on your system. The default port is 53.

#listen-on port 53 { 127.0.0.1; };

# The next statement may be needed if a firewall stands
# between the local server and the internet.

#query-source address * port 53;

# The allow-query record contains a list of networks # IP-addresses to accept and deny queries from. The
# default is to allow queries from all hosts.
#allow-query { 127.0.0.1; };
# The cleaning-interval statement defines the time interval
# in minutes for periodic cleaning. Default is 60 minutes.
# By default, all actions are logged to /var/log/messages.
cleaning-interval 120;
# Name server statistics will be logged to /var/log/messages
# every <statistics-interval> minutes. Default is 60 minutes.
# A value of 0 disables this feature.

statistics-interval 0;
# If notify is set to yes (default), notify messages are
# sent to other name servers when the the zone data is
# changed. Instead of setting a global 'notify' statement
# in the 'options' section, a separate 'notify' can be
# added to each zone definition.
notify no;
};
# The following three zone definitions don't need any modification.
# The first one defines localhost while the second defines the
# reverse lookup for localhost. The last zone "." is the
# definition of the root name servers.

zone "wan.de" in {
type master;
file "privat.zone";
};

zone "localhost" in {
type master;
file "localhost.zone";
};

zone "4.176.163.in-addr.arpa" in {
type master;
file "tavirp.zone";
};

zone "0.0.127.in-addr.arpa" in {
type master;
file "tsohlacol.zone";
};

zone "." in {
type hint;
file "root.hint";
};

# You can insert further zone records for your own domains below.

Jochen

Re: Nur über IP

#8 Post by Jochen »

Fehlendes Abschluss-Semikolon in der allow-query Zeile?

steve

Re: Nur über IP

#9 Post by steve »

kolon ist jetzt drin, aber mein problem mit der nameserver ist noch geblieben

steve

Jochen

Re: Nur über IP

#10 Post by Jochen »

Was sagt denn die /var/log/messages? Der named beschwert sich doch eigentlich recht aussagekräftig. Poste das mal hier.

steve

Re: Nur über IP

#11 Post by steve »

Jul 2 08:05:15 iww sshd[253]: Server listening on :: port 22.
Jul 2 08:05:17 iww kernel: klogd 1.3-3, log source = /proc/kmsg started.
Jul 2 08:05:17 iww kernel: Inspecting /boot/System.map-2.4.4-4GB
Jul 2 08:05:19 iww kernel: Loaded 10917 symbols from /boot/System.map-2.4.4-4GB.
Jul 2 08:05:19 iww kernel: Symbols match kernel version 2.4.4.
Jul 2 08:05:19 iww kernel: Loaded 332 symbols from 5 modules.
Jul 2 08:05:19 iww kernel: ip_conntrack (512 buckets, 4096 max)
Jul 2 08:05:19 iww kernel: 8139too Fast Ethernet driver 0.9.16
Jul 2 08:05:19 iww kernel: PCI: Setting latency timer of device 00:09.0 to 64
Jul 2 08:05:19 iww kernel: eth0: RealTek RTL8139 Fast Ethernet at 0xc4c44000, 00:00:b4:93:c4:c4, IRQ 12
Jul 2 08:05:19 iww kernel: eth0: Identified 8139 chip type 'RTL-8139A'
Jul 2 08:05:19 iww kernel: eth0: Setting 100mbps half-duplex based on auto-negotiated partner ability 40a1.
Jul 2 08:05:19 iww kernel: IPv6 v0.8 for NET4.0
Jul 2 08:05:19 iww kernel: IPv6 over IPv4 tunneling driver
Jul 2 08:05:19 iww kernel: NET4: AppleTalk 0.18a for Linux NET4.0
Jul 2 08:05:19 iww atalkd[310]: restart (1.5)
Jul 2 08:05:21 iww atalkd[310]: zip_getnetinfo for eth0
Jul 2 08:05:26 iww named[397]: starting (/etc/named.conf). named 8.2.3-REL Fri May 11 16:00:24 GMT 2001 ^Iroot@ivy:/usr/src/packages/BUILD/bind8-8.2.3/bin/named
Jul 2 08:05:26 iww named[397]: /etc/named.conf:7: syntax error near forwarders
Jul 2 08:05:26 iww named[397]: /etc/named.conf:36: syntax error near cleaning-interval
Jul 2 08:05:26 iww named[397]: privat.zone:9: SOA ")" error near (I)
Jul 2 08:05:26 iww named[397]: Zone "wan.de" (file privat.zone): no SOA RR found
Jul 2 08:05:26 iww named[397]: master zone "wan.de" (IN) rejected due to errors (serial 2000031203)
Jul 2 08:05:26 iww named[397]: master zone "localhost" (IN) loaded (serial 42)
Jul 2 08:05:27 iww named[397]: tavirp.zone:9: SOA ")" error near (I)
Jul 2 08:05:27 iww named[397]: Zone "4.176.163.in-addr.arpa" (file tavirp.zone): no SOA RR found
Jul 2 08:05:27 iww named[397]: master zone "4.176.163.in-addr.arpa" (IN) rejected due to errors (serial 2000031203)
Jul 2 08:05:27 iww named[397]: tsohlacol.zone:9: SOA ")" error near (I)
Jul 2 08:05:27 iww named[397]: Zone "0.0.127.in-addr.arpa" (file tsohlacol.zone): no SOA RR found
Jul 2 08:05:27 iww named[397]: master zone "0.0.127.in-addr.arpa" (IN) rejected due to errors (serial 2000031203)
Jul 2 08:05:27 iww named[397]: hint zone "" (IN) loaded (serial 0)
Jul 2 08:05:27 iww named[397]: listening on [127.0.0.1].53 (lo)
Jul 2 08:05:27 iww named[397]: listening on [163.176.4.197].53 (eth0)
Jul 2 08:05:27 iww named[397]: Forwarding source address is [0.0.0.0].1024
Jul 2 08:05:27 iww named[420]: group = named
Jul 2 08:05:27 iww named[420]: user = named
Jul 2 08:05:27 iww named[420]: Ready to answer queries.
Jul 2 08:05:27 iww named[420]: sysquery: sendto([128.63.2.53].53): Network is unreachable
Jul 2 08:05:27 iww rpc.statd[442]: Version 0.3.1 Starting
Jul 2 08:05:28 iww kernel: Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
Jul 2 08:05:29 iww atalkd[310]: zip_getnetinfo for eth0
Jul 2 08:05:31 iww /usr/sbin/cron[496]: (CRON) STARTUP (fork ok)
Jul 2 08:05:32 iww kernel: eth0: no IPv6 routers present
Jul 2 08:05:32 iww kernel: eth0: no IPv6 routers present
Jul 2 08:05:35 iww kernel: isapnp: Scanning for PnP cards...
Jul 2 08:05:35 iww kernel: isapnp: Calling quirk for 01:00
Jul 2 08:05:35 iww kernel: isapnp: SB audio device quirk - increasing port range
Jul 2 08:05:35 iww kernel: isapnp: Card 'Creative ViBRA16C PnP'
Jul 2 08:05:35 iww kernel: isapnp: 1 Plug & Play card detected total
Jul 2 08:05:39 iww atalkd[310]: zip_getnetinfo for eth0
Jul 2 08:05:49 iww atalkd[310]: config for no router
Jul 2 08:05:50 iww atalkd[310]: ready 0/0/0
Jul 2 08:06:04 iww papd[627]: restart (1.5)
Jul 2 08:06:11 iww afpd[631]: iww:AFPServer@* started on 65280.55:128 (1.5)
Jul 2 08:06:11 iww afpd[631]: ASIP started on 163.176.4.197:548(1) (1.5)
Jul 2 08:06:11 iww timelord[633]: iww:TimeLord started
Jul 2 08:06:11 iww afpd[631]: uam: uams_guest.so loaded
Jul 2 08:06:13 iww afpd[631]: uam: uams_clrtxt.so loaded
Jul 2 08:06:14 iww afpd[631]: uam: "Cleartxt Passwrd" available
Jul 2 08:06:14 iww afpd[631]: uam: "No User Authent" available
Jul 2 08:15:47 iww su: (to nobody) root on none
Jul 2 08:15:47 iww PAM-unix2[881]: session started for user nobody, service su
Jul 2 08:16:44 iww named[420]: ns_forw: sendto([128.63.2.53].53): Network is unreachable
Jul 2 08:18:14 iww PAM-unix2[536]: session started for user root, service xdm
Jul 2 08:19:52 iww insmod: insmod: a module named snd-mixer-oss already exists
Jul 2 08:19:52 iww insmod: insmod: insmod sound-service-0-0 failed
Jul 2 08:19:52 iww insmod: insmod: a module named snd-mixer-oss already exists
Jul 2 08:19:52 iww insmod: insmod: insmod sound-service-0-3 failed
Jul 2 08:19:53 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 08:19:53 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 08:19:53 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 08:19:53 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 08:19:54 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 08:19:54 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 08:19:54 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 08:19:54 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 08:21:46 iww PAM-unix2[881]: session finished for user nobody, service su
Jul 2 08:45:14 iww -- MARK --
Jul 2 08:46:28 iww PAM-unix2[536]: session finished for user root, service xdm
Jul 2 08:47:29 iww PAM-unix2[1145]: session started for user root, service xdm
Jul 2 08:48:29 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 08:48:29 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 08:48:29 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 08:48:30 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 08:48:30 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 08:48:30 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 08:48:31 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 08:48:31 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 08:59:00 iww /USR/SBIN/CRON[1323]: (root) CMD ( rm -f /var/spool/cron/lastrun/cron.hourly)
Jul 2 09:05:26 iww named[420]: Cleaned cache of 0 RRsets
Jul 2 09:05:26 iww named[420]: USAGE 994057526 994053927 CPU=0.03u/0.02s CHILDCPU=0u/0s
Jul 2 09:05:26 iww named[420]: NSTATS 994057526 994053927 A=2
Jul 2 09:05:27 iww named[420]: XSTATS 994057526 994053927 RR=0 RNXD=0 RFwdR=0 RDupR=0 RFail=0 RFErr=0 RErr=0 RAXFR=0 RLame=0 ROpts=0 SSysQ=1 SAns=0 SFwdQ=2 SDupQ=593 SErr=3 RQ=2 RIQ=0 RFwdQ=2 RDupQ=0 RTCP=0 SFwdR=0 SFail=0 SFErr=0 SNaAns=0 SNXD=0 RUQ=0 RURQ=0 RUXFR=0 RUUpd=0
Jul 2 09:08:14 iww named[420]: ns_forw: sendto([128.63.2.53].53): Network is unreachable
Jul 2 09:25:14 iww -- MARK --
Jul 2 09:26:09 iww named[420]: ns_forw: sendto([128.63.2.53].53): Network is unreachable
Jul 2 09:30:38 iww afpd[1422]: ASIP session:548(1) from 163.176.4.51:2048(2)
Jul 2 09:30:39 iww afpd[631]: server_child<font size="1"> 1422 done
Jul 2 09:30:46 iww afpd[1423]: ASIP session:548(1) from 163.176.4.51:2049(2)
Jul 2 09:30:46 iww afpd[1423]: cleartext login: wan
Jul 2 09:30:46 iww PAM-warn[1423]: service: netatalk [on terminal: afpd]
Jul 2 09:30:46 iww PAM-warn[1423]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 09:30:46 iww PAM-warn[1423]: service: netatalk [on terminal: afpd]
Jul 2 09:30:46 iww PAM-warn[1423]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 09:30:46 iww PAM-warn[1423]: service: netatalk [on terminal: afpd]
Jul 2 09:30:46 iww PAM-warn[1423]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 09:30:46 iww PAM-unix2[1423]: session started for user wan, service netatalk
Jul 2 09:30:46 iww afpd[1423]: login wan (uid 500, gid 100)
Jul 2 09:38:46 iww su: (to root) root on /dev/pts/1
Jul 2 09:38:46 iww PAM-unix2[1517]: session started for user root, service su
Jul 2 09:38:57 iww kernel: (scsi0:A:0:0): Locking max tag count at 15
Jul 2 09:46:35 iww YaST[1518]: Starting SuSEconfig, the SuSE Configuration Tool...
Jul 2 09:46:35 iww YaST[1518]: Skipping new package checks.
Jul 2 09:46:35 iww yast[1518]: Reading /etc/rc.config and updating the system...
Jul 2 09:46:37 iww yast[1518]: Installing new /etc/inews_mail_gateway
Jul 2 09:46:38 iww yast[1518]: Installing new /var/lib/news/mailname
Jul 2 09:46:38 iww yast[1518]: Installing new /var/lib/news/whoami
Jul 2 09:46:38 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.3ddiag...
Jul 2 09:46:40 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.alljava...
Jul 2 09:46:40 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.apache...
Jul 2 09:46:51 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.fonts...
Jul 2 09:46:51 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.groff...
Jul 2 09:46:51 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.hostname...
Jul 2 09:46:52 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.kdm2...
Jul 2 09:46:54 iww yast[1518]:
Jul 2 09:46:54 iww yast[1518]: ATTENTION: You have modified /opt/kde2/share/config/kdmrc. Leaving it untouched...
Jul 2 09:46:54 iww yast[1518]: You can find my version in /opt/kde2/share/config/kdmrc.SuSEconfig...
Jul 2 09:46:54 iww yast[1518]:
Jul 2 09:46:54 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.pam...
Jul 2 09:46:56 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.pcmcia...
Jul 2 09:46:58 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.perl...
Jul 2 09:46:58 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.profiles...
Jul 2 09:46:59 iww yast[1518]: Installing new /etc/SuSEconfig/profile
Jul 2 09:46:59 iww yast[1518]: Installing new /etc/SuSEconfig/csh.cshrc
Jul 2 09:46:59 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.sendmail...
Jul 2 09:47:01 iww yast[1518]: Installing new /etc/sendmail.cf
Jul 2 09:47:01 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.susehilf...
Jul 2 09:47:02 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.susewm...
Jul 2 09:47:58 iww yast[1518]: Executing /sbin/conf.d/SuSEconfig.ypclient...
Jul 2 09:49:38 iww yast[1518]: Finished.
Jul 2 09:59:00 iww /USR/SBIN/CRON[2744]: (root) CMD ( rm -f /var/spool/cron/lastrun/cron.hourly)
Jul 2 10:05:27 iww named[420]: Cleaned cache of 0 RRsets
Jul 2 10:05:27 iww named[420]: USAGE 994061127 994053927 CPU=0.28u/0.14s CHILDCPU=0u/0s
Jul 2 10:05:27 iww named[420]: NSTATS 994061127 994053927 A=38
Jul 2 10:05:27 iww named[420]: XSTATS 994061127 994053927 RR=0 RNXD=0 RFwdR=0 RDupR=0 RFail=0 RFErr=0 RErr=0 RAXFR=0 RLame=0 ROpts=0 SSysQ=1 SAns=0 SFwdQ=38 SDupQ=2479 SErr=39 RQ=38 RIQ=0 RFwdQ=38 RDupQ=0 RTCP=0 SFwdR=0 SFail=0 SFErr=0 SNaAns=0 SNXD=0 RUQ=0 RURQ=0 RUXFR=0 RUUpd=0
Jul 2 10:10:29 iww useradd[2790]: new user: name=henric, uid=501, gid=100, home=/home/henric, shell=/bin/bash
Jul 2 10:12:15 iww PAM-unix2[1517]: session finished for user root, service su
Jul 2 10:25:15 iww -- MARK --
Jul 2 10:38:33 iww PAM-unix2[1145]: session finished for user root, service xdm
Jul 2 10:39:26 iww init: Switching to runlevel: 6
Jul 2 10:39:44 iww kernel: nfsd: terminating on signal 9
Jul 2 10:39:44 iww last message repeated 3 times
Jul 2 10:39:44 iww rpc.mountd: Caught signal 15, un-registering and exiting.
Jul 2 10:39:47 iww PAM-warn[1423]: service: netatalk [on terminal: afpd]
Jul 2 10:39:47 iww PAM-warn[1423]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 10:39:47 iww PAM-unix2[1423]: session finished for user wan, service netatalk
Jul 2 10:39:47 iww afpd[631]: shutting down on signal 15
Jul 2 10:39:47 iww afpd[1423]: 704.93KB read, 13.82KB written
Jul 2 10:39:47 iww afpd[1423]: Connection terminated
Jul 2 10:39:48 iww atalkd[310]: done
Jul 2 10:39:52 iww named[420]: named shutting down
Jul 2 10:39:52 iww named[420]: USAGE 994063192 994053927 CPU=0.28u/0.14s CHILDCPU=0u/0s
Jul 2 10:39:52 iww named[420]: NSTATS 994063192 994053927 A=38
Jul 2 10:39:52 iww named[420]: XSTATS 994063192 994053927 RR=0 RNXD=0 RFwdR=0 RDupR=0 RFail=0 RFErr=0 RErr=0 RAXFR=0 RLame=0 ROpts=0 SSysQ=1 SAns=0 SFwdQ=38 SDupQ=2759 SErr=39 RQ=38 RIQ=0 RFwdQ=38 RDupQ=0 RTCP=0 SFwdR=0 SFail=0 SFErr=0 SNaAns=0 SNXD=0 RUQ=0 RURQ=0 RUXFR=0 RUUpd=0
Jul 2 10:39:59 iww sshd[253]: Received signal 15; terminating.
Jul 2 10:40:00 iww kernel: Kernel logging (proc) stopped.
Jul 2 10:40:00 iww kernel: Kernel log daemon terminating.
Jul 2 10:40:01 iww exiting on signal 15
Jul 2 10:44:29 iww syslogd 1.3-3: restart.
Jul 2 10:44:31 iww kernel: klogd 1.3-3, log source = /proc/kmsg started.
Jul 2 10:44:31 iww kernel: Inspecting /boot/System.map-2.4.4-4GB
Jul 2 10:44:32 iww kernel: Loaded 10917 symbols from /boot/System.map-2.4.4-4GB.
Jul 2 10:44:32 iww kernel: Symbols match kernel version 2.4.4.
Jul 2 10:44:32 iww kernel: Loaded 324 symbols from 4 modules.
Jul 2 10:44:32 iww kernel: ip_conntrack (512 buckets, 4096 max)
Jul 2 10:44:32 iww kernel: 8139too Fast Ethernet driver 0.9.16
Jul 2 10:44:32 iww kernel: PCI: Setting latency timer of device 00:09.0 to 64
Jul 2 10:44:32 iww kernel: eth0: RealTek RTL8139 Fast Ethernet at 0xc4c44000, 00:00:b4:93:c4:c4, IRQ 12
Jul 2 10:44:32 iww kernel: eth0: Identified 8139 chip type 'RTL-8139A'
Jul 2 10:44:32 iww kernel: eth0: Setting 100mbps half-duplex based on auto-negotiated partner ability 40a1.
Jul 2 10:44:32 iww kernel: IPv6 v0.8 for NET4.0
Jul 2 10:44:32 iww kernel: IPv6 over IPv4 tunneling driver
Jul 2 10:44:32 iww kernel: NET4: AppleTalk 0.18a for Linux NET4.0
Jul 2 10:44:34 iww atalkd[312]: restart (1.5)
Jul 2 10:44:36 iww atalkd[312]: zip_getnetinfo for eth0
Jul 2 10:44:42 iww named[399]: starting (/etc/named.conf). named 8.2.3-REL Fri May 11 16:00:24 GMT 2001 ^Iroot@ivy:/usr/src/packages/BUILD/bind8-8.2.3/bin/named
Jul 2 10:44:42 iww named[399]: /etc/named.conf:7: syntax error near forwarders
Jul 2 10:44:42 iww named[399]: /etc/named.conf:36: syntax error near cleaning-interval
Jul 2 10:44:43 iww named[399]: privat.zone:9: SOA ")" error near (I)
Jul 2 10:44:43 iww named[399]: Zone "wan.de" (file privat.zone): no SOA RR found
Jul 2 10:44:43 iww named[399]: master zone "wan.de" (IN) rejected due to errors (serial 2000031203)
Jul 2 10:44:43 iww named[399]: master zone "localhost" (IN) loaded (serial 42)
Jul 2 10:44:43 iww named[399]: tavirp.zone:9: SOA ")" error near (I)
Jul 2 10:44:43 iww named[399]: Zone "4.176.163.in-addr.arpa" (file tavirp.zone): no SOA RR found
Jul 2 10:44:43 iww named[399]: master zone "4.176.163.in-addr.arpa" (IN) rejected due to errors (serial 2000031203)
Jul 2 10:44:43 iww named[399]: tsohlacol.zone:9: SOA ")" error near (I)
Jul 2 10:44:43 iww named[399]: Zone "0.0.127.in-addr.arpa" (file tsohlacol.zone): no SOA RR found
Jul 2 10:44:43 iww named[399]: master zone "0.0.127.in-addr.arpa" (IN) rejected due to errors (serial 2000031203)
Jul 2 10:44:43 iww named[399]: hint zone "" (IN) loaded (serial 0)
Jul 2 10:44:43 iww named[399]: listening on [127.0.0.1].53 (lo)
Jul 2 10:44:43 iww named[399]: listening on [163.176.4.197].53 (eth0)
Jul 2 10:44:43 iww named[399]: Forwarding source address is [0.0.0.0].1024
Jul 2 10:44:43 iww named[422]: group = named
Jul 2 10:44:43 iww named[422]: user = named
Jul 2 10:44:43 iww named[422]: Ready to answer queries.
Jul 2 10:44:43 iww named[422]: sysquery: sendto([198.41.0.10].53): Network is unreachable
Jul 2 10:44:44 iww atalkd[312]: zip_getnetinfo for eth0
Jul 2 10:44:44 iww rpc.statd[445]: Version 0.3.1 Starting
Jul 2 10:44:45 iww kernel: Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
Jul 2 10:44:45 iww kernel: eth0: no IPv6 routers present
Jul 2 10:44:45 iww kernel: eth0: no IPv6 routers present
Jul 2 10:44:47 iww /usr/sbin/cron[500]: (CRON) STARTUP (fork ok)
Jul 2 10:44:53 iww kernel: isapnp: Scanning for PnP cards...
Jul 2 10:44:53 iww kernel: isapnp: Calling quirk for 01:00
Jul 2 10:44:53 iww kernel: isapnp: SB audio device quirk - increasing port range
Jul 2 10:44:53 iww kernel: isapnp: Card 'Creative ViBRA16C PnP'
Jul 2 10:44:53 iww kernel: isapnp: 1 Plug & Play card detected total
Jul 2 10:44:54 iww atalkd[312]: zip_getnetinfo for eth0
Jul 2 10:45:04 iww atalkd[312]: config for no router
Jul 2 10:45:05 iww atalkd[312]: ready 0/0/0
Jul 2 10:45:17 iww papd[634]: restart (1.5)
Jul 2 10:45:24 iww afpd[641]: iww:AFPServer@* started on 65280.55:128 (1.5)
Jul 2 10:45:24 iww afpd[641]: ASIP started on 163.176.4.197:548(1) (1.5)
Jul 2 10:45:25 iww timelord[643]: iww:TimeLord started
Jul 2 10:45:25 iww afpd[641]: uam: uams_guest.so loaded
Jul 2 10:45:25 iww afpd[641]: uam: uams_clrtxt.so loaded
Jul 2 10:45:25 iww afpd[641]: uam: "Cleartxt Passwrd" available
Jul 2 10:45:25 iww afpd[641]: uam: "No User Authent" available
Jul 2 10:46:13 iww PAM-unix2[516]: session started for user root, service xdm
Jul 2 10:47:19 iww insmod: insmod: a module named snd-mixer-oss already exists
Jul 2 10:47:19 iww insmod: insmod: insmod sound-service-0-3 failed
Jul 2 10:47:19 iww insmod: insmod: a module named snd-mixer-oss already exists
Jul 2 10:47:19 iww insmod: insmod: insmod sound-service-0-3 failed
Jul 2 10:47:20 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 10:47:20 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 10:47:21 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 10:47:21 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 10:47:21 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 10:47:21 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 10:47:22 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 10:47:22 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 10:51:50 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:50 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:51 iww kernel: cdrom: open failed.
Jul 2 10:51:51 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:51 iww last message repeated 2 times
Jul 2 10:51:52 iww kernel: cdrom: open failed.
Jul 2 10:51:52 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:57 iww kernel: cdrom: open failed.
Jul 2 10:51:57 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:57 iww kernel: cdrom: open failed.
Jul 2 10:51:57 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:57 iww kernel: cdrom: open failed.
Jul 2 10:51:57 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:59 iww kernel: cdrom: open failed.
Jul 2 10:51:59 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:59 iww kernel: cdrom: open failed.
Jul 2 10:51:59 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:51:59 iww kernel: cdrom: open failed.
Jul 2 10:51:59 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:54:59 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:54:59 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:01 iww kernel: cdrom: open failed.
Jul 2 10:55:01 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:10 iww last message repeated 2 times
Jul 2 10:55:12 iww kernel: cdrom: open failed.
Jul 2 10:55:12 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:25 iww kernel: cdrom: open failed.
Jul 2 10:55:25 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:25 iww kernel: cdrom: open failed.
Jul 2 10:55:25 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:25 iww kernel: cdrom: open failed.
Jul 2 10:55:25 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:27 iww kernel: cdrom: open failed.
Jul 2 10:55:27 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:27 iww kernel: cdrom: open failed.
Jul 2 10:55:27 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:27 iww kernel: cdrom: open failed.
Jul 2 10:55:27 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:51 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:55:52 iww kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Jul 2 10:55:53 iww kernel: ISO 9660 Extensions: RRIP_1991A
Jul 2 10:58:27 iww kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Jul 2 10:58:27 iww kernel: ISO 9660 Extensions: RRIP_1991A
Jul 2 10:58:29 iww kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Jul 2 10:58:29 iww kernel: ISO 9660 Extensions: RRIP_1991A
Jul 2 10:59:00 iww /USR/SBIN/CRON[1331]: (root) CMD ( rm -f /var/spool/cron/lastrun/cron.hourly)
Jul 2 10:59:19 iww kernel: VFS: Disk change detected on device sr(11,0)
Jul 2 10:59:20 iww kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Jul 2 10:59:20 iww kernel: ISO 9660 Extensions: RRIP_1991A
Jul 2 11:01:45 iww kernel: (scsi0:A:0:0): Locking max tag count at 15
Jul 2 11:16:05 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:17:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:18:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:19:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:20:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:23:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:28:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:33:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:38:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:43:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:44:42 iww named[422]: Cleaned cache of 0 RRsets
Jul 2 11:44:42 iww named[422]: USAGE 994067082 994063483 CPU=0.04u/0.05s CHILDCPU=0u/0s
Jul 2 11:44:42 iww named[422]: NSTATS 994067082 994063483 A=10
Jul 2 11:44:42 iww named[422]: XSTATS 994067082 994063483 RR=0 RNXD=0 RFwdR=0 RDupR=0 RFail=0 RFErr=0 RErr=0 RAXFR=0 RLame=0 ROpts=0 SSysQ=1 SAns=10 SFwdQ=0 SDupQ=707 SErr=1 RQ=10 RIQ=0 RFwdQ=0 RDupQ=0 RTCP=0 SFwdR=0 SFail=0 SFErr=0 SNaAns=10 SNXD=0 RUQ=10 RURQ=0 RUXFR=0 RUUpd=0
Jul 2 11:48:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:53:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:58:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 11:59:01 iww /USR/SBIN/CRON[3631]: (root) CMD ( rm -f /var/spool/cron/lastrun/cron.hourly)
Jul 2 12:08:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 12:17:22 iww afpd[5300]: session from 65505.75:188 on 65280.55:129
Jul 2 12:17:22 iww afpd[5300]: cleartext login: wan
Jul 2 12:17:23 iww PAM-warn[5300]: service: netatalk [on terminal: afpd]
Jul 2 12:17:23 iww PAM-warn[5300]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 12:17:23 iww PAM-warn[5300]: service: netatalk [on terminal: afpd]
Jul 2 12:17:23 iww PAM-warn[5300]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 12:17:23 iww PAM-warn[5300]: service: netatalk [on terminal: afpd]
Jul 2 12:17:23 iww PAM-warn[5300]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 12:17:23 iww PAM-unix2[5300]: session started for user wan, service netatalk
Jul 2 12:17:23 iww afpd[5300]: login wan (uid 500, gid 100)
Jul 2 12:17:26 iww named[422]: denied query from [163.176.4.95].137 for "IWW.wan.de"
Jul 2 12:17:52 iww named[422]: denied query from [163.176.4.95].137 for "IWW.wan.de"
Jul 2 12:23:32 iww afpd[5351]: ASIP session:548(1) from 163.176.4.51:2050(2)
Jul 2 12:23:33 iww afpd[641]: server_child<font size="1"> 5351 done
Jul 2 12:23:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 12:23:53 iww afpd[5352]: ASIP session:548(1) from 163.176.4.51:2051(2)
Jul 2 12:23:53 iww afpd[5352]: cleartext login: wan
Jul 2 12:23:54 iww PAM-warn[5352]: service: netatalk [on terminal: afpd]
Jul 2 12:23:54 iww PAM-warn[5352]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 12:23:54 iww PAM-warn[5352]: service: netatalk [on terminal: afpd]
Jul 2 12:23:54 iww PAM-warn[5352]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 12:23:54 iww PAM-warn[5352]: service: netatalk [on terminal: afpd]
Jul 2 12:23:54 iww PAM-warn[5352]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 12:23:54 iww PAM-unix2[5352]: session started for user wan, service netatalk
Jul 2 12:23:54 iww afpd[5352]: login wan (uid 500, gid 100)
Jul 2 12:33:43 iww PAM-unix2[516]: session finished for user root, service xdm
Jul 2 12:34:35 iww PAM-unix2[5460]: session started for user henric, service xdm
Jul 2 12:35:56 iww insmod: insmod: a module named snd-pcm-plugin already exists
Jul 2 12:35:56 iww insmod: insmod: insmod sound-service-0-3 failed
Jul 2 12:38:35 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 12:44:43 iww named[422]: Cleaned cache of 0 RRsets
Jul 2 12:44:43 iww named[422]: USAGE 994070683 994063483 CPU=0.05u/0.07s CHILDCPU=0u/0s
Jul 2 12:44:43 iww named[422]: NSTATS 994070683 994063483 A=18
Jul 2 12:44:43 iww named[422]: XSTATS 994070683 994063483 RR=0 RNXD=0 RFwdR=0 RDupR=0 RFail=0 RFErr=0 RErr=0 RAXFR=0 RLame=0 ROpts=0 SSysQ=1 SAns=18 SFwdQ=0 SDupQ=1340 SErr=1 RQ=18 RIQ=0 RFwdQ=0 RDupQ=0 RTCP=0 SFwdR=0 SFail=0 SFErr=0 SNaAns=18 SNXD=0 RUQ=18 RURQ=0 RUXFR=0 RUUpd=0
Jul 2 12:53:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 12:59:00 iww /USR/SBIN/CRON[5828]: (root) CMD ( rm -f /var/spool/cron/lastrun/cron.hourly)
Jul 2 13:08:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 13:14:41 iww login: FAILED LOGIN 1 FROM /dev/pts/1 FOR wan, Authentication failure
Jul 2 13:14:56 iww login: FAILED LOGIN 2 FROM /dev/pts/1 FOR root, Authentication failure
Jul 2 13:15:11 iww login: FAILED LOGIN 3 FROM /dev/pts/1 FOR root, Authentication failure
Jul 2 13:15:22 iww login: FAILED LOGIN SESSION FROM /dev/pts/1 FOR UNKNOWN, User not known to the underlying authentication module
Jul 2 13:19:45 iww PAM-unix2[5460]: session finished for user henric, service xdm
Jul 2 13:23:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 13:27:57 iww PAM-unix2[6059]: session started for user root, service xdm
Jul 2 13:29:01 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 13:29:01 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 13:29:02 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 13:29:02 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 13:29:03 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 13:29:03 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 13:29:03 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 13:29:03 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 13:38:34 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 13:44:43 iww named[422]: Cleaned cache of 0 RRsets
Jul 2 13:44:43 iww named[422]: USAGE 994074283 994063483 CPU=0.08u/0.09s CHILDCPU=0u/0s
Jul 2 13:44:43 iww named[422]: NSTATS 994074283 994063483 A=22
Jul 2 13:44:43 iww named[422]: XSTATS 994074283 994063483 RR=0 RNXD=0 RFwdR=0 RDupR=0 RFail=0 RFErr=0 RErr=0 RAXFR=0 RLame=0 ROpts=0 SSysQ=1 SAns=22 SFwdQ=0 SDupQ=2011 SErr=1 RQ=22 RIQ=0 RFwdQ=0 RDupQ=0 RTCP=0 SFwdR=0 SFail=0 SFErr=0 SNaAns=22 SNXD=0 RUQ=22 RURQ=0 RUXFR=0 RUUpd=0
Jul 2 13:47:33 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 13:48:33 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 13:59:00 iww /USR/SBIN/CRON[6290]: (root) CMD ( rm -f /var/spool/cron/lastrun/cron.hourly)
Jul 2 14:00:44 iww named[422]: denied query from [163.176.4.197].1027 for "irc.bitchx.com"
Jul 2 14:00:44 iww last message repeated 3 times
Jul 2 14:00:44 iww named[422]: denied query from [163.176.4.197].1027 for "irc.bitchx.com.iww.wan.de"
Jul 2 14:00:44 iww last message repeated 3 times
Jul 2 14:03:33 iww named[422]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 14:11:07 iww PAM-unix2[6059]: session finished for user root, service xdm
Jul 2 14:11:54 iww init: Switching to runlevel: 6
Jul 2 14:12:09 iww kernel: nfsd: terminating on signal 9
Jul 2 14:12:09 iww last message repeated 3 times
Jul 2 14:12:09 iww rpc.mountd: Caught signal 15, un-registering and exiting.
Jul 2 14:12:12 iww PAM-warn[5352]: service: netatalk [on terminal: afpd]
Jul 2 14:12:12 iww PAM-warn[5352]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 14:12:12 iww PAM-unix2[5352]: session finished for user wan, service netatalk
Jul 2 14:12:13 iww PAM-warn[5300]: service: netatalk [on terminal: afpd]
Jul 2 14:12:13 iww PAM-warn[5300]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 14:12:13 iww afpd[5352]: 79.37KB read, 19.81KB written
Jul 2 14:12:13 iww afpd[5352]: Connection terminated
Jul 2 14:12:12 iww afpd[641]: shutting down on signal 15
Jul 2 14:12:13 iww PAM-unix2[5300]: session finished for user wan, service netatalk
Jul 2 14:12:13 iww afpd[641]: server_child<font size="1"> 5352 done
Jul 2 14:12:13 iww afpd[5300]: 0.23KB read, 5.18KB written
Jul 2 14:12:13 iww afpd[5300]: Connection terminated
Jul 2 14:12:13 iww atalkd[312]: done
Jul 2 14:12:17 iww named[422]: named shutting down
Jul 2 14:12:17 iww named[422]: USAGE 994075937 994063483 CPU=0.09u/0.11s CHILDCPU=0u/0s
Jul 2 14:12:17 iww named[422]: NSTATS 994075937 994063483 A=33
Jul 2 14:12:17 iww named[422]: XSTATS 994075937 994063483 RR=0 RNXD=0 RFwdR=0 RDupR=0 RFail=0 RFErr=0 RErr=0 RAXFR=0 RLame=0 ROpts=0 SSysQ=1 SAns=33 SFwdQ=0 SDupQ=2288 SErr=1 RQ=33 RIQ=0 RFwdQ=0 RDupQ=0 RTCP=0 SFwdR=0 SFail=0 SFErr=0 SNaAns=33 SNXD=0 RUQ=33 RURQ=0 RUXFR=0 RUUpd=0
Jul 2 14:12:23 iww sshd[250]: Received signal 15; terminating.
Jul 2 14:12:24 iww kernel: Kernel logging (proc) stopped.
Jul 2 14:12:24 iww kernel: Kernel log daemon terminating.
Jul 2 14:12:25 iww exiting on signal 15
Jul 2 14:14:19 iww syslogd 1.3-3: restart.
Jul 2 14:14:21 iww kernel: klogd 1.3-3, log source = /proc/kmsg started.
Jul 2 14:14:21 iww kernel: Inspecting /boot/System.map-2.4.4-4GB
Jul 2 14:14:23 iww kernel: Loaded 10917 symbols from /boot/System.map-2.4.4-4GB.
Jul 2 14:14:23 iww kernel: Symbols match kernel version 2.4.4.
Jul 2 14:14:23 iww kernel: Loaded 324 symbols from 4 modules.
Jul 2 14:14:23 iww kernel: ip_conntrack (512 buckets, 4096 max)
Jul 2 14:14:23 iww kernel: 8139too Fast Ethernet driver 0.9.16
Jul 2 14:14:23 iww kernel: PCI: Setting latency timer of device 00:09.0 to 64
Jul 2 14:14:23 iww kernel: eth0: RealTek RTL8139 Fast Ethernet at 0xc4c44000, 00:00:b4:93:c4:c4, IRQ 12
Jul 2 14:14:23 iww kernel: eth0: Identified 8139 chip type 'RTL-8139A'
Jul 2 14:14:23 iww kernel: eth0: Setting 100mbps half-duplex based on auto-negotiated partner ability 40a1.
Jul 2 14:14:23 iww kernel: IPv6 v0.8 for NET4.0
Jul 2 14:14:23 iww kernel: IPv6 over IPv4 tunneling driver
Jul 2 14:14:23 iww kernel: NET4: AppleTalk 0.18a for Linux NET4.0
Jul 2 14:14:24 iww atalkd[312]: restart (1.5)
Jul 2 14:14:26 iww atalkd[312]: zip_getnetinfo for eth0
Jul 2 14:14:33 iww named[397]: starting (/etc/named.conf). named 8.2.3-REL Fri May 11 16:00:24 GMT 2001 ^Iroot@ivy:/usr/src/packages/BUILD/bind8-8.2.3/bin/named
Jul 2 14:14:34 iww atalkd[312]: zip_getnetinfo for eth0
Jul 2 14:14:34 iww named[397]: privat.zone:9: SOA ")" error near (I)
Jul 2 14:14:34 iww named[397]: Zone "wan.de" (file privat.zone): no SOA RR found
Jul 2 14:14:34 iww named[397]: master zone "wan.de" (IN) rejected due to errors (serial 2000031203)
Jul 2 14:14:34 iww named[397]: master zone "localhost" (IN) loaded (serial 42)
Jul 2 14:14:34 iww named[397]: tavirp.zone:9: SOA ")" error near (I)
Jul 2 14:14:34 iww named[397]: Zone "4.176.163.in-addr.arpa" (file tavirp.zone): no SOA RR found
Jul 2 14:14:34 iww named[397]: master zone "4.176.163.in-addr.arpa" (IN) rejected due to errors (serial 2000031203)
Jul 2 14:14:34 iww named[397]: tsohlacol.zone:9: SOA ")" error near (I)
Jul 2 14:14:34 iww named[397]: Zone "0.0.127.in-addr.arpa" (file tsohlacol.zone): no SOA RR found
Jul 2 14:14:34 iww named[397]: master zone "0.0.127.in-addr.arpa" (IN) rejected due to errors (serial 2000031203)
Jul 2 14:14:35 iww named[397]: hint zone "" (IN) loaded (serial 0)
Jul 2 14:14:35 iww named[397]: listening on [127.0.0.1].53 (lo)
Jul 2 14:14:35 iww named[397]: listening on [163.176.4.197].53 (eth0)
Jul 2 14:14:35 iww named[397]: Forwarding source address is [0.0.0.0].1024
Jul 2 14:14:35 iww named[419]: group = named
Jul 2 14:14:35 iww named[419]: user = named
Jul 2 14:14:35 iww named[419]: Ready to answer queries.
Jul 2 14:14:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:14:35 iww kernel: eth0: no IPv6 routers present
Jul 2 14:14:36 iww kernel: eth0: no IPv6 routers present
Jul 2 14:14:36 iww rpc.statd[445]: Version 0.3.1 Starting
Jul 2 14:14:37 iww kernel: Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
Jul 2 14:14:40 iww /usr/sbin/cron[500]: (CRON) STARTUP (fork ok)
Jul 2 14:14:44 iww atalkd[312]: zip_getnetinfo for eth0
Jul 2 14:14:46 iww kernel: isapnp: Scanning for PnP cards...
Jul 2 14:14:46 iww kernel: isapnp: Calling quirk for 01:00
Jul 2 14:14:46 iww kernel: isapnp: SB audio device quirk - increasing port range
Jul 2 14:14:46 iww kernel: isapnp: Card 'Creative ViBRA16C PnP'
Jul 2 14:14:46 iww kernel: isapnp: 1 Plug & Play card detected total
Jul 2 14:14:54 iww atalkd[312]: config for no router
Jul 2 14:14:55 iww atalkd[312]: ready 0/0/0
Jul 2 14:15:07 iww papd[630]: restart (1.5)
Jul 2 14:15:15 iww timelord[635]: iww:TimeLord started
Jul 2 14:15:15 iww afpd[636]: iww:AFPServer@* started on 65280.55:130 (1.5)
Jul 2 14:15:15 iww afpd[636]: ASIP started on 163.176.4.197:548(1) (1.5)
Jul 2 14:15:15 iww afpd[636]: uam: uams_guest.so loaded
Jul 2 14:15:15 iww afpd[636]: uam: uams_clrtxt.so loaded
Jul 2 14:15:15 iww afpd[636]: uam: "Cleartxt Passwrd" available
Jul 2 14:15:15 iww afpd[636]: uam: "No User Authent" available
Jul 2 14:16:04 iww PAM-unix2[525]: session started for user root, service xdm
Jul 2 14:17:12 iww insmod: insmod: a module named snd-mixer-oss already exists
Jul 2 14:17:12 iww insmod: insmod: insmod sound-service-0-0 failed
Jul 2 14:17:12 iww insmod: insmod: a module named snd-mixer-oss already exists
Jul 2 14:17:12 iww insmod: insmod: a module named snd-mixer-oss already exists
Jul 2 14:17:12 iww insmod: insmod: insmod sound-service-0-0 failed
Jul 2 14:17:12 iww insmod: insmod: insmod sound-service-0-3 failed
Jul 2 14:17:13 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 14:17:13 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 14:17:14 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 14:17:14 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 14:17:14 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 14:17:14 iww modprobe: modprobe: Can't locate module sound-slot-1
Jul 2 14:17:15 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 14:17:15 iww modprobe: modprobe: Can't locate module sound-service-1-0
Jul 2 14:18:34 iww named[419]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 14:19:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:22:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:24:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:27:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:29:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:32:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:33:33 iww named[419]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 14:34:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:37:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:39:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:42:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:44:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:47:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:48:33 iww named[419]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 14:49:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:52:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:54:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:57:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 14:59:00 iww /USR/SBIN/CRON[1054]: (root) CMD ( rm -f /var/spool/cron/lastrun/cron.hourly)
Jul 2 14:59:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:02:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:03:33 iww named[419]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 15:04:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:07:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:09:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:12:31 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:14:35 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:18:33 iww named[419]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 15:19:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:22:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:24:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:27:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:29:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:32:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:33:33 iww named[419]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 15:34:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:37:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:39:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:42:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:44:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:47:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:48:33 iww named[419]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 15:49:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:52:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:54:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:57:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 15:59:00 iww /USR/SBIN/CRON[1272]: (root) CMD ( rm -f /var/spool/cron/lastrun/cron.hourly)
Jul 2 15:59:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 16:02:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 16:03:01 iww afpd[1328]: ASIP session:548(1) from 163.176.4.51:2123(2)
Jul 2 16:03:01 iww afpd[636]: server_child<font size="1"> 1328 done
Jul 2 16:03:02 iww afpd[1329]: ASIP session:548(1) from 163.176.4.51:2124(2)
Jul 2 16:03:02 iww afpd[1329]: cleartext login: wan
Jul 2 16:03:03 iww PAM-warn[1329]: service: netatalk [on terminal: afpd]
Jul 2 16:03:03 iww PAM-warn[1329]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 16:03:03 iww afpd[1329]: 0.07KB read, 0.07KB written
Jul 2 16:03:03 iww afpd[636]: server_child<font size="1"> 1329 done
Jul 2 16:03:11 iww afpd[1330]: ASIP session:548(1) from 163.176.4.51:2125(2)
Jul 2 16:03:11 iww afpd[1330]: cleartext login: wan
Jul 2 16:03:11 iww PAM-warn[1330]: service: netatalk [on terminal: afpd]
Jul 2 16:03:11 iww PAM-warn[1330]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 16:03:11 iww PAM-warn[1330]: service: netatalk [on terminal: afpd]
Jul 2 16:03:11 iww PAM-warn[1330]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 16:03:11 iww PAM-warn[1330]: service: netatalk [on terminal: afpd]
Jul 2 16:03:11 iww PAM-warn[1330]: user: (uid=0) -> wan [remote: ?nobody@iww]
Jul 2 16:03:11 iww PAM-unix2[1330]: session started for user wan, service netatalk
Jul 2 16:03:11 iww afpd[1330]: login wan (uid 500, gid 100)
Jul 2 16:03:33 iww named[419]: denied query from [163.176.4.95].137 for "WORKGROUP.wan.de"
Jul 2 16:04:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 16:07:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 16:09:33 iww named[419]: denied query from [163.176.4.197].1024 for "."
Jul 2 16:12:33 iww named[419]: denied query from [163.176.4.197].1024 for "."

cptchaos
Posts: 129
Joined: 06. Jun 2000 21:42

Re: Nur über IP

#12 Post by cptchaos »

Moin moin,

(Leider wenig Zeit, deshalb vieleicht sehr krass geschrieben, sorry)
erst einmall solltest Du deinen Adressraum überdenken, und für dein privates Netzwerk einen freien Adressraum z.B. Class C 192.168.x.x wählen. Sonst wird bind nicht dein einziges Problem bleiben.

Zum zweitens ist die "forwarder" Angabe dazu gedacht bind zu sagen das er Anfragen die er nicht selber beantworten kann einen (oder bei Liste auch mehrere) anderen (bestimmten) DNS Server weiterleiten soll.
Es bringt nichts hier seine eigene IP Adresse des DNS einzugeben.

allow-query { 127.0/16; 163.176.1/24};
Diese Option sollte dein Problem sein, hier erlaubst Du localhost (127.0.0.0) und dem Netz 163.176.1.0 den Zugriff auf deinen DNS. Deine Anfragen kommen aber aus 163.176.4.0 . Diese Anfragen werden von bind auch abgewiesen, siehe dazu entsprechende Einträge in der Log. Passe diese Option an, oder deaktiviere sie, dann werden alle Anfragen beantwortet.

Schaue dir bitte auch noch mal deine Zone und Revers Database Dateien an, bind meckert hier über reichlich Fehler in den entsprechenden Datenbanken.

So das wars erst mal auf die Schnelle, das Posten der Log und der Konf. war eine sehr gute Idee <img src="http://www.pl-forum.de/UltraBoard/Images/Happy.gif" border="0" align="middle">)

MfG Marek Walther

Steve

Re: Nur über IP

#13 Post by Steve »

Danke erstmal an alle, ich müß mich ein bischen mehr mit BIND beschäftigen

Jochen

Re: Nur über IP

#14 Post by Jochen »

Fürs erste kannst Du den folgenden Anleitungen von HJB folgen:

<a href="http://www.pl-berichte.de/t_netzwerk/dns.html" target="_blank"><!--auto-->http://www.pl-berichte.de/t_netzwerk/dn ... <!--auto-->
<a href="http://www.pl-berichte.de/t_netzwerk/dnssecure.html" target="_blank"><!--auto-->http://www.pl-berichte.de/t_netzwerk/dn ... <!--auto-->

Und beim nächsten Mal posten der /var/log/messages vielleicht vorher ein "grep named /var/log/messages" machen, OK? <img src="http://www.pl-forum.de/UltraBoard/Images/Happy.gif" border="0" align="middle">

Jochen

Post Reply