search for: vladychevski

Displaying 8 results from an estimated 8 matches for "vladychevski".

2001 Nov 23
4
ext3 patch for 2.4.15
Hi, this site: http://www.uow.edu.au/~andrewm/linux/ext3/ says "Forbidden" when I try to access .... , where can I download the ext3 patch for 2.4.15 ? Thank you Nikolai
2001 Oct 01
2
do quotas work with ext3?
Hi, I had ext2 and 2.4.7 kernel , quotas were working ok. Now when all my filesystems are ext3 I figured out that quotas are not working.... if I do quotaon , repquota, quotacheck the programs return 0 without any output..... Does ext3 supports quotas? Nikolai
2001 Oct 24
3
a bug in ext3 code for 2.4.7
Hello , I use kernel 2.4.7 patched with corresponding ext3 patch. The problem I have is that when I startup I get a panic in a kernel. I started to debug util-linux and found that mount does a segmentation fault when trying to open /etc/mtab file. The segmentation fault ocurrs on open() call inside mtab_is_writable() procedure: printf("mtab_writable: pass 1\n"); if (ret ==
2001 Jul 13
1
CBQ: U32 selector question : filtering all the port > a value
Hi all, I saw that the u32 selector can match a PATTERN so I can use it to filter on a port value like : tc filter add dev eth0 parent 10;10 protocol ip prio 100 u32 match ip sport 0x0014 0xffff flowid 10:100 (filter on the ftp-data (20) source port) But is there a method to filter all the source ports > 40000 for example ? regards, ------------------------------------------------ Franck
2001 Jun 26
1
prio fighting
Hi, I have done this setup to give the machine 192.168.1.4 (masqueraded over dialup) the highest priority: #! /bin/bash WHAT="add" iptables -A PREROUTING -i eth0 -s 192.168.1.1 -t mangle -j MARK --set-mark 1 iptables -A PREROUTING -i eth0 -s 192.168.1.4 -t mangle -j MARK --set-mark 4 tc qdisc $WHAT dev ppp0 root handle 1: prio bands 3 priomap 0 1 2 tc qdisc $WHAT dev ppp0 parent 1:1
2005 Jun 02
2
iproute + xml
Hello there, i am continuing with the development of the iproute GUI. I was wondering if there is a xml parser for the set up of the queues. I have been searching but i cant find any... anyone?
2005 Jun 02
8
How many (htb) tc classes and qdiscs are too many?
We have a Linux box that is acting as the gateway to the internet for about 400 people, typically there are not more then 50 of them using the internet at any given time. We would like to provide different levels of access to different users. For example 128kbps to some users and 256kbps to others. We have considered creating a class and qdisc for each user (using htb) however we don''t
2001 Jul 07
0
patch: avoid segfault when using PRIO qdisc
Hi, I am attaching the patch for tc_class.c file in ./tc directory of iproute2 lastest version. This patch is to avoid segfault when listing classes. It happends only when using PRIO qdisc. I didn''t look why exactly it segfaults (guess becasue PRIO is classless), but this patch at least prevents it, so you can run the command and look what is happening to other classes. cd to iproute2