similar to: Pls help on Shorewall installation

Displaying 20 results from an estimated 600 matches similar to: "Pls help on Shorewall installation"

2004 Jan 16
0
iproute2 source compiling problem
Hello ! Have anyone got an iproute2 source with HTB which I can compile with the includes of kernel 2.4.21 or higher. I had one but I get the following error msgs: q_htb.c:338: redefinition of `explain'' q_htb.c:32: `explain'' previously defined here q_htb.c:357: redefinition of `explain1'' q_htb.c:51: `explain1'' previously defined here q_htb.c:366: redefinition
2002 May 27
4
htb3 with imq
hi all, i want to try htb3 with imq downloaded & patched imq & htb3 with kernel-2.4.18 on rh7.2 but got STUCK on step 1 :( this are what i did can anyone guide me what went wrong on the first step itself !! [root@cab1 root]# modprobe imq numdevs=1 modprobe: Can''t locate module imq [root@cab1 root]# [root@cab1 root]# tc qdisc add dev imq0 handle 1: root htb default 1 Cannot find
2004 Nov 24
8
tc and iptables trouble
Hi all I have a trouble configuring the qdiscs, when I indicate the "perturb 10" option to tc, i gives me this error: tc qdisc add dev eth0 parent 5:1323 handle 1323 sfq perturb 10 RTNETLINK answers: Invalid argument if I don''t put the "perturb 10" option, it works. another question is about iptables, when I indicate the " --set-mark" option: iptables -t
2002 Oct 14
1
help, HTB2 and filter ?
Hi ; HTB2 patch for kernel 2.2.17 HTB2 patch for iproute2 Here is my script : tc qdisc del dev eth0 root tc qdisc add dev eth0 root handle 10: htb default 20 tc class add dev eth0 parent 10: classid:10:1 htb rate 90mbit ceil 90mbit burst 2000 tc class add dev eth0 parent 10:1 classid 10:100 htb rate 10mbit ceil 30mbit prio 1 tc class add dev eth0
2004 Jan 30
2
HTB_Tool
Hi, I just want to let you know of a tool that makes your HTB configuration very easy. Sorry if you already knew about it. The webpage is in Romanian ... but one can understand from the configuration examples avaiable on the webpage and in the http://sgi.rdscv.ro/~ionuts/htb-tools/htb_util-0.2.4-pre1_cv-1_quantum-1536-sin.tar.bz2 archive. Regards, Adrian
2004 Apr 06
11
htb2 -> htb3 problems
Hello! I need to switch from htb2 to htb3, because of speed issues (for me, htb2 is unable to handle more then 100mbit duplex with ~550 classes), kernel profiling shows htb_dequeue_prio at 1st place with 3x isolation. So, I''ve moved from 2.4.19 to 2.4.25 kernel (hi-pac for classification/marking and htb3 for queueing), and traffic rate drop from 100 to 20mbit. What can be wrong? The
2005 Dec 05
0
GRED & HTB
Hi, I am tring to setup AF on my router using GRED/HTB. I plan to mark and set the DSCP with iptables and the ingress qdisc to set the tc_index for the proper GRED vq(1-12). My question is: Is there a way to allow for priority between the af classes and within the af classes? also would it be possible to to the following: HTB(6Mb) | GRED(1)grio HTB1 (af1) (1MB) GRED(1-3)grio |
2005 Mar 11
0
htb patch
Hello all, I am compiling a 2.4.19 kernel. I downloaded the kernel source from familiar project, which is a project working on porting linux to ipaq handheld devices. The question I have is what patch should I apply: htb3 or htb2? Also, I looked into htb3 patch. There are the source for sch_htb.c and some definitions that should be added to pkt_sch.h. I already have a sch_htb.c in my kernel
2004 Apr 05
0
htb v3 question - quantum and r2q again
Hello! One simple question regaring htb2->htb3 way. I''m using 2.4.25 kernel with tc3 from Devik''s site, RH9. My data flow is about 100Mbit duplex and is subject to grow, so I''m creating root class with 200Mbit rate, with r2q=10, quantum = rate/r2q, and 1500 < quantum < 200000 (sch_htb.c) with such r2q my default shaping window will be from 120Kbit to 16Mbit,
2002 Jun 08
0
pacth question
hello is there any one who lnow what is the signification of ''@@ -2,6 +2,7 @@'' in the patch file htb2-2.4.17.diff thanks ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
2002 Jun 26
1
htb problem
I have a doubt. What''s the correct use of mangle for the next network: eth0: 200.39.190.249 (public) eth1: 192.168.101.254 (private) I make nat with iptables and have the following htb script: tc qdisc add dev eth1 root handle 1: htb default 30 tc class add dev eth1 parent 1: classid 1:1 htb rate 10mbit burst 15k tc class add dev eth1 parent 1:1 classid 1:10 htb rate 15kbit ceil 10mbit
2003 Jan 15
5
HTB. QoS and Shorewall
Group, I am reading about tc (traffic control) and willing to get my feet wet. As requirement, there should be HTB compiled in the kernel. I grabbed a Mandrake 8.2 distro, and didn''t installed the kernel source. Anyone knows if the HTB is compiled in Mandrake 8.2, or point a way to find that out? I tried to read the /usr/src/kernel.xxxxx/.config file, but it doesn''t exists.
2005 Dec 17
0
Fw: tc filter match u8 problem??
On Sat, 17 Dec 2005, Andy Furniss wrote: > The u8 test works OK for me as does the one below. My mistake. I cleaned the rules and removed the ones that collided with the u8 one. There is no error on this. (see explanation bellow). > > When playing with tc filters I always tc qdisc del dev eth0 root and enter > the whole lot again between tests. I always took that as mandatory.
2002 Aug 01
1
htb qdisc on top of htb
Hi I tryed to use a htb qdisc/class on top of another htb qdisc/class as you can see bellow: #!/bin/bash tc="/sbin/tc" $tc qdisc del dev eth0 root $tc qdisc add dev eth0 root handle 1: htb default 40 $tc class add dev eth0 parent 1: classid 1:1 htb rate 100Mbit burst 15k $tc class add dev eth0 parent 1:1 classid 1:10 htb rate 50Mbit burst 15k $tc class add dev eth0 parent 1:1 classid
2014 Jan 30
2
CentOS 6.5: NFS server crashes with list_add corruption errors
Hi, I'm running CentOS 6.5 as NFS server (v3 and v4) and exporting Ext4 and XFS filesystem. After many months that all works fine today the server crash: Jan 30 09:46:13 qb-storage kernel: ------------[ cut here ]------------ Jan 30 09:46:13 qb-storage kernel: WARNING: at lib/list_debug.c:26 __list_add+0x6d/0xa0() (Not tainted) Jan 30 09:46:13 qb-storage kernel: Hardware name: PowerEdge
2003 Feb 04
1
"Classful Queueing Disciplines" in LARTC HOWTO
Hi, I am a newbie to LARTC and to this mailing-list. I have read through the Linux Advanced Routing & Traffic Control HOWTO many times, trying to understand Classful Queueing Disciplines (and in particular CBQ). I have some suggestions that I think will help to make the HOWTO more understandable. Suggestions ========= (1) In section 9.4 (Terminology) the definition for
2013 Jun 05
8
btrfs raid1 on 16TB goes read-only after "btrfs: block rsv returned -28"
Dear Devs, I have x4 4TB HDDs formatted with: mkfs.btrfs -L bu-16TB_0 -d raid1 -m raid1 /dev/sd[cdef] /etc/fstab mounts with the options: noatime,noauto,space_cache,inode_cache All on kernel 3.8.13. Upon using rsync to copy some heavily hardlinked backups from ReiserFS, I''ve seen: The following "block rsv returned -28" is repeated 7 times until there is a call trace
2006 Apr 04
3
Another question (now about u32)
Hello all, I am trying to match some conections using u32 but I tryed this: [root@ns1 ~]# tc filter add dev eth1 parent 1:0 protocol ip prio 1 u32 match ip src 0/0 match ip dst 0/0 match ip sport 80 0xffff flowid 1:10 RTNETLINK answers: Invalid argument We have an error talking to the kernel [root@ns1 ~]# I have this class at device eth1: [root@ns1 ~]# tc class show dev eth1 class
2002 Oct 14
1
答复: Re: help, HTB2 and filter ?
>> BUT: >> >> tc filter add dev eth1 protocol ip parent 10:1 prio 1 handle 100 fw >> classid 10:100 >> >> OUTPUT : "RTNETLINK answers: Invaid argument" > >cls_fw is not loaded ? (quick guess only). > devik tc filter add dev eth1 protocol ip parent 10:1 prio 1 fw can run !! _______________________________________________
2002 Sep 13
0
This simple ingress script blocks my traffic
Hi ! I have a 56k modem internet connection and I want to control the BW of ftp downloads. But when I run the following script, my downloads are simply stopped (and they resume if I clear the rules): ----------------- #!/bin/sh DEV=ppp0 DOWNLINK=14kbit /sbin/ipchains -A input -i $DEV -p tcp -s 0/0 ftp-data -m 1 tc qdisc del dev $DEV root 2> /dev/null > /dev/null tc qdisc del dev $DEV