Hi, I have many example of HTB GUI . All is already well developed, which discussed in this link. However, can anyone teach me what software to use to build a own web based GUI HTB software in Fedoracore ( Linux based) ? Thanks Regards Alan _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
Hi, I have many example of HTB GUI . All is already well developed, which discussed in this link. However, can anyone teach me what software to use to build a own web based GUI HTB software in Fedoracore ( Linux based) ? Thanks Regards Alan _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
Hi Alan,> can anyone teach me what software to use to build a own web based GUI HTBsoftware in Fedoracore ( Linux based) ? Thanks That really is a very open question to be asking. There are so many different programming languages that can work with a web server 2 that spring to mind are PHP and Perl. What may be of more benefit for you would be to visit each of the respective websites www.php.net <http://www.php.net/> (PHP) or www.perl.com <http://www.perl.com/> (Perl) and perhaps look at some of the examples on those sites. Depending on what you plan to do PHP may be a better choice over Perl (I''m not going to argue with anyone here) or vice versa it really comes down to your requirements and or future requirements. That said, I would probably suggest Perl as it has an extensive library of user contributed classes and code that is available from CPAN (www.cpan.org <http://www.cpan.org/> ) and it is most likely that you will find something there that will allow you to finish your project sooner. You will also need to look at installing the apache web server module mod_perl in order to get your perl scripts working with apache. (Again, not arguing with anyone over this) As for teaching you how to build a web based GUI, I''m afraid I just don''t have the time but there are plenty of resources available on the internet that you can learn from including IRC channels and websites to name just a few. I hope this helps Rangi _____ From: lartc-bounces@mailman.ds9a.nl [mailto:lartc-bounces@mailman.ds9a.nl] On Behalf Of alan tan Sent: Thursday, 23 November 2006 10:18 p.m. To: lartc@mailman.ds9a.nl; lartc@mailman.ds9a.nl Subject: [LARTC] HTB GUI Hi, I have many example of HTB GUI . All is already well developed, which discussed in this link <http://mailman.ds9a.nl/pipermail/lartc/2005q1/014735.html> . However, can anyone teach me what software to use to build a own web based GUI HTB software in Fedoracore ( Linux based) ? Thanks Regards Alan <http://mailman.ds9a.nl/pipermail/lartc/2005q1/014735.html> _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
You might want to look into MasterShaper. It''s a full tc/ip bandwidth shaper. The author of it is Unki. He''s done the GUI in php, and uses some perl scripts to run the actual scripts on the system. He''s currently working on a newer version, and I think it''s supposed to support multiple wans. Regards, Mark From: lartc-bounces@mailman.ds9a.nl [ mailto:lartc-bounces@mailman.ds9a.nl] On Behalf Of alan tan Sent: Thursday, 23 November 2006 10:18 p.m. To: lartc@mailman.ds9a.nl; lartc@mailman.ds9a.nl Subject: [LARTC] HTB GUI Hi, I have many example of HTB GUI . All is already well developed, which discussed in this link. However, can anyone teach me what software to use to build a own web based GUI HTB software in Fedoracore ( Linux based) ? Thanks Regards Alan _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
Someone else asked a similar question a few weeks ago, but he wanted to do some advanced "if this then that" session limiting.. Has someone here done session limiting per host? My situation is this: I have 2 direcway (Hughes now) satellites that I''m sharing out to some clients. I only get about 50 sessions per sat, so if any one of my clients has limewire or emule open with it''s default sessions set to 300, no one can browse, or it''s extremely sluggish. I had a Hotbrick doing the dual wan, and it had session limiting per IP address. Now the hotbrick failed on me, and I need something else to limit the sessions. Just a simple limit of say 15 sessions per IP, or 15 new sessions / second per IP. This site http://www.gentoo.org/doc/en/articles/dynamic-iptables-firewalls.xml#doc_chap3 has some very good scripts, one that almost does that, but it''s not a "through traffic" limit. It''s a limit directly to itself. Will this work, or what modifications would need to be made to it? I''m not really advanced enough in linux, and have not had the time to really try it. Thanks Mark
Mark Dueck wrote:> My situation is this: I have 2 direcway (Hughes now) satellites that I''m > sharing out to some clients. I only get about 50 sessions per sat, so > if any one of my clients has limewire or emule open with it''s default > sessions set to 300, no one can browse, or it''s extremely sluggish. > > I had a Hotbrick doing the dual wan, and it had session limiting per IP > address. Now the hotbrick failed on me, and I need something else to > limit the sessions. Just a simple limit of say 15 sessions per IP, or > 15 new sessions / second per IP.Take a look at the connlimit match extension. connlimit Allows you to restrict the number of parallel TCP connections to a server per client IP address (or address block). [!] --connlimit-above n match if the number of existing tcp connections is (not) above n --connlimit-mask bits group hosts using mask Examples: # allow 2 telnet connections per client host iptables -p tcp --syn --dport 23 -m connlimit --connlimit-above 2 -j REJECT # you can also match the other way around: iptables -p tcp --syn --dport 23 -m connlimit ! --connlimit-above 2 -j ACCEPT # limit the nr of parallel http requests to 16 per class C sized network (24 bit netmask) iptables -p tcp --syn --dport 80 -m connlimit --connlimit-above 16 --connlimit-mask 24 -j REJECT Grant. . . .