All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: owner based routing
@ 2005-10-11 22:46 Ignatich
  0 siblings, 0 replies; 8+ messages in thread
From: Ignatich @ 2005-10-11 22:46 UTC (permalink / raw)
  To: netfilter

Hello,

> The mangle table OUTPUT chain is consulted before routing.
>
> root@room101:~# iptables -vt mangle -A OUTPUT -m owner --uid-owner rob0 -j MARK --set-mark 0x80
> MARK  all opt -- in * out *  0.0.0.0/0  -> 0.0.0.0/0  OWNER UID match 1000 MARK set 0x80
>
> Did you try this?

Yes, i overlooked this. Thank you very much, it solved my problem.

-- 
 Ignatich                          mailto:ignatich@gmail.com



^ permalink raw reply	[flat|nested] 8+ messages in thread
* Re: owner based routing
@ 2005-10-11 14:25 Ignatich
  2005-10-11 14:46 ` /dev/rob0
  0 siblings, 1 reply; 8+ messages in thread
From: Ignatich @ 2005-10-11 14:25 UTC (permalink / raw)
  To: netfilter

Hello,

dr> On Tuesday 2005-October-11 08:57, Ignatich wrote:
>> Since ipt_owner does not work in PREROUTING chain and fwmark is
>> pointless, I thought that ipt_ROUTE from p-o-m can help me.

dr> Why is fwmark pointless?

>> Any ideas how to solve my problem?

dr> I would try -j MARK --set-mark $UID for your -m owner matched packets
dr> and use a ip rule / ip route combination. I've not done this, but I
dr> don't see why it wouldn't work.

It's pointless because ipt_owner does not work in PREROUTING table. So
even if I mark packet routing decision is already made.

-- 
 Ignatich                          mailto:ignatich@gmail.com



^ permalink raw reply	[flat|nested] 8+ messages in thread
* owner based routing
@ 2005-10-11 13:57 Ignatich
  2005-10-11 14:07 ` /dev/rob0
  2005-10-12 20:57 ` Henrik Nordstrom
  0 siblings, 2 replies; 8+ messages in thread
From: Ignatich @ 2005-10-11 13:57 UTC (permalink / raw)
  To: netfilter

Hello,

I have a following problem. My goal is to allow traffic originating
from specific user/group to be routed via different gateway.

Here's my setup:
eth0 - default internet interface, ip z.z.z.z
eth1 - LAN, ip y.y.y.y

In LAN I have a hardware ADSL router with ip x.x.x.x.

Since ipt_owner does not work in PREROUTING chain and fwmark is
pointless, I thought that ipt_ROUTE from p-o-m can help me.

Here's what I did:

iptables -t mangle -A OUTPUT -o eth0 -m owner --gid-owner adsl -j
ROUTE --gw x.x.x.x --oif eth1

But it did not work. I belive this happened because matched packets
still had z.z.z.z as their source address.

So i tried that:

iptables -t mangle -A OUTPUT -o eth0 -m owner --gid-owner adsl -j
ROUTE --gw x.x.x.x --oif eth1 --continue
iptables -t nat -A POSTROUTING -o eth1 -m owner --gid-owner adsl -j
SNAT --to-source y.y.y.y

But still no luck. :(

Any ideas how to solve my problem?

-- 
 Ignatich                          mailto:ignatich@gmail.com



^ permalink raw reply	[flat|nested] 8+ messages in thread
* owner based routing
@ 2005-10-09 20:50 Ignatich
  2005-10-10  5:05 ` Patrick Schaaf
  0 siblings, 1 reply; 8+ messages in thread
From: Ignatich @ 2005-10-09 20:50 UTC (permalink / raw)
  To: netfilter-devel

Hello netfilter developers,

I have a following problem. My linux server has two interfaces: the first
connected to internet and the second connected to LAN. In LAN I have
another hardware ADSL router connected to another (much slower) ISP.

I want LAN users to use linux server as internet gateway and
still be able to use ADSL link to download files via http/ftp/bt on
my server in background.

At first glance I thought that ipt_owner is all I need, but
unfortunately it only works in OUTPUT chain (and in INPUT and
POSTROUTING chain if I apply owner-socketlookup patch from
patch-o-matic, but that doesn't help here).

Is it possible to configure owner-based routing via some other way? If
not then how much work required to make ipt_owner work in PREROUTING
table? Does netfilter team plan to add such functionality? I'm no
linux kernel programmer but experienced with C so I might be able to
help if that's not very complicated.

-- 
 Ignatich                          mailto:ignatich@gmail.com

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2005-10-12 20:57 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-11 22:46 owner based routing Ignatich
  -- strict thread matches above, loose matches on Subject: below --
2005-10-11 14:25 Ignatich
2005-10-11 14:46 ` /dev/rob0
2005-10-11 13:57 Ignatich
2005-10-11 14:07 ` /dev/rob0
2005-10-12 20:57 ` Henrik Nordstrom
2005-10-09 20:50 Ignatich
2005-10-10  5:05 ` Patrick Schaaf

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.