RE: Bind configuration in FreeBSD
Hi, I as know default version (without port upgrading) is Bind 9.3.3 in Freebsd 6.2. You can see the version, executing named -v command. Do a ps -ax | grep named and see whether named is running or not. Also you can find the Bind logs in /var/named/var/log directory (chrooted directory), if it is running check your configuration with dig or nslookup if not - use /usr/sbin/named-checkconf and /usr/sbin/named-checkzone to inspect the problem. Please post your error text to help you furthermore. Regards -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of dhaneshk k Sent: Friday, October 05, 2007 5:09 PM To: freebsd-questions@freebsd.org Subject: Bind configuration in FreeBSD Hi friends , I have a FreeBSD fresh installation in a new server machine. Here I wants to run my DNS server , by default I found the in /etc/namedb dir, named.conf file & master dir etc in the m/c after OS installation , so I configured my DNS entries(I mean named.conf and zone file for my domain I configured ) , and after that I tried to start /etc/rc.d/named start but no message that it is starting or not . I would like to ask you whether I have to install , bind 8 or bind 9 through /usr/ports/dns to make this machine as a DNS server or by default (I mean fresh installation) the bind is coming? (because I can see /etc/namedb dir and named.conf file ,master dir , etc ... there) pls guide me to setup Bind in FreeBSD6.2 to make A DNS server for my own domain thanks in Advance kk _ Search from any Web page with powerful protection. Get the FREE Windows Live Toolbar Today! http://toolbar.live.com/?mkt=en-in__ _ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
SQUID 2.6 disk usage didn't grow HELP
I set squid 2.6 transparent proxy with default settings on P4 2000 RAM 512/ 80GB HDD. I change only cache_mem 128 MB cache_dir ufs /usr/local/squid/cache 40960 16 256 Squid works normally and do caching. It takes 300Mb RAM, and about 3GB HDD space, but it DOESN'T use more space. Squid works about 15 days without any restart and it use only 3GB space and the cache size didn't grow. Is it normal? I want to use more HDD cache Please advice Thank you in advance ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Policy Based Routing problem help me
Hi all, I have a firewall/router with FreeBSD 6.2 installed on it. 2 ISP connection and 2 LAN connections. I need to do a policy-based routing. All I need that packets coming from one ISP interface return to that interface (incoming connections' source based routing) and the other hand do a IP based routing from the LAN (Some packets will goes out via ISP 1 some others via ISP 2 depending on IPs requested). I tried to do that with ipfw fwd but it didn't work any way (e.g. with ip.forwarding enabled or no). Even I've disabled my static routes, default gw. Just it do nothing. Sample configs are ipfw add fwd ISP_gw from ${my lan} to any via ${eif} ipfw add fwd ISP_gw from ${my lan} to any out via ${eif} ipfw add fwd ISP_gw from any to any xmit ${eif} Ipfw add fwd ISP_gw from any to any via ${eif} out I don't use nat, proxy. Just need to route. Please help Regards, Narek ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: restart network without shutdown
I think the best way is /etc/netstart but when you try it via ssh connection it outputs an fatal error and your ssh hangs up. You cannot connect again via ssh. But you can do it via console and everything will ok. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Xihong Yin Sent: Tuesday, August 07, 2007 6:02 PM To: freebsd-questions@freebsd.org Subject: restart network without shutdown How can I restart my network card without shutdown/reboot? I use DHCP. Thanks, -- Get a free email address with REAL anti-spam protection. http://www.bluebottle.com/tag/1 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: Policy - based Routing problem Need help
Thank you very much, Relaying on your help reach to success but rules differ from yours a little bit. My working rules listed below: ipfw add fwd A all from ${inet1}:${imask1} to any out recv ${iif1} ipfw add fwd B all from ${inet}:${imask} to any out recv ${iif} ipfw add fwd G all from any to ${inet1}:${imask1} out via ${iif1} ipfw add fwd H all from any to ${inet}:${imask} out via ${iif} ipfw add fwd A all from ${onet1}:${omask1} to any out ipfw add fwd B all from ${onet}:${omask} to any out ipfw add fwd A all from ${inet1}:${imask1} to any out ipfw add fwd B all from ${inet}:${imask} to any out The only problem last is when someone (from provider A) try to access ftp server via B it connects but didn't do "Get Directory" command. Ipfw doesn't matter I checked. I think it is specification of ftp- data 20 port (connection opening problem). Can you describe me how it take place via 20 port or find the wrong line in ipfw fwd rules? Best regards, Narek -Original Message- From: Julian Elischer [mailto:[EMAIL PROTECTED] Sent: Monday, July 30, 2007 2:02 AM To: Narek Gharibyan Subject: Re: Policy - based Routing problem Need help Narek Gharibyan wrote: > Yes your written rules are correct, You think exactly > I want to do ALSO > > 1. Packets coming from ISP-B (B network)into C SHOULD go out only via xx0 > (as they came) # make sure WE can talk to the back nets # and ourself ipfw add 1 allow ip from any to any via lo0 ipfw add 2 allow ip from me to G ipfw add 3 allow ip from me to H # the next 2 rules are not actually needed as any packets # going to G and H will go the right way anyhow. # ipfw add 4 fwd (G) ip from any to G out recv xx0 # ipfw add 5 fwd (H) ip from any to H out recv xx1 # The next rules ARE needed. ipfw add 6 fwd (A) ip from G to any out recv yy0 ipfw add 7 fwd (B) ip from H to any out recv yy1 ipfw add 8 fwd (A) ip from (C) to any out ipfw add 9 fwd (B) ip from (D) to any out > 2. Packets coming from ISP-A (A network) into D Should go out only via xx1 > (as they came) > > Saying by another words packets should leave my network via interface they > came. > > 3. Packets coming from E should go out via xx0 > 4. Packets coming from F should go out via xx1 > > Also I try from inside to forward packets without default gateway using via > A or B with the commands > > Ipfw add fwd A all from G to any xmit (or via) xx0 > > and it didn't work, I've compiled my kernel with IPFIREWALL, > IPFIREWALL_FORWARD, and set net.inet.ip.forwarding=1 in sysctl.conf. Surely > I will try your configuration on Monday, but it seems ipfw fwd nothing do > forwarding. So how to write for reaching the results (1.,2.,3.,4.)? > > Regards, > Narek > > -Original Message----- > From: Julian Elischer [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 29, 2007 1:49 PM > To: Narek Gharibyan > Subject: Re: Policy - based Routing problem Need help > > Narek Gharibyan wrote: >> The right drawing is that one below >> >>___ ___ >> -[ISP-A](A)(C)[xx0 yy0](E)--(G)[NAT] >> [ FBSD ][ Windows ](X)-LAN >> -[ISP-B](B)(D)[xx1 yy1](F)--(H)[NAT] >> ~~~ ~~~ >> >> We can't use only FreeBSD box, we need also use Windows box, due to our >> company's policy. So you suggestion is not an option. I think we need a >> different solution. > > ok. > > now that we have established the exact layout, > what is it exactly that you want to do? > > I gather that you want packets that come into D to go out of F > and packets that come in through C should go out via E > > this is achieved by: > ipfw add 1 fwd (G) ip from any to G out recv xx0 > ipfw add 2 fwd (H) ip from any to H out recv xx1 > > what else do you wish it to do? > >> Regards, >> Narek >> ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Wathdog Timeout HELP
Dear All, I recevice about 3-5 times per day xl0 : watchdog timeout, xl1 watchdog timeout. I tried to set BIOS value "Plug and Play O/S" to yes or no. None of the values help me. I use 3COM nics, I checked all nics operate under separate IRQ-s. When I receive this massage connection breaks for a few seconds. What to do? Regards, Narek ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
My mail could not be delivered HELP
I could not send any mail to that mail server Freebsd.org But I could deliver mails to all other mail servers? My mail server place the mail into retry queue and never send. Why? Every time I receive the error below. ERROR The attached message had transient non-fatal delivery errors THIS IS A WARNING MESSAGE ONLY - YOU DO NOT NEED TO RESEND YOUR MESSAGE! This server is configured to automatically retry delivery at configured intervals. Subsequent attempts to deliver this message are pending. --- Session Transcript --- Tue 2007-08-14 13:41:23: Parsing message Tue 2007-08-14 13:41:23: * From: [EMAIL PROTECTED] Tue 2007-08-14 13:41:23: * To: [EMAIL PROTECTED] Tue 2007-08-14 13:41:23: * Subject: My mail could not be delivered Tue 2007-08-14 13:41:23: * Message-ID: <[EMAIL PROTECTED]> Tue 2007-08-14 13:41:23: * Route slip host: freebsd.org Tue 2007-08-14 13:41:23: * Route slip port: 25 Tue 2007-08-14 13:41:23: Attempting SMTP connection to [freebsd.org] Tue 2007-08-14 13:41:23: Resolving MX records for [freebsd.org] (DNS Server: 217.113.7.60)... Tue 2007-08-14 13:41:23: * P=010 S=000 D=freebsd.org TTL=(5) MX=[mx1.freebsd.org] Tue 2007-08-14 13:41:23: Attempting SMTP connection to [mx1.freebsd.org:25] Tue 2007-08-14 13:41:23: Resolving A record for [mx1.freebsd.org] (DNS Server: 217.113.7.60)... Tue 2007-08-14 13:41:25: * D=mx1.freebsd.org TTL=(60) A=[69.147.83.52] Tue 2007-08-14 13:41:25: Attempting SMTP connection to [69.147.83.52:25] Tue 2007-08-14 13:41:25: Waiting for socket connection... Tue 2007-08-14 13:41:26: * Connection established (91.103.27.98:2282 -> 69.147.83.52:25) Tue 2007-08-14 13:41:26: Waiting for protocol to start... Tue 2007-08-14 13:41:28: <-- 220 mx1.freebsd.org ESMTP Postfix (Postfix Rules!) Tue 2007-08-14 13:41:28: --> EHLO arm.synisys.com Tue 2007-08-14 13:41:29: <-- 250-mx1.freebsd.org Tue 2007-08-14 13:41:29: <-- 250-PIPELINING Tue 2007-08-14 13:41:29: <-- 250-SIZE 1024 Tue 2007-08-14 13:41:29: <-- 250-VRFY Tue 2007-08-14 13:41:29: <-- 250-ETRN Tue 2007-08-14 13:41:29: <-- 250-ENHANCEDSTATUSCODES Tue 2007-08-14 13:41:29: <-- 250-8BITMIME Tue 2007-08-14 13:41:29: <-- 250 DSN Tue 2007-08-14 13:41:29: --> MAIL From:<[EMAIL PROTECTED]> SIZE=4137 Tue 2007-08-14 13:41:30: <-- 250 2.1.0 Ok Tue 2007-08-14 13:41:30: --> RCPT To: Tue 2007-08-14 13:41:32: <-- 450 4.7.1 Client host rejected: cannot find your hostname, [91.103.27.98] Tue 2007-08-14 13:41:32: --> RCPT To:<[EMAIL PROTECTED]> Tue 2007-08-14 13:41:33: <-- 450 4.7.1 Client host rejected: cannot find your hostname, [91.103.27.98] Tue 2007-08-14 13:41:33: --> QUIT Tue 2007-08-14 13:41:33: This message is 62 minutes old; it has 0 minutes left in this queue Tue 2007-08-14 13:41:33: Remote queue lifetime exceeded; message placed in retry queue --- End Transcript --- ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: My mail could not be delivered HELP
My mail server has 2 static IPs. Just I use Dual view Domain RRs. Can that be the cause? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Olivier Nicole Sent: Tuesday, August 14, 2007 2:29 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; freebsd-questions@freebsd.org Subject: Re: My mail could not be delivered HELP > I could not send any mail to that mail server > > Freebsd.org > > But I could deliver mails to all other mail servers? > > Tue 2007-08-14 13:41:32: <-- 450 4.7.1 Client host rejected: cannot find > your hostname, [91.103.27.98] Tue 2007-08-14 13:41:32: --> RCPT > To:<[EMAIL PROTECTED]> Tue 2007-08-14 13:41:33: <-- 450 4.7.1 Client > host rejected: cannot find your hostname, [91.103.27.98] Tue 2007-08-14 The important part of the error message is the one above. Many mail server only accept messages from machines that have a valid rDNS reccord. It looks like you are sending email from a machine with a dynamic IP, that has no rDNS, so FreeBSD mailing listr server will not accept your message. Maybe you should try to send your email through your ISP mail gateway. Best regards, Olivier ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: IPFW Questions.
I have same problem related to ipfw pullup. I couldn't find any documentation or solution on it. Narek -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Grant Peel Sent: Monday, August 20, 2007 6:07 PM To: freebsd-questions@freebsd.org Subject: IPFW Questions. Hi all, I was wondering what the concensus is on using dynamic rules in IPFW. Every once in a while, I suppose there is a DoS attaclk that causes me to see hundreds of: +ipfw: install_state: Too many dynamic rules in my security log. I am sure i read somewhere that many people are skipping the dynamic rules and just relying on the line by line rules. You thoughts please. Any while your up, does anyone really know what this means? ipfw: pullup failed I dont see that often maybe 1 or 2 times a month. -Grant ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
load script at bootup
#!/bin/sh Ping -Dc 3600 xxx.xxx.xxx.xxx | tail -4 >>/root/stat && date >> /root/stat && echo "===" >> /root/stat I wrote this script for collecting ping statistic (after I email to a group the stat file). 1. how can I run this at startup 2. how can I restart this script after 3600 counts down 3. Is there a program, script or any way more appropriate to track the packet loss and ping availability.? Thank you in advance ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
IPFW and HTTPS problem
I enabled https for my webmail. It works for LAN client but doesn't work for Internet clients. I checked with tcpdump ipfw filters the incomping https packets unless the rule Ipfw add allow tcp from any to ${webmail} 443 Ipfw add allow tcp from ${webmail} 443 to any Even I tried Ipfw add allow all from any to ${webmail} keep-state Ipfw add allow all from ${webmail} to any keep-state Nothing helps. Any comments? Are there any specific ipfw configurations related to https? Thank you in advance Narek ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Named
Has Anyone tried to use Named under windows? What are results? Regards, Narek ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Link state changed to DOWN - Help me
Hi I have such "link state changed to DOWN" problem. Some times ago I have had "Watchdog timeout", which takes to "Link state changed to DOWN". After enabling device polling, this problem solved. But there are a few days I receive "Link state changed to DOWN" again. 1. Is that related to "promiscuous mode enabled/disabled" messages? 2. What's the cause of this? 3. Has my problem any solution? Thank you in advance Narek Aug 25 23:29:08 gate kernel: xl3: link state changed to DOWN Aug 25 23:29:10 gate kernel: xl3: link state changed to UP Aug 25 23:29:29 gate kernel: xl3: link state changed to DOWN Aug 25 23:29:30 gate kernel: xl0: link state changed to DOWN Aug 25 23:29:31 gate kernel: xl3: link state changed to UP Aug 25 23:29:32 gate kernel: xl0: link state changed to UP Aug 25 23:51:13 gate su: pogos to root on /dev/ttyp0 Aug 25 23:56:32 gate reboot: rebooted by pogos Aug 25 23:56:32 gate syslogd: exiting on signal 15 Aug 25 23:57:20 gate syslogd: kernel boot file is /boot/kernel/kernel Aug 25 23:57:20 gate kernel: Copyright (c) 1992-2007 The FreeBSD Project. Aug 25 23:57:20 gate kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Aug 25 23:57:20 gate kernel: The Regents of the University of California. All rights reserved. Aug 25 23:57:20 gate kernel: FreeBSD is a registered trademark of The FreeBSD Foundation. Aug 25 23:57:20 gate kernel: FreeBSD 6.2-RELEASE #0: Mon Aug 20 15:25:07 UTC 2007 Aug 25 23:57:20 gate kernel: [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GATE Aug 25 23:57:20 gate kernel: ACPI APIC Table: Aug 25 23:57:20 gate kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Aug 25 23:57:20 gate kernel: CPU: Intel(R) Pentium(R) 4 CPU 2.00GHz (2019.90-MHz 686-class CPU) Aug 25 23:57:20 gate kernel: Origin = "GenuineIntel" Id = 0xf24 Stepping = 4 Aug 25 23:57:20 gate kernel: Features=0x3febfbff irqs 0-23 on motherboard Aug 25 23:57:20 gate kernel: kbd1 at kbdmux0 Aug 25 23:57:20 gate kernel: acpi0: on motherboard Aug 25 23:57:20 gate kernel: acpi0: Overriding SCI Interrupt from IRQ 9 to IRQ 22 Aug 25 23:57:20 gate kernel: acpi0: Power Button (fixed) Aug 25 23:57:20 gate kernel: Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 Aug 25 23:57:20 gate kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 Aug 25 23:57:20 gate kernel: cpu0: on acpi0 Aug 25 23:57:20 gate kernel: acpi_throttle0: on cpu0 Aug 25 23:57:20 gate kernel: acpi_button0: on acpi0 Aug 25 23:57:20 gate kernel: pcib0: port 0xcf8-0xcff on acpi0 Aug 25 23:57:20 gate kernel: pci0: on pcib0 Aug 25 23:57:20 gate kernel: agp0: mem 0xf800-0xfbff at device 0.0 on pci Aug 25 23:57:20 gate kernel: pcib1: at device 1.0 on pci0 Aug 25 23:57:20 gate kernel: pci1: on pcib1 Aug 25 23:57:20 gate kernel: pci1: at device 0.0 (no driver attached) Aug 25 23:57:20 gate kernel: pcib2: at device 30.0 on pci0 Aug 25 23:57:20 gate kernel: pci2: on pcib2 Aug 25 23:57:20 gate kernel: xl0: <3Com 3c905C-TX Fast Etherlink XL> port 0xb800-0xb87f mem 0xf100-0xf17f Aug 25 23:57:20 gate kernel: miibus0: on xl0 Aug 25 23:57:20 gate kernel: ukphy0: on miibus0 Aug 25 23:57:20 gate kernel: ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Aug 25 23:57:20 gate kernel: xl1: <3Com 3c905C-TX Fast Etherlink XL> port 0xb400-0xb47f mem 0xf080-0xf080007f Aug 25 23:57:20 gate kernel: miibus1: on xl1 Aug 25 23:57:20 gate kernel: ukphy1: on miibus1 Aug 25 23:57:20 gate kernel: ukphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Aug 25 23:57:20 gate kernel: xl2: <3Com 3c905C-TX Fast Etherlink XL> port 0xb000-0xb07f mem 0xf000-0xf07f Aug 25 23:57:20 gate kernel: miibus2: on xl2 Aug 25 23:57:20 gate kernel: ukphy2: on miibus2 Aug 25 23:57:20 gate kernel: ukphy2: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Aug 25 23:57:20 gate kernel: xl3: <3Com 3c905C-TX Fast Etherlink XL> port 0xa800-0xa87f mem 0xef80-0xef80007f Aug 25 23:57:20 gate kernel: miibus3: on xl3 Aug 25 23:57:20 gate kernel: ukphy3: on miibus3 Aug 25 23:57:20 gate kernel: ukphy3: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto Aug 25 23:57:20 gate kernel: isab0: at device 31.0 on pci0 Aug 25 23:57:20 gate kernel: isa0: on isab0 Aug 25 23:57:20 gate kernel: atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf Aug 25 23:57:20 gate kernel: ata0: on atapci0 Aug 25 23:57:20 gate kernel: ata1: on atapci0 Aug 25 23:57:20 gate kernel: atkbdc0: port 0x60,0x64 irq 1 on acpi0 Aug 25 23:57:20 gate kernel: atkbd0: irq 1 on atkbdc0 Aug 25 23:57:20 gate kernel: kbd0 at atkbd0 Aug 25 23:57:20 gate kernel: atkbd0: [GIANT-LOCKED] Aug 25 23:57:20 gate kernel: vga0: at port 0x3c0-0x3df iomem 0xa-0xb on isa0 Aug 25 23:57:20 gate kernel: sc0: at flags 0x100 on isa0 Aug 25 23:57:20 gate kernel: sc0: VGA <16 virtual consoles, flags=0x300> Aug 25 23:57:20 gate kernel:
Smokeping HELP
Hi All, Please send me detailed instruction how to configure Smokeping. I couldn't configure httpd.conf also. Regards, Narek ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: Smokeping HELP
It is a outgoing connection monitoring soft for FreeBSD (as I understood :)) Uptime/delay/loss/avg and plus it keep all info in a database, do mailing, has a web interface with cgi support. Cool port. I couldn't configure it because I am a newbie in Apache, and never install such soft in FreeBSD. I tried to configure but the structure of .conf file confused me plus it wont start without any error (I didn't change anything after install). Narek -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mel Sent: Friday, September 07, 2007 12:44 AM To: freebsd-questions@freebsd.org Subject: Re: Smokeping HELP On Thursday 06 September 2007 21:11:10 Narek Gharibyan wrote: > Please send me detailed instruction how to configure Smokeping. I couldn't > configure httpd.conf also. I'll bite. What's smokeping? -- Mel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: Smokeping HELP
It is a outgoing connection monitoring soft for FreeBSD (as I understood :)) Uptime/delay/loss/avg and plus it keep all info in a database, do mailing, has a web interface with cgi support. Cool port. I couldn't configure it because I am a newbie in Apache, and never install such soft in FreeBSD. I tried to configure but the structure of .conf file confused me plus it wont start without any error (I didn't change anything after install). Narek -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mel Sent: Friday, September 07, 2007 12:44 AM To: freebsd-questions@freebsd.org Subject: Re: Smokeping HELP On Thursday 06 September 2007 21:11:10 Narek Gharibyan wrote: > Please send me detailed instruction how to configure Smokeping. I couldn't > configure httpd.conf also. I'll bite. What's smokeping? -- Mel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"