Титла: Въпрос за firewall Публикувано от: emagi в Feb 04, 2007, 22:53 Написах следните редове:
iptables --flush iptables --delete-chain iptables --flush -t nat iptables --delete-chain -t nat iptables -P INPUT DROP iptables -P FORWARD DROP iptables -P OUTPUT DROP #INPUT policy iptables -A INPUT -m state --state ESTABLISHED,RELATED iptables -A INPUT -p tcp ! --syn -m state --state NEW -j LOG --log-prefix "Stealth scan attemp" iptables -A INPUT -p tcp ! --syn -m state --state NEW -j DROP #accept SSH from inside net iptables -A INPUT -p tcp -s 172.16.2.0/24 --dport 22 -m state --state NEW -j ACCEPT iptables -A INPUT -j LOG --log-prefix "Dropped by default (INPUT)" iptables -A INPUT -j DROP #OUTPUT policy iptables -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT iptables -A OUTPUT -p icmp -j ACCEPT iptables -A OUTPUT -p udp --dport 53 -j ACCEPT iptables -A OUTPUT -p tcp --dport 80 -j ACCEPT # iptables -A OUTPUT -j LOG --log-prefix "Dropped by default (OUTPUT)" iptables -A OUPUT -j DROP #FORWARD policy iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT iptables -A FORWARD -p tcp ! --syn -m state --state NEW -j LOG --log-prefix "Stealth scan attemp" iptables -A FORWARD -p tcp ! --syn -m state --state NEW -j DROP #internet to outside net iptables -A FORWARD -p udp -s 172.16.2.0/24 -m state --state NEW,RELATED --dport 53 -j ACCEPT iptables -A FORWARD -p tcp -s 172.16.2.0/24 -m state --state NEW,RELATED --dport 21 -j ACCEPT iptables -A FORWARD -p tcp -s 172.16.2.0/24 -m state --state NEW --dport 80 -j ACCEPT iptables -A FORWARD -p tcp -s 172.16.2.0/24 -m state --state NEW --dport 443 -j ACCEPT iptables -A FORWARD -j LOG --log-prefix "Dropped by default (OUTPUT)" #NAT iptables -t nat -A POSTROUTING -s 172.16.2.0/24 -o eth0 -j SNAT --to-source 192.168.1.2 Всичко си беше идеално,но вмъкнах тези редове в един rc.firewall файл,направих го изпълним и рестартирах!Първо много бавно ми зареди Linux-a,ама много бавно,и второ понеже съм направил DHCP сървър linux-a раздава служебни ip-та,сега Windows-kaта машина не можа да получи ip!Знам че не съм разрешил порта,но не знам кой ползва DHCP сървъра!КОй ред ми липсва,и защо толкова бави системата при зареждане! Титла: Въпрос за firewall Публикувано от: neter в Feb 05, 2007, 09:49 Първо, бих ти препоръчал в скриптове да използваш пълни пътища, защото понякога стават грешки. Т.е. вместо iptables използвай /sbin/iptables например. Относно порта на DHCP-то. Когато някой клиент поиска IP, той изпраща заявката през собствения си 68-и порт към 67-и порт на сървъра, след което сървъра връща отговора през собствения си 67-и порт към 68-и порт на клиента. Сега изясни ли ти се
![]() Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 10:22 Да това го оправих!Отворих портове на "влизане":
iptables -A INPUT -p udp --dport 67 -j ACCEPT и за "излизане": iptables -A OUTPUT -p udp --dport 68 -j ACCEPT Но това бавене,при зареждане ,незнам на какво се дължи!При зареждането отначало,изписва следните редове: ............... .............. STARTING SAMBA :/usr/sbin/smbd -D STOPPING Samba from pid file /var/run/mysql/mysql.pid 070205 11:05:00 mysql enden Така стои 5-7 мин и тогава чак "запалва" На мен ми се струва,че понеже съм дал политика INPUT DROP,нещо или самбата или msql-а ми правят тези забавяния!Трябва да пробвам да разреша sambata,пък ще видим по-нататък!Съпка по съпка! ![]() ![]() ![]() Титла: Въпрос за firewall Публикувано от: Hapkoc в Feb 05, 2007, 10:48 Добре, ако пускаш самбата на ръка нормално ли тръгва или пак се бави? Ако се бави - какво пише в логовете?
Титла: Въпрос за firewall Публикувано от: VladSun в Feb 05, 2007, 12:00 Пробвай да ACCEPT-неш loclahost в OUTPUT и INPUT веригите.
Титла: Въпрос за firewall Публикувано от: gat3way в Feb 05, 2007, 12:07 Разреши всичко, което минава през loopback интерфейса, защото в противен случай е много възможно да си имаш такива грижи, e.g
iptables -I INPUT 1 -i lo -j ACCEPT iptables -I INPUT 1 -o lo -j ACCEPT Апропо, тези правила за stealth scan добре че ги слагаш, но не важат за прост SYN portscan. От това правило: iptables -A INPUT -j DROP Нямаш нужда, заради policy-то на веригата. Друг проблем: iptables -A INPUT -m state --state ESTABLISHED,RELATED Това няма да мине, защото не задаваш никакъв TARGET. Следователно освен входящи ssh пакети, друго няма да мине. И понеже това се отнася до абсолютно всички интерфейси, твърде е възможно да си имаш проблеми със всичко що си комуникира по PF_INET сокети. В това число да - твърде възможно и самба. Вероятно се опитва да си отваря разни сокети да си комуникира с разни netbios naming услуги (WINS например) и да се бави, бави докато не timeout-не. Успех ![]() Ееееей Vladsun ме изпреварил ![]() Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 12:13 На тази самба,кои портове и трябват?!
![]() iptables -A INPUT -p tcp -s 172.16.2.0/24 --dport 135 -J ACCEPT iptables -A INPUT -p udp -s 172.16.2.0/24 --dport 135 -J ACCEPT iptables -A INPUT -p tcp -s 172.16.2.0/24 --dport 138 -J ACCEPT iptables -A INPUT -p udp -s 172.16.2.0/24 --dport 138 -J ACCEPT iptables -A INPUT -p tcp -s 172.16.2.0/24 --dport 139 -J ACCEPT iptables -A INPUT -p udp -s 172.16.2.0/24 --dport 139 -J ACCEPT iptables -A INPUT -p tcp -s 172.16.2.0/24 --dport 445 -J ACCEPT iptables -A INPUT -p udp -s 172.16.2.0/24 --dport 445 -J ACCEPT Не иска,и не иска!Кои портове трябва да отворя! Колкото до VladSun,пробвах с това: iptables -A INPUT -s localhost -j ACCEPT пак не става! Предложения??!! Титла: Въпрос за firewall Публикувано от: VladSun в Feb 05, 2007, 12:20 iptables -I INPUT -i lo -j ACCEPT
iptables -I OUTPUT -o lo -j ACCEPT Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 12:50 Пак не става!Пробвах и така,както VladSun каза!Ето и файла /var/log/messages!Ako нешо помогне:
![]() Feb 5 14:25:11 moon syslogd 1.4.1: restart. Feb 5 14:25:12 moon kernel: klogd 1.4.1, log source = /proc/kmsg started. Feb 5 14:25:12 moon kernel: BIOS-provided physical RAM map: Feb 5 14:25:12 moon kernel: 0MB HIGHMEM available. Feb 5 14:25:12 moon kernel: 256MB LOWMEM available. Feb 5 14:25:12 moon kernel: Initializing CPU#0 Feb 5 14:25:12 moon kernel: Memory: 255760k/262144k available (1926k kernel code, 5996k reserved, 577k data, 124k init, 0k highmem) Feb 5 14:25:12 moon kernel: Dentry cache hash table entries: 32768 (order: 6, 262144 bytes) Feb 5 14:25:12 moon kernel: Inode cache hash table entries: 16384 (order: 5, 131072 bytes) Feb 5 14:25:12 moon kernel: Mount cache hash table entries: 512 (order: 0, 4096 bytes) Feb 5 14:25:12 moon kernel: Buffer cache hash table entries: 16384 (order: 4, 65536 bytes) Feb 5 14:25:12 moon kernel: CPU: L1 I cache: 16K, L1 D cache: 16K Feb 5 14:25:12 moon kernel: CPU: L2 cache: 512K Feb 5 14:25:12 moon kernel: Enabling fast FPU save and restore... done. Feb 5 14:25:12 moon kernel: Enabling unmasked SIMD FPU exception support... done. Feb 5 14:25:12 moon kernel: Checking 'hlt' instruction... OK. Feb 5 14:25:12 moon kernel: PCI: PCI BIOS revision 2.10 entry at 0xed8e3, last bus=1 Feb 5 14:25:12 moon kernel: PCI: Using configuration type 1 Feb 5 14:25:12 moon kernel: PCI: Probing PCI hardware Feb 5 14:25:12 moon kernel: PCI: Using IRQ router PIIX/ICH [8086/7110] at 00:14.0 Feb 5 14:25:12 moon kernel: Limiting direct PCI/PCI transfers. Feb 5 14:25:12 moon kernel: Linux NET4.0 for Linux 2.4 Feb 5 14:25:12 moon kernel: Based upon Swansea University Computer Society NET3.039 Feb 5 14:25:12 moon kernel: VFS: Disk quotas vdquot_6.5.1 Feb 5 14:25:12 moon kernel: Journalled Block Device driver loaded Feb 5 14:25:12 moon kernel: vesafb: framebuffer at 0x41000000, mapped to 0xd080d000, size 600k Feb 5 14:25:12 moon kernel: vesafb: mode is 640x480x8, linelength=640, pages=24 Feb 5 14:25:12 moon kernel: vesafb: protected mode interface info at c000:48d6 Feb 5 14:25:12 moon kernel: vesafb: scrolling: redraw Feb 5 14:25:12 moon kernel: fb0: VESA VGA frame buffer device Feb 5 14:25:12 moon kernel: Serial driver version 5.05c (2001-07-08) with HUB-6 MANY_PORTS MULTIPORT SHARE_IRQ SERIAL_PCI enabled Feb 5 14:25:12 moon kernel: ttyS00 at 0x03f8 (irq = 4) is a 16550A Feb 5 14:25:12 moon kernel: ttyS01 at 0x02f8 (irq = 3) is a 16550A Feb 5 14:25:12 moon kernel: Real Time Clock Driver v1.10f Feb 5 14:25:12 moon kernel: Floppy drive(s): fd0 is 1.44M Feb 5 14:25:12 moon kernel: FDC 0 is a National Semiconductor PC87306 Feb 5 14:25:12 moon kernel: loop: loaded (max 8 devices) Feb 5 14:25:12 moon kernel: Uniform Multi-Platform E-IDE driver Revision: 7.00beta4-2.4 Feb 5 14:25:12 moon kernel: ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx Feb 5 14:25:12 moon kernel: PIIX4: IDE controller at PCI slot 00:14.1 Feb 5 14:25:12 moon kernel: PIIX4: chipset revision 1 Feb 5 14:25:12 moon kernel: PIIX4: not 100%% native mode: will probe irqs later Feb 5 14:25:12 moon kernel: ide0: BM-DMA at 0x2040-0x2047, BIOS settings: hda:DMA, hdb:pio Feb 5 14:25:12 moon kernel: ide1: BM-DMA at 0x2048-0x204f, BIOS settings: hdc:DMA, hdd:pio Feb 5 14:25:12 moon kernel: hda: 39062500 sectors (20000 MB) w/2048KiB Cache, CHS=2431/255/63, UDMA(33) Feb 5 14:25:12 moon kernel: hdc: ATAPI 24X CD-ROM drive, 128kB Cache, DMA Feb 5 14:25:12 moon kernel: Uniform CD-ROM driver Revision: 3.12 Feb 5 14:25:12 moon kernel: Partition check: Feb 5 14:25:12 moon kernel: hda: hda1 hda2 < hda5 hda6 hda7 > Feb 5 14:25:12 moon kernel: SCSI subsystem driver Revision: 1.00 Feb 5 14:25:12 moon kernel: md: linear personality registered as nr 1 Feb 5 14:25:12 moon kernel: md: raid0 personality registered as nr 2 Feb 5 14:25:12 moon kernel: md: raid1 personality registered as nr 3 Feb 5 14:25:12 moon kernel: md: raid5 personality registered as nr 4 Feb 5 14:25:12 moon kernel: raid5: measuring checksumming speed Feb 5 14:25:12 moon kernel: md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27 Feb 5 14:25:12 moon kernel: md: Autodetecting RAID arrays. Feb 5 14:25:12 moon kernel: md: autorun ... Feb 5 14:25:12 moon kernel: md: ... autorun DONE. Feb 5 14:25:12 moon kernel: LVM version 1.0.8(17/11/2003) Feb 5 14:25:12 moon kernel: Initializing Cryptographic API Feb 5 14:25:12 moon kernel: NET4: Linux TCP/IP 1.0 for NET4.0 Feb 5 14:25:12 moon kernel: IP Protocols: ICMP, UDP, TCP, IGMP Feb 5 14:25:12 moon kernel: IP: routing cache hash table of 2048 buckets, 16Kbytes Feb 5 14:25:12 moon kernel: TCP: Hash tables configured (established 16384 bind 32768) Feb 5 14:25:12 moon kernel: Linux IP multicast router 0.06 plus PIM-SM Feb 5 14:25:12 moon kernel: NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. Feb 5 14:25:12 moon kernel: Freeing unused kernel memory: 124k freed Feb 5 14:25:12 moon kernel: Adding Swap: 680360k swap-space (priority -1) Feb 5 14:25:12 moon kernel: Linux agpgart interface v0.99 © Jeff Hartmann Feb 5 14:25:12 moon kernel: agpgart: Maximum main memory to use for agp memory: 204M Feb 5 14:25:12 moon kernel: agpgart: Detected Intel 440BX chipset Feb 5 14:25:12 moon kernel: agpgart: AGP aperture is 64M @ 0x44000000 Feb 5 14:25:12 moon kernel: scsi0 : SCSI host adapter emulation for IDE ATAPI devices Feb 5 14:25:12 moon kernel: NTFS driver v1.1.22 [Flags: R/O MODULE] Feb 5 14:25:12 moon kernel: Linux Kernel Card Services 3.1.22 Feb 5 14:25:12 moon kernel: options: [pci] [cardbus] [pm] Feb 5 14:25:12 moon kernel: isapnp: Scanning for PnP cards... Feb 5 14:25:12 moon kernel: isapnp: No Plug & Play device found Feb 5 14:25:12 moon kernel: Intel ISA PCIC probe: not found. Feb 5 14:25:12 moon kernel: Databook TCIC-2 PCMCIA probe: not found. Feb 5 14:25:13 moon kernel: ds: no socket drivers loaded! Feb 5 14:25:13 moon logger: /etc/rc.d/rc.inet1: /sbin/ifconfig lo 127.0.0.1 Feb 5 14:25:13 moon logger: /etc/rc.d/rc.inet1: /sbin/route add -net 127.0.0.0 netmask 255.0.0.0 lo Feb 5 14:25:13 moon logger: /etc/rc.d/rc.inet1: /sbin/route add default gw 192.168.1.1 metric 1 Feb 5 14:25:13 moon logger: SIOCADDRT: Network is unreachable Feb 5 14:25:13 moon logger: /etc/rc.d/rc.hotplug start (entering script) Feb 5 14:25:14 moon kernel: usb.c: registered new driver usbdevfs Feb 5 14:25:14 moon kernel: usb.c: registered new driver hub Feb 5 14:25:14 moon kernel: uhci.c: USB Universal Host Controller Interface driver v1.1 Feb 5 14:25:14 moon kernel: PCI: Found IRQ 11 for device 00:14.2 Feb 5 14:25:14 moon kernel: PCI: Sharing IRQ 11 with 00:0a.0 Feb 5 14:25:14 moon kernel: uhci.c: USB UHCI at I/O 0x2020, IRQ 11 Feb 5 14:25:14 moon kernel: usb.c: new USB bus registered, assigned bus number 1 Feb 5 14:25:14 moon kernel: hub.c: USB hub found Feb 5 14:25:14 moon kernel: hub.c: 2 ports detected Feb 5 14:25:14 moon kernel: 8139too Fast Ethernet driver 0.9.26 Feb 5 14:25:14 moon kernel: PCI: Found IRQ 11 for device 00:0d.0 Feb 5 14:25:14 moon kernel: eth0: RealTek RTL8139 at 0xd095a000, 00:e0:4c:33:5c:c3, IRQ 11 Feb 5 14:25:15 moon kernel: PCI: Found IRQ 11 for device 00:0a.0 Feb 5 14:25:15 moon kernel: PCI: Sharing IRQ 11 with 00:14.2 Feb 5 14:25:15 moon kernel: eth1: OEM i82557/i82558 10/100 Ethernet, 00:50:8B:76:2C:61, IRQ 11. Feb 5 14:25:15 moon kernel: Receiver lock-up bug exists -- enabling work-around. Feb 5 14:25:15 moon kernel: Board assembly 307295-101, Physical connectors present: RJ45 Feb 5 14:25:15 moon kernel: Primary interface chip i82555 PHY #1. Feb 5 14:25:15 moon kernel: General self-test: passed. Feb 5 14:25:15 moon kernel: Serial sub-system self-test: passed. Feb 5 14:25:15 moon kernel: Internal registers self-test: passed. Feb 5 14:25:15 moon kernel: ROM checksum self-test: passed (0x24c9f043). Feb 5 14:25:15 moon kernel: Receiver lock-up workaround activated. Feb 5 14:25:15 moon logger: /etc/rc.d/rc.inet1: /sbin/ifconfig eth1 172.16.2.1 broadcast 172.16.2.255 netmask 255.255.255.0 Feb 5 14:25:15 moon logger: /etc/rc.d/rc.inet1: /sbin/ifconfig eth0 192.168.1.2 broadcast 192.168.1.255 netmask 255.255.255.0 Feb 5 14:25:15 moon kernel: eth0: link up, 100Mbps, full-duplex, lpa 0x45E1 Feb 5 14:25:15 moon logger: /etc/rc.d/rc.inet1: /sbin/route add default gw 192.168.1.1 metric 1 Feb 5 14:25:15 moon logger: /etc/rc.d/rc.inet1: /sbin/route add default gw 192.168.1.1 metric 1 Feb 5 14:25:15 moon logger: SIOCADDRT: File exists Feb 5 14:25:15 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:15 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:15 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:15 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:16 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:16 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:16 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:16 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:16 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:16 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:16 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:16 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:17 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:17 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:17 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:17 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:17 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:17 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:17 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:17 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:18 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:18 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:18 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:18 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:19 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:19 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:19 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:19 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:20 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:20 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:20 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:20 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:21 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:21 moon kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Feb 5 14:25:22 moon kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Feb 5 14:25:22 moon kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.5 Feb 5 14:25:28 moon logger: /etc/rc.d/rc.hotplug start (exiting script) Feb 5 14:25:28 moon kernel: scsi singledevice 0 0 0 0 Feb 5 14:25:28 moon kernel: scsi singledevice 0 0 1 0 Feb 5 14:25:28 moon kernel: scsi singledevice 0 0 2 0 Feb 5 14:25:28 moon kernel: scsi singledevice 0 0 3 0 Feb 5 14:25:28 moon kernel: scsi singledevice 0 0 4 0 Feb 5 14:25:28 moon kernel: scsi singledevice 0 0 5 0 Feb 5 14:25:28 moon kernel: scsi singledevice 0 0 6 0 Feb 5 14:25:28 moon kernel: scsi singledevice 0 0 7 0 Feb 5 14:25:28 moon kernel: Installing knfsd (copyright © 1996 okir@monad.swb.de). Feb 5 14:25:28 moon rpc.statd[1326]: Version 1.0.10 Starting Feb 5 14:25:28 moon rpc.statd[1326]: statd running as root. chown /var/lib/nfs/sm to choose different user Feb 5 14:25:30 moon sshd[1374]: Server listening on 0.0.0.0 port 22. Feb 5 14:25:30 moon named[1378]: starting BIND 9.3.2-P1 Feb 5 14:25:30 moon named[1378]: found 1 CPU, using 1 worker thread Feb 5 14:25:30 moon named[1380]: loading configuration from '/etc/named.conf' Feb 5 14:25:30 moon named[1380]: no IPv6 interfaces found Feb 5 14:25:30 moon named[1380]: listening on IPv4 interface lo, 127.0.0.1#53 Feb 5 14:25:30 moon named[1380]: listening on IPv4 interface eth0, 192.168.1.2#53 Feb 5 14:25:30 moon named[1380]: listening on IPv4 interface eth1, 172.16.2.1#53 Feb 5 14:25:30 moon named[1380]: command channel listening on 127.0.0.1#953 Feb 5 14:25:31 moon named[1380]: zone 0.0.127.in-addr.arpa/IN: loaded serial 1997022700 Feb 5 14:25:31 moon named[1380]: zone localhost/IN: loaded serial 42 Feb 5 14:25:31 moon named[1380]: running Feb 5 14:25:41 moon kernel: parport0: PC-style at 0x378 (0x778) [PCSPP,TRISTATE,EPP] Feb 5 14:25:41 moon kernel: parport0: irq 7 detected Feb 5 14:25:41 moon kernel: lp0: using parport0 (polling). Feb 5 14:25:41 moon kernel: NET4: AppleTalk 0.18a for Linux NET4.0 Feb 5 14:25:41 moon atalkd[1421]: restart (2.0.3) Feb 5 14:25:42 moon atalkd[1421]: zip_getnetinfo for eth0 Feb 5 14:26:02 moon last message repeated 2 times Feb 5 14:26:12 moon atalkd[1421]: as_timer multiple interfaces, no seed Feb 5 14:26:12 moon atalkd[1421]: as_timer can't configure eth0 Feb 5 14:26:12 moon atalkd[1421]: as_timer waiting for router Feb 5 14:26:12 moon atalkd[1421]: ready 0/0/0 Feb 5 14:26:29 moon papd[1431]: restart (2.0.3) Feb 5 14:26:29 moon papd[1431]: CUPS support enabled (1.1) Feb 5 14:26:29 moon afpd[1433]: Registering CNID module [last] Feb 5 14:26:29 moon afpd[1433]: Registering CNID module [cdb] Feb 5 14:26:29 moon afpd[1433]: Registering CNID module [dbd] Feb 5 14:26:29 moon saslauthd[1442]: detach_tty : master pid is: 1442 Feb 5 14:26:29 moon saslauthd[1442]: ipc_init : listening on socket: /var/state/saslauthd/mux Feb 5 14:26:39 moon afpd[1433]: ASIP started on 192.168.1.2:548(5) (2.0.3) Feb 5 14:26:39 moon afpd[1433]: uam: uams_guest.so loaded Feb 5 14:26:39 moon afpd[1433]: uam: uams_clrtxt.so loaded Feb 5 14:26:39 moon afpd[1433]: uam: uams_dhx.so loaded Feb 5 14:26:39 moon afpd[1433]: uam: "DHCAST128" available Feb 5 14:26:39 moon afpd[1433]: uam: "Cleartxt Passwrd" available Feb 5 14:26:39 moon afpd[1433]: uam: "No User Authent" available Feb 5 14:32:53 moon /usr/sbin/gpm[1512]: *** info [startup.c(95)]: Feb 5 14:32:53 moon /usr/sbin/gpm[1512]: Started gpm successfully. Entered daemon mode. Feb 5 14:32:53 moon dhcpd: Internet Systems Consortium DHCP Server V3.0.4 Feb 5 14:32:53 moon dhcpd: Copyright 2004-2006 Internet Systems Consortium. Feb 5 14:32:53 moon dhcpd: All rights reserved. Feb 5 14:32:53 moon dhcpd: For info, please visit http://www.isc.org/sw/dhcp/ Feb 5 14:32:53 moon dhcpd: Wrote 0 deleted host decls to leases file. Feb 5 14:32:53 moon dhcpd: Wrote 0 new dynamic host decls to leases file. Feb 5 14:32:53 moon dhcpd: Wrote 1 leases to leases file. Feb 5 14:32:53 moon dhcpd: Listening on Socket/eth1/172.16.2/24 Feb 5 14:32:53 moon dhcpd: Sending on Socket/eth1/172.16.2/24 Feb 5 14:33:00 moon dhcpd: DHCPDISCOVER from 00:04:61:98:0b:07 via eth1 Feb 5 14:33:00 moon dhcpd: DHCPOFFER on 172.16.2.60 to 00:04:61:98:0b:07 via eth1 Feb 5 14:33:00 moon dhcpd: DHCPREQUEST for 172.16.2.60 (172.16.2.1) from 00:04:61:98:0b:07 via eth1 Feb 5 14:33:00 moon dhcpd: DHCPACK on 172.16.2.60 to 00:04:61:98:0b:07 via eth1 Feb 5 14:36:22 moon kernel: UMSDOS 0.86k (compatibility level 0.4, fast msdos) Feb 5 14:38:00 moon dhcpd: DHCPREQUEST for 172.16.2.60 from 00:04:61:98:0b:07 via eth1 Feb 5 14:38:00 moon dhcpd: DHCPACK on 172.16.2.60 to 00:04:61:98:0b:07 via eth1 Титла: Въпрос за firewall Публикувано от: VladSun в Feb 05, 2007, 13:26 Дай отговор на въпроса на Hарkос
cat /var/log/samba/log.smbd ? Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 13:52 [2007/02/02 01:08:35, 0] smbd/server.c:main(847)
smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 01:08:35, 0] passdb/pdb_smbpasswd.c:startsmbfilepwent(195) startsmbfilepwent_internal: file /etc/samba/private/smbpasswd did not exist. File successfully created. [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 1 (min password length), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 2 (password history), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 3 (user must logon to change password), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 4 (maximum password age), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 5 (minimum password age), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 6 (lockout duration), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 7 (reset count minutes), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 8 (bad lockout attempt), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 9 (disconnect time), returning 0 [2007/02/02 01:08:35, 1] lib/account_pol.c:account_policy_get(329) account_policy_get: tdb_fetch_uint32 failed for field 10 (refuse machine password change), returning 0 [2007/02/02 01:08:35, 0] passdb/pdb_interface.c:guest_user_info(295) guest_user_info: Unable to locate guest account [smbuser]! [2007/02/02 01:08:35, 0] smbd/server.c:main(960) ERROR: failed to setup guest info. [2007/02/02 01:13:32, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 01:13:33, 0] passdb/pdb_interface.c:guest_user_info(295) guest_user_info: Unable to locate guest account [smbuser]! [2007/02/02 01:13:33, 0] smbd/server.c:main(960) ERROR: failed to setup guest info. [2007/02/02 01:16:31, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 01:16:32, 0] auth/auth_util.c:create_builtin_administrators(785) create_builtin_administrators: Failed to create Administrators [2007/02/02 01:16:32, 0] auth/auth_util.c:create_builtin_users(751) create_builtin_users: Failed to create Users [2007/02/02 01:16:32, 0] auth/auth_util.c:create_builtin_administrators(785) create_builtin_administrators: Failed to create Administrators [2007/02/02 01:16:32, 0] auth/auth_util.c:create_builtin_users(751) create_builtin_users: Failed to create Users [2007/02/02 12:50:04, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 16:17:31, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 16:22:03, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 16:31:51, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 17:08:19, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 17:08:19, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 17:29:57, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 17:44:46, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 17:46:34, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 20:26:40, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 20:41:27, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 20:47:20, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 22:06:25, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/02 22:06:25, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/02 22:06:25, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/02 22:06:25, 0] passdb/pdb_smbpasswd.c:startsmbfilepwent(195) startsmbfilepwent_internal: file /etc/samba/smbpasswd did not exist. File successfully created. [2007/02/02 22:06:25, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:25, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:30, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:30, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:30, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:32, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:32, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:32, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:33, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:38, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:06:59, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:22:24, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:46:57, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:46:57, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:46:57, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:47:01, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:47:01, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 22:47:01, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/02 22:47:01, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/02 22:47:01, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:48:26, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:48:26, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 22:48:27, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 2084) [2007/02/02 22:48:29, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2084) [2007/02/02 22:48:36, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service public [2007/02/02 22:48:36, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service data [2007/02/02 22:54:25, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:21:40, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/02 23:21:40, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/02 23:21:45, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 23:21:45, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/02 23:21:45, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/02 23:21:55, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 23:21:55, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/02 23:21:55, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/02 23:21:57, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2147) [2007/02/02 23:21:58, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:22:07, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 23:22:07, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/02 23:22:07, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/02 23:22:07, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 2152) [2007/02/02 23:22:09, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2152) [2007/02/02 23:22:10, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:22:10, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service public [2007/02/02 23:25:01, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2169) [2007/02/02 23:25:03, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 2169) [2007/02/02 23:25:05, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service public [2007/02/02 23:25:05, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:25:06, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2170) [2007/02/02 23:25:10, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:26:17, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:17, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:17, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:25, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:28, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:29, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2176) [2007/02/02 23:26:38, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:26:44, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:44, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:44, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:53, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:55, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:26:56, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2181) [2007/02/02 23:26:57, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:26:57, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:28:33, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:28:33, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:28:33, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:28:34, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:28:36, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2186) [2007/02/02 23:28:38, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 2186) [2007/02/02 23:28:43, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:28:43, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service public [2007/02/02 23:28:52, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:28:52, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:28:55, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:28:55, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:29:15, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:29:26, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:29:27, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:29:27, 0] lib/util_sock.c:set_socket_options(237) Unknown socket option S0_SNDBUF [2007/02/02 23:39:59, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/02 23:39:59, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/02 23:40:43, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/02 23:40:43, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/02 23:40:43, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/02 23:52:40, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2288) [2007/02/02 23:52:43, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:56:36, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user nobody (uid=99, gid=99) (pid 2296) [2007/02/02 23:56:41, 0] smbd/service.c:make_connection(1102) germaneca (172.16.2.50) couldn't find service ::{2227a280-3aea-1069-a2de-08002b30309d} [2007/02/02 23:58:20, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/02 23:58:22, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 2299) [2007/02/03 00:08:40, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service public [2007/02/03 01:42:10, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 01:42:10, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "force users" [2007/02/03 01:42:10, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "force users" [2007/02/03 01:42:20, 1] smbd/ipc.c:api_fd_reply(290) api_fd_reply: INVALID PIPE HANDLE: 730a [2007/02/03 01:42:21, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service data initially as user pavel (uid=1001, gid=100) (pid 2344) [2007/02/03 01:42:23, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service public initially as user pavel (uid=1001, gid=100) (pid 2344) [2007/02/03 01:48:39, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service public [2007/02/03 01:48:39, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service data [2007/02/03 01:48:41, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 01:48:41, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "host deny" [2007/02/03 01:48:41, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "host deny" [2007/02/03 01:49:36, 0] lib/util.c:smb_panic(1592) PANIC (pid 2401): Tried to register uid in security=share [2007/02/03 01:49:36, 0] lib/util.c:log_stack_trace(1699) BACKTRACE: 10 stack frames: #0 /usr/sbin/smbd(log_stack_trace+0x2e) [0x802166ce] #1 /usr/sbin/smbd(smb_panic+0x57) [0x802167e7] #2 /usr/sbin/smbd(register_vuid+0x7a7) [0x80057857] #3 /usr/sbin/smbd [0x80081bf3] #4 /usr/sbin/smbd(reply_sesssetup_and_X+0x1e07) [0x80083da7] #5 /usr/sbin/smbd [0x800b0b6e] #6 /usr/sbin/smbd(smbd_process+0x7cb) [0x800b213b] #7 /usr/sbin/smbd(main+0x100a) [0x802ad2fa] #8 /lib/libc.so.6(__libc_start_main+0x9 ![]() #9 /usr/sbin/smbd [0x8003ffe1] [2007/02/03 01:49:36, 0] lib/fault.c:dump_core(173) dumping core in /var/log/samba/cores/smbd [2007/02/03 01:50:13, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 01:50:57, 1] smbd/ipc.c:api_fd_reply(290) api_fd_reply: INVALID PIPE HANDLE: 757a [2007/02/03 01:53:18, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 01:53:22, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 01:55:26, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 01:56:03, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 01:57:42, 1] smbd/ipc.c:api_fd_reply(290) api_fd_reply: INVALID PIPE HANDLE: 774f [2007/02/03 02:09:08, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:09:15, 1] smbd/ipc.c:api_fd_reply(290) api_fd_reply: INVALID PIPE HANDLE: 762a [2007/02/03 02:09:16, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=100) (pid 2689) [2007/02/03 02:11:06, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:11:08, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:12:29, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:12:30, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:12:30, 1] smbd/ipc.c:api_fd_reply(290) api_fd_reply: INVALID PIPE HANDLE: 7033 [2007/02/03 02:12:37, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=100) (pid 2725) [2007/02/03 02:12:37, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:12:37, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=100) (pid 2725) [2007/02/03 02:13:07, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:13:09, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:13:11, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:13:13, 1] smbd/ipc.c:api_fd_reply(290) api_fd_reply: INVALID PIPE HANDLE: 71d2 [2007/02/03 02:13:14, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=100) (pid 2734) [2007/02/03 02:14:51, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:14:53, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:14:54, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:14:56, 1] smbd/ipc.c:api_fd_reply(290) api_fd_reply: INVALID PIPE HANDLE: 7141 [2007/02/03 02:14:56, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=103) (pid 2754) [2007/02/03 02:17:40, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:17:42, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:17:43, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:17:45, 1] smbd/ipc.c:api_fd_reply(290) api_fd_reply: INVALID PIPE HANDLE: 7144 [2007/02/03 02:18:05, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=103) (pid 2781) [2007/02/03 02:23:00, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:25:07, 0] lib/util_sock.c:read_data(534) read_data: read failure for 4 bytes to client 172.16.2.50. Error = Connection reset by peer [2007/02/03 02:25:19, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:25:46, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:26:04, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:30:39, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:30:40, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:30:42, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:30:53, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:30:55, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:30:55, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=103) (pid 2852) [2007/02/03 02:30:55, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service pavel [2007/02/03 02:30:55, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:30:55, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=103) (pid 2853) [2007/02/03 02:33:09, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service pavel [2007/02/03 02:33:09, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:36:03, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:36:09, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:36:17, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:36:24, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:36:49, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:37:06, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:37:08, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:37:14, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:38:40, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=103) (pid 3025) [2007/02/03 02:41:25, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:41:27, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:41:28, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:42:52, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:42:56, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:43:05, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:43:05, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=103) (pid 3099) [2007/02/03 02:43:05, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:43:05, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:43:05, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=103) (pid 3100) [2007/02/03 02:43:12, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:43:16, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:50:03, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service pavel [2007/02/03 02:50:05, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:51:02, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:51:07, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service pavel initially as user pavel (uid=1001, gid=103) (pid 3149) [2007/02/03 02:51:12, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service samba initially as user pavel (uid=1001, gid=103) (pid 3149) [2007/02/03 02:51:12, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service samba [2007/02/03 02:51:12, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service pavel [2007/02/03 02:51:12, 1] smbd/service.c:make_connection_snum(941) germaneca (172.16.2.50) connect to service samba initially as user pavel (uid=1001, gid=103) (pid 3149) [2007/02/03 02:51:19, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:52:04, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:52:08, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:54:35, 1] smbd/service.c:close_cnum(1141) germaneca (172.16.2.50) closed connection to service samba [2007/02/03 02:54:37, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:54:41, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:54:46, 0] smbd/service.c:make_connection_snum(911) '/home/pavel' does not exist or permission denied when connecting to [pavel] Error was No such file or directory [2007/02/03 02:54:46, 0] smbd/service.c:make_connection_snum(911) '/home/pavel' does not exist or permission denied when connecting to [pavel] Error was No such file or directory [2007/02/03 02:54:46, 0] smbd/service.c:make_connection_snum(911) '/home/pavel' does not exist or permission denied when connecting to [pavel] Error was No such file or directory [2007/02/03 02:54:46, 0] smbd/service.c:make_connection_snum(911) '/home/pavel' does not exist or permission denied when connecting to [pavel] Error was No such file or directory [2007/02/03 02:55:04, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:55:06, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/03 02:55:06, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/03 02:55:06, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/03 02:55:06, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:55:06, 0] smbd/service.c:make_connection_snum(911) '/home/pavel' does not exist or permission denied when connecting to [pavel] Error was No such file or directory [2007/02/03 02:55:07, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:55:53, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:55:54, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:55:54, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:30, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:31, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:36, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 02:56:42, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:43, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:44, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:44, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:47, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:56:49, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:34, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:34, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:37, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:37, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:49, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 02:57:51, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:51, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:53, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:53, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:55, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:57:55, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:04, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:21, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:21, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:22, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:23, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:23, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:27, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:27, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:42, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:46, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 02:58:46, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:08:25, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 03:08:30, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:08:30, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:10, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:30, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:41, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:41, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:41, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:41, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:41, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:41, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:43, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:43, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 03:09:44, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:44, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:44, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:46, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:47, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:09:49, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:14:27, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:14:27, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:14:38, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:14:39, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:19, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:19, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:22, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:23, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:25, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:27, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:27, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 03:17:28, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:28, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:28, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:30, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:30, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 03:17:31, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:54, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:54, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:57, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:17:57, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 03:17:58, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:18:40, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 03:18:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:18:45, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:19:18, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:19:20, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 03:19:23, 0] smbd/service.c:make_connection_snum(911) '/path/svetla' does not exist or permission denied when connecting to [svetla] Error was No such file or directory [2007/02/03 03:27:50, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 03:27:50, 0] param/params.c:OpenConfFile(536) params.c:OpenConfFile() - Unable to open configuration file "/etc/samba/smb.conf": No such file or directory [2007/02/03 14:44:43, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 14:44:43, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:44:43, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:45:07, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/03 14:45:07, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/03 14:48:18, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 14:48:18, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:48:18, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:49:04, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 14:49:04, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:49:04, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:49:55, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 14:49:55, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:49:55, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:51:30, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 14:51:30, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:51:30, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:51:39, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 1924) [2007/02/03 14:52:27, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service public [2007/02/03 14:54:15, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 14:54:15, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:54:15, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:55:27, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:55:27, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:55:27, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:55:27, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:55:27, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 172.16.2.50. Error Connection reset by peer [2007/02/03 14:55:27, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/03 14:55:29, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 1979) [2007/02/03 14:55:38, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service public [2007/02/03 14:58:52, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:58:52, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:58:52, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/03 14:58:52, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/03 14:58:52, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 0.0.0.0. Error Connection reset by peer [2007/02/03 14:58:52, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/03 14:58:53, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 1995) [2007/02/03 14:59:02, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service public [2007/02/03 14:59:27, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 14:59:27, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "encrypt password" [2007/02/03 14:59:27, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "encrypt password" [2007/02/03 14:59:42, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 2019) [2007/02/03 14:59:44, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service public [2007/02/03 15:02:51, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:02:51, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:03:24, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:03:24, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:03:55, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 15:03:58, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:03:58, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:04:22, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:04:23, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:04:43, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:04:43, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:04:46, 0] smbd/negprot.c:reply_nt1(316) reply_nt1: smb signing is incompatible with share level security ! [2007/02/03 15:06:10, 0] passdb/pdb_smbpasswd.c:startsmbfilepwent(195) startsmbfilepwent_internal: file /etc/samba/private/smbpasswd did not exist. File successfully created. [2007/02/03 15:06:23, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 2091) [2007/02/03 15:06:33, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service public [2007/02/03 15:53:21, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "guest" [2007/02/03 15:53:21, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "guest" [2007/02/03 15:53:22, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/03 15:53:22, 0] lib/util_sock.c:get_peer_addr(1229) getpeername failed. Error was Transport endpoint is not connected [2007/02/03 15:53:22, 0] lib/util_sock.c:write_data(562) write_data: write failure in writing to client 0.0.0.0. Error Connection reset by peer [2007/02/03 15:53:22, 0] lib/util_sock.c:send_smb(769) Error writing 4 bytes to client. -1. (Connection reset by peer) [2007/02/03 15:54:34, 1] smbd/service.c:make_connection_snum(941) 172.16.2.50 (172.16.2.50) connect to service public initially as user nobody (uid=99, gid=99) (pid 2139) [2007/02/03 15:54:41, 1] smbd/service.c:close_cnum(1141) 172.16.2.50 (172.16.2.50) closed connection to service public [2007/02/03 17:17:13, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 17:17:13, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "smbpasswd path" [2007/02/03 17:17:13, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "smbpasswd path" [2007/02/03 19:41:32, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/03 19:41:32, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "security option" [2007/02/03 19:41:32, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "security option" [2007/02/03 19:41:32, 0] param/loadparm.c:map_parameter(2690) Unknown parameter encountered: "host allow" [2007/02/03 19:41:32, 0] param/loadparm.c:lp_do_parameter(3420) Ignoring unknown parameter "host allow" [2007/02/03 19:41:32, 0] param/loadparm.c:lp_do_parameter(3438) Global parameter guest account found in service section! [2007/02/04 00:06:03, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/04 00:06:03, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is deprecated [2007/02/04 00:06:03, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 00:41:30, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/04 00:41:30, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is deprecated [2007/02/04 00:41:30, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 00:41:30, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 00:50:37, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/04 00:50:37, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is deprecated [2007/02/04 00:50:37, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 00:50:37, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 01:52:03, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/04 01:52:03, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 01:52:03, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is deprecated [2007/02/04 01:52:03, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 02:05:49, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/04 02:05:49, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 02:05:49, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is deprecated [2007/02/04 02:05:49, 0] param/loadparm.c:service_ok(2932) WARNING: No path in service mima - making it unavailable! [2007/02/04 02:05:49, 1] param/loadparm.c:service_ok(2939) NOTE: Service mima is flagged unavailable. [2007/02/04 14:46:49, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/04 14:46:49, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 14:46:49, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is deprecated [2007/02/04 14:46:49, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 16:33:45, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/04 16:33:46, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 16:33:46, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is deprecated [2007/02/04 16:33:46, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 16:40:56, 0] smbd/server.c:main(847) smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/04 16:40:56, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/04 16:40:56, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is depre Титла: Въпрос за firewall Публикувано от: gat3way в Feb 05, 2007, 13:56 Ъм, какъв е проблема сега, бави при стартиране или не можеш да направиш netbios сесия с машината?!?
Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 14:04 [2007/02/05 15:55:53, 0] smbd/server.c:main(847)
smbd version 3.0.23c started. Copyright Andrew Tridgell and the Samba Team 1992-2006 [2007/02/05 15:55:53, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "acl group control" option is deprecated [2007/02/05 15:55:53, 1] param/loadparm.c:lp_do_parameter(3426) WARNING: The "only user" option is deprecated [2007/02/05 15:59:02, 0] printing/print_cups.c:cups_cache_reload(85) Unable to connect to CUPS server localhost - Connection timed out [2007/02/05 16:02:11, 0] printing/print_cups.c:cups_cache_reload(85) Unable to connect to CUPS server localhost - Connection timed out Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 14:08 Изтрих файла,рестартирам компа,изчаквам 15 мин,докато зареди
![]() Просто бави страшно!Пробвах и да отворя портове 135,138,139,445 във веригата INPUT,но все същото!Не мога и apache да пусна!Сега ще пробвам пак! Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 14:23 Апачето стана,остава sambata и това бавене!Относно самбата,незнам точко кои портове ползва!
Титла: Въпрос за firewall Публикувано от: gat3way в Feb 05, 2007, 14:43 Е що се опитва да се връзва до CUPS сървъри? Шерваш принтери?
iptables -I INPUT 1 -p tcp --dport 515 -j REJECT iptables -I INPUT 1 -p tcp --dport 613 -j REJECT iptables -I INPUT 1 -p udp --dport 613 -j REJECT Тва би следвало да ускори безуспешните опити да ползва cups.. Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 15:15 Същата работа,но не знам защо!Благодаря на всички,че помагате
![]() ![]() ![]() ![]() ![]() Титла: Въпрос за firewall Публикувано от: Hapkoc в Feb 05, 2007, 15:17 CUPS не беше ли на 631/tcp?
Титла: Въпрос за firewall Публикувано от: gat3way в Feb 05, 2007, 15:30 Ъм, да, грешката е моя, съжалявам
Титла: Въпрос за firewall Публикувано от: zeridon в Feb 05, 2007, 15:49 Имам странното чувство че всички изтървахте нишката ... заебете самбата тя е тъпо животно
а и имаш доста грешки в конфигурацията и по ред на номерата 1) оставил си пуснат принтер шера който е абсолютно ненужен (освен ако няма да шерваш принтер). За да го изключиш:
2) имаш несъществуващи шерове (svetla) 3) имаш грешка при описанието на passdb бекенда така това беше за самбата. След това ... mysql -а не ти е настроен като хората - мре за секунди имаш пуснато afpd - не знам дали го ползваш ама иска доста портове ... все пак е мрежова система пусна ли всичко през localhost да минава ... просто безусловно го ACCEPT -вай Титла: Въпрос за firewall Публикувано от: growchie в Feb 05, 2007, 18:21 Я дай iptables -v -L и iptables -v -L -t nat (ако не е тайна) да видим какво е истинското състояние.
Титла: Въпрос за firewall Публикувано от: emagi в Feb 05, 2007, 23:21 Първо направих радикални промени!Зададох на файла smb.conf 660 (примерно!!!
![]() 1.КАк мога да коригирам mysql,и как може да го изключа,понеже не го ползвам в момента!AFPF може ли да се изклячи,или точно какво представлява,нужно ли за нормалната работа на операционната система!И последно,пуснал съм всичко което минава през локалхоста: iptables -I INPUT 1 -i lo -j ACCEPT iptables -I INPUT 1 -i lo -j ACCEPT Давайте идеи! Титла: Въпрос за firewall Публикувано от: zeridon в Feb 07, 2007, 11:32 mysql -а се спира със стандартните за дистрибуцията ти инструменти
при gentoo rc-conf при debian аз ползвам rcconf (допълнително се инсталира) при slack в директорията /etc/rc.d махаш изпълнимия флаг при fedora/suse yast/yast2 За localhost -а са добре правилата afpd е демон за споделяне на файлове с Mac системи |