Displaying 8 results from an estimated 8 matches for "adsl1".
Did you mean:
adsl
2005 Feb 21
4
Routing changes break NAT (not a shorewall question)
Hi folks,
I know this isn''t a shorewall question, but i''m hoping someone can
point me to the right place to look for answers on this (since, as Tom
suggests, search engines are useless for some things):
Here is my firewall setup:
ADSL1 ADSL2 dialup
\ | /
firewall
|
DMZ
It''s a fairly simple setup. ADSL1 has a static IP, ADSL2 is dynamic.
There is DNAT across both ADSL links to a single host in the DMZ.
The dialup IPs (a /29 subnet) are routed into the DMZ.
ADSL1 is my normal default...
2006 Feb 06
0
ip rule, fwmark, mangle and src IP
I made a script to test if in a moultiple gateway setup all default
connection are up, regardless of the fact that that gateway is the default
gw.
Suppose adsl1 and adsl2 are present, and all traffic goes by default to
adsl1, and you want to test if adsl2 is ok.
1. I use mangles from iptables to mark icmp packets to some test machines
2. I set up a routing table for each adsl
3. I use ''ip rule'' to route marked packets to the gw...
2006 Aug 21
1
Multiisp and pptp
I'm using shorewall 3.0.4 with ubuntu dapper. I've compiled the kernel
with the option CONFIG_IP_ROUTE_MULTIPATH_CACHED=n.
I had a trouble with, pptp connection, I'm trying to connect a using
microsoft vpn a vpn server out of my lan, and don't work.
My files
<providers>
ADSL1 1 1 main eth1.600 10.190.1.1 track,balance eth0
ADSL1 2 2 main eth1.601 10.190.2.1 track,balance eth0
</providers>
<tunnels>
pptclient net 0.0.0.0/0
</tunnels>
And I tried with tcrules
<tcrules>
2:P 10.100.0.0/24 0.0.0.0/0 tcp 1723
</trcules>
What's wrong ?...
2006 May 16
1
Traffic Routing/Shaping Problem
...tect
lan eth3 detect tcpflags,detectnets,nosmurfs
dmz eth4
And with the following zones:
fw firewall
net ipv4 # adsl0 to the internet
lan ipv4 # our lan 10.161.101.0
dmz ipv4 # internal dmz 10.10.10.0
dmzo ipv4 # adsl2 to the internet
vpn ipv4 # adsl1 to the internet to support vpn
vpnre ipv4 # tunnel interface for openvpn
I''m using the following routing:
67.40.108.40 dev eth2 scope link src 67.40.108.41
192.168.0.0 dev eth0 scope link src 192.168.0.2
67.40.108.64 dev eth1 scope link src 67.40.108.65
67.40.108.40/29 dev eth2...
2007 Nov 21
1
Load Balancing with secondary tables (not main as in the howto)
...] [ dev STRING ] [ weight NUMBER ] NHFLAGS
The question is, can I add load balancing over a secondary table in any
other way? Why ip route add doesn''t allow this?
Thanks in advance.
Note:
- Architecture:
Linux box ---- eth3 --------------- | ----- ADSL1 (IP: 10.0.1.1)
| | ----- ADSL2 (IP: 10.0.2.1)
| | ----- ADSL3 (IP: 10.0.3.1)
eth0
# ip addr show dev eth3
5: eth3: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000
link/ether 00:16...
2007 Oct 11
3
Problem with multiple ADSL lines
...LARTC recommends. I am able to
direct traffic for specific internal IPs either to one or the other ADSL
line. However, I am faced with two problems I am struggling for the
solution:
1. I have opened a few ports on the ADSL router/firewalls to talk to
internal hosts; say when someone hits http://myADSL1_IP I would redirect him
to 192.168.0.10; while if someone hits http://myADSL2_IP I would redirect
him to 192.168.0.20. If I have rules such as the following all works well:
ip rule add from 192.168.0.10 table ADSL1_rules
ip rule add from 192.168.0.20 table ADSL2_rules
Unfortunately, if I want...
2002 Jun 15
1
RES: ADVANCED ROUTING USING IPROUTE2 -> Multiple Firewalls
...lem is when the W2K uses the other gw.
>
>
>
> My W2K default gw is the linux.
>
>
>
> This is my setup:
>
>
>
>
>
> W2K IP -> 10.0.0.1
>
> W2K IP2 -> 192.168.1.2
>
>
>
> Linux eth0 -> xxx.xxx.xxx.170 (ADSL1)
>
> Linux eth0 gw -> xxx.xxx.xxx.129
>
>
>
> Linux eth1 -> 192.168.1.1
>
>
>
> Linux eth2 -> yyy.yyy.yyy.205 (ADSL2)
>
> Linux eth2 gw -> yyy.yyy.yyy.193
>
>
>
>
>
> IPTABLES (just the basic).
>
&g...
2005 Feb 04
2
Multiple gateways setup and timeout connections
...have any solution. Maybe somebody have something new now.
Here goes the script I use:
#!/bin/bash
ip1="192.x.x.1"
gw1="192.x.x.254"
ip2="192.x.y.1"
gw2="192.x.y.254"
ip3="200.w.z.141"
gw3="200.w.z.129"
# Setup source IP routing rules
# ADSL1
ip rule add from $ip1 lookup 1
ip route add 192.168.8.0/24 via 192.168.8.1 table 1
ip route add 192.168.3.0/24 via 192.168.3.1 table 1
ip route add 0/0 via $gw1 table 1
# ADSL2
ip rule add from $ip2 lookup 2
ip route add 192.168.8.0/24 via 192.168.8.1 table 2
ip route add 192.168.3.0/24 via 192.16...