Networking Forums

Networking Forums > Computer Networking > Linux Networking > Route App on special Interface (not std. GW)

Reply
Thread Tools Display Modes

Route App on special Interface (not std. GW)

 
 
Andreas Foehrenbach
Guest
Posts: n/a

 
      05-16-2004, 11:32 AM

Hy,
I got a simple 3-PC net with a WAN Router for Internet-Access.
PCs are on SUSE 9.0/9.1
One PC has an unused ISDN-Card.

Question:
How can I configure my Net, so one special Application (Moneyplex) on every
PC does use the ISDN-Card for Internet-Dial-Up instead of the std. Router
(GW)?

I can copnfigure a proxy in moneyplex.
I have no clue, what net or host moneyplex is talking to.

Any help is appreciated so I can throw out my MS-Quicken Banking to a
Linux-App.

Andy


 
Reply With Quote
 
 
 
 
T0t0
Guest
Posts: n/a

 
      05-17-2004, 10:17 AM
"Andreas Foehrenbach" <(E-Mail Removed)> wrote in message
news:c87jgf$5im$(E-Mail Removed)
> Question:
> How can I configure my Net, so one special Application (Moneyplex) on every
> PC does use the ISDN-Card for Internet-Dial-Up instead of the std. Router
> (GW)?


You can use advanced IP routing properties with the iproute software
in linux. You can specifically route special protocols due to the
TCP/UDP ports.
You also need to mark paquets with iptables to redirect traffic to
a special route.
You can read LARC to know more about these solutions.

An example for http:
Create a special routing table for http traffic
# echo 201 http >> /etc/iproute2/rt_tables
# ip rule add fwmark 80 table http
Add a special default gateway for this traffic
# ip route add default via 82.226.217.254 table http

And in iptables
To mark the http paquets
# iptables -t mangle -A PREROUTING -i eth0 -p tcp --dport 80 -j MARK \
--set-mark 80

and all your http traffic will now pass by a special default route
wich is 82.226.217.254 :-)

Hope this helps.



--
Posted via Mailgate.ORG Server - http://www.Mailgate.ORG
 
Reply With Quote
 
P Gentry
Guest
Posts: n/a

 
      05-17-2004, 05:26 PM
Andreas Foehrenbach <(E-Mail Removed)> wrote in message news:<c87jgf$5im$(E-Mail Removed)>...
> Hy,
> I got a simple 3-PC net with a WAN Router for Internet-Access.
> PCs are on SUSE 9.0/9.1
> One PC has an unused ISDN-Card.
>
> Question:
> How can I configure my Net, so one special Application (Moneyplex) on every
> PC does use the ISDN-Card for Internet-Dial-Up instead of the std. Router
> (GW)?
>
> I can copnfigure a proxy in moneyplex.
> I have no clue, what net or host moneyplex is talking to.
>
> Any help is appreciated so I can throw out my MS-Quicken Banking to a
> Linux-App.
>
> Andy


If you can handle the German language interface [ :-) ], it appears
that moneyplex is included in latest SuSe (9.0 & 9.1):
http://lwn.net/Articles/81559/
http://www.matrica.de/prodmpxwinlnx.htm

My deutsch reading skills very rusty (can't you tell?), but this may
be your best bet. Fact is, looks pretty interesting ;-)

If you use MS just for off-line work, then maybe you can find
something that the bank and you can use ( ie., common data formats).

You might want to look at this for isdn issues:
http://www.isdn4linux.de/faq/
http://www.mhessler.de/i4lfaq/ download

Saw mailing list posts that indicate that recent 2.6.x's have broken
isdn4linux :-(
Resolved in SuSe?

Seems isdn is much more used in EU than US and above seems to cover
issues/pitfalls pretty well.

hth,
prg
email above disabled
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
disable short route via localhost on dual network interface Andreas Wassatsch Linux Networking 2 11-26-2007 05:27 AM
Adding a persistant route with a specific interface =?Utf-8?B?TVBpcnJvbmUx?= Windows Networking 3 04-07-2005 11:08 AM
Bind RPC Services to a special interface Alexander Block Linux Networking 0 01-27-2005 10:00 AM
using iptables to route thru specific interface? Tobias Skytte Linux Networking 1 12-22-2003 05:40 PM
Linux automatic route after bringing up interface Peteris Krumins Linux Networking 2 07-31-2003 06:13 PM



1 2 3 4 5 6 7 8 9 10 11