Re: [LARTC] Test mail

2004-12-20 Thread Lopsch
Amit Vyas schrieb:
Test mail
Approved.
--
PGP-ID 0xF8EAF138


signature.asc
Description: OpenPGP digital signature


Re: [LARTC] tc and iptables trouble

2004-11-24 Thread Lopsch
Llus Gili schrieb:
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 mangle -A egress -s 10.0.0.124 -j MARK --set-mark 1323
iptables: Invalid argument
Egress is a Chain, in this case a user defined chain. It doesnt stand 
for the egress used with qdiscs. If you didnt use a command like this 
iptables -N egress, there isnt a chain like egress.

___
LARTC mailing list / [EMAIL PROTECTED]
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/


Re: [LARTC] Shared object not being built by patch-o-matic-ng

2004-11-18 Thread Lopsch
Stian B. Barmen schrieb:
 I try to use patch-o-matic-ng for installation. Kernel patching works
 nicely but the libipt_ipp2p.so shared object does not get built. I find
 the .c file in the patch-o-matic tree under ipp2p but I don't know how
 to manually compile it.
 My lsmod includes the sucsessfully made ipt_ipp2p module and I also
 recompiled iptables for good measure.
 Help anyone?

 Best regards
 Stian B. Barmen

Just copy the iptables files from pom-ng to iptables dir in the correct 
location, change permissions if necessary and just build the iptables again.

___
LARTC mailing list / [EMAIL PROTECTED]
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/


[LARTC] IPSec with 2.6.9 and Windows clients

2004-10-25 Thread Lopsch
Hi,
is there a good howto for a Linux VPN-Gateway using racoon and IPSec 
provided with the actual kernel 2.6.9? Also one for how to set up a 
connection to the gateway using Windows XP and the client shipped with it?

___
LARTC mailing list / [EMAIL PROTECTED]
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/


Re: [LARTC] IP accounting on Linux 2.6 - what app to use?

2004-10-23 Thread Lopsch
Hi,
What do you use for IP traffic accounting on Linux 2.6? I was looking to 
ipac-ng/pmacct, but what do you use?
Im using ipac-ng and I like it.
___
LARTC mailing list / [EMAIL PROTECTED]
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/


[LARTC] iproute2-2.6.9-041019 compiling error

2004-10-20 Thread Lopsch
While compiling the new release i´ll get this error:
gcc -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -g -I../include 
-DRESOLVE_HOSTNAMES   -c -o ipxfrm.o ipxfrm.c
ipxfrm.c: In function `xfrm_selector_print':
ipxfrm.c:395: error: `IPPROTO_SCTP' undeclared (first use in this function)
ipxfrm.c:395: error: (Each undeclared identifier is reported only once
ipxfrm.c:395: error: for each function it appears in.)
ipxfrm.c: In function `xfrm_selector_upspec_parse':
ipxfrm.c:790: error: `IPPROTO_SCTP' undeclared (first use in this function)

Any solutions?
___
LARTC mailing list / [EMAIL PROTECTED]
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/


Re: [LARTC] iproute2-2.6.9-041019 compiling error

2004-10-20 Thread Lopsch
This should fix it.
diff -Nru a/ip/xfrm.h b/ip/xfrm.h
--- a/ip/xfrm.h	2004-10-20 16:40:09 -07:00
+++ b/ip/xfrm.h	2004-10-20 16:40:09 -07:00
@@ -28,7 +28,10 @@
 #include stdio.h
 #include sys/socket.h
 #include linux/xfrm.h
-#include utils.h
+
+#ifndef IPPROTO_SCTP
+# define IPPROTO_SCTP	132
+#endif
 
 #define XFRM_MAX_DEPTH 6
 
Thank´s but I´m not good at programming so I don´t really know what to 
do :(.

___
LARTC mailing list / [EMAIL PROTECTED]
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/