search for: directconnect

Displaying 7 results from an estimated 7 matches for "directconnect".

2006 Jun 07
3
fedex tracking
I''ve been using the Business::FedEx::DirectConnect perl module to track and ship packages via FedEx for awhile now. I''m wanting to convert some of this functionality over to ROR, mostly just the package tracking part. Has anyone successfully tracked a package using the Shipping API out on RubyForge? It seems like the functionality is t...
2005 Dec 22
5
control p2p upload bandwidth rate
...-t mangle -A POSTROUTING -m layer7 --l7proto applejuice -j MARK --set-mark 1 iptables -t mangle -A POSTROUTING -m layer7 --l7proto ares -j MARK --set-mark 1 iptables -t mangle -A POSTROUTING -m layer7 --l7proto bittorrent -j MARK --set-mark 1 iptables -t mangle -A POSTROUTING -m layer7 --l7proto directconnect -j MARK --set-mark 1 iptables -t mangle -A POSTROUTING -m layer7 --l7proto edonkey -j MARK --set-mark 1 iptables -t mangle -A POSTROUTING -m layer7 --l7proto fasttrack -j MARK --set-mark 1 iptables -t mangle -A POSTROUTING -m layer7 --l7proto gnucleuslan -j MARK --set-mark 1 iptables -t mangle...
2005 Nov 29
0
fwmark port - dual adsl line
...$IPTABLES -t mangle -A PREROUTING -i tun0 -p udp -m multiport --destination-ports 4672 -j MARK –-set-mark 11 # BitTorrent $IPTABLES -t mangle -A PREROUTING -i tun0 -p tcp --dport 6881:6889 -j MARK –-set-mark 12 $IPTABLES -t mangle -A PREROUTING -i tun0 -p tcp --dport 6969 -j MARK –-set-mark 12 # DirectConnect $IPTABLES -t mangle -A PREROUTING -i tun0 -p tcp -m multiport --destination-ports 411,1412,20000 -j MARK –-set-mark 13 # Kazaa $IPTABLES -t mangle -A PREROUTING -i tun0 -p tcp -m multiport –destination-ports 1214,6699 -j MARK –-set-mark 14 $IPTABLES -t mangle -A PREROUTING -i tun0 -p udp --dport 1...
2006 Feb 06
2
p2p marking, again
Hey, one more question for ipp2p iptables -t mangle -A DSL-IN -p tcp -m ipp2p --ipp2p -j CONNMARK --restore-mark iptables -t mangle -A DSL-IN -p tcp -m mark ! --mark 0 -j ACCEPT iptables -t mangle -A DSL-IN -p tcp -m ipp2p --ipp2p -j MARK --set-mark 7 iptables -t mangle -A DSL-IN -p tcp -m ipp2p --ipp2p -j CONNMARK --save-mark iptables -t mangle -A DSL-IN -p udp -m ipp2p --ipp2p -j MARK
2004 Sep 25
3
New L7-Filter patterns for Kademlia / eMule?
I had been using L7-Filter[1] successfully for edonkey/eMule traffic until recently. I upgraded to the latest release of mldonkey, 2.5.28a, which implements eMule compatibility, and with support for Kademlia[2] enabled, network latency increases greatly. [1] http://l7-filter.sourceforge.net/ [2] http://www.infoanarchy.org/wiki/wiki.pl?Kademlia Has anyone created a new pattern match for
2006 Jan 12
1
Qos and bandwidth control
...ry, and P2P apps go in the low priority category. iptables commands are like this: iptables -t mangle -A POSTROUTING -m layer7 --l7proto ssh -j MARK --set-mark 2 iptables -t mangle -A POSTROUTING -m layer7 --l7proto h323 -j MARK --set-mark 2 iptables -t mangle -A POSTROUTING -m layer7 --l7proto directconnect -j MARK --set-mark 4 iptables -t mangle -A POSTROUTING -m layer7 --l7proto bittorrent -j MARK --set-mark 4 iptables -t mangle -A POSTROUTING -m layer7 --l7proto fasttrack -j MARK --set-mark 4 then i use a combination of tc commands to enqueue packets on different classes depending on this mark...
2004 Aug 04
5
Asterisk QOS working perfect using sveasoft 3.11g
...-p tcp --sport ssh -j CLASSIFY --set-class 1:20 $IPT -t mangle -A MYOUT -p tcp --dport ssh -j CLASSIFY --set-class 1:20 # outgoing P2P rules -- these are close to last b/c they use relatively costly layer 7 matching $IPT -t mangle -A MYOUT -m layer7 --l7dir /etc/l7-protocols/protocols --l7proto directconnect -j CLASSIFY --set-class 1:40 $IPT -t mangle -A MYOUT -m layer7 --l7dir /etc/l7-protocols/protocols --l7proto fasttrack -j CLASSIFY --set-class 1:40 # outgoing default rule - unmarked packets get schleped into lowest prio $IPT -t mangle -A MYOUT -m mark --mark 0 -j CLASSIFY --set-class 1:30 # Al...