All of lore.kernel.org
 help / color / mirror / Atom feed
From: ro0ot <ro0ot@phreaker.net>
To: lartc@vger.kernel.org
Subject: [LARTC] load balancing between two dsl links
Date: Wed, 09 Feb 2005 08:40:47 +0000	[thread overview]
Message-ID: <4209CC8F.40406@phreaker.net> (raw)

Hi,

I am connected to two DSL providers (DSL 1 - 1Mbps downlink/384kbps 
uplink and DSL 2 - 2Mbps downlink/512kpbs uplink)

I would like to only allow ftp, pop3 and http via the DSL 1 and only 
smtp, ipsec and pptp via DSL 2.

How can I do so?  Can I use iproute to route these protocols?

Below is my ip routing: -

# DSL 1
ip route add 2.2.2.208/30 dev eth0 src 2.2.2.210 table 1
ip route add default via 2.2.2.209 table 1

# DSL 2
ip route add 3.3.3.116/30 dev eth2 src 3.3.3.118 table 2
ip route add default via 3.3.3.117 table 2

ip rule add from 2.2.2.208/30 lookup 1
ip rule add from 3.3.3.116/30 lookup 2

ip route add 3.3.3.116/30 dev eth2 table 1
ip route add 10.59.2.0/24 dev eth1 table 1
ip route add 127.0.0.0/8 dev lo table 1

ip route add 2.2.2.208/30 dev eth0 table 2
ip route add 10.59.2.0/24 dev eth1 table 2
ip route add 127.0.0.0/8 dev lo table 2

ip route add default scope global nexthop via 2.2.2.209 dev eth0 weight 
1 nexthop via 3.3.3.117 dev eth2 weight 1

Below is my iptables: -

lanif="eth1"
squid_box="10.59.2.3"
lan_net="10.59.2.0/24"

$ECHO 1 > /proc/sys/net/ipv4/ip_forward

$IPTABLES -t nat -A PREROUTING -i $lanif -s ! $squid_box -p tcp --dport 
80 -j DNAT --to $squid_box:3128
$IPTABLES -t nat -A POSTROUTING -o $lanif -s $lan_net -d $squid_box -j 
SNAT --to $lan_ip
$IPTABLES -A FORWARD -s $lan_net -d $squid_box -i $lanif -o $lanif -p 
tcp --dport 3128 -j ACCEPT

$IPTABLES -t nat -A POSTROUTING -j MASQUERADE

Regards,
ro0ot



_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

             reply	other threads:[~2005-02-09  8:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-02-09  8:40 ro0ot [this message]
2005-02-09 18:20 ` [LARTC] load balancing between two dsl links ro0ot
2005-02-09 18:36 ` Bernardo Silveira

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4209CC8F.40406@phreaker.net \
    --to=ro0ot@phreaker.net \
    --cc=lartc@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.