Dear All
hi
i have tow internet source and i you both download and the upload from one source
i have problem with port 25 the main upload source is good and work fine but the port 25 is block on it
the second source its allow port 25 but i don’t want to used the upload from second source
is there any way to froward only port 25 to my second upload source and keep used the main upload for both download
wow 20 view and no one have any idea how to do it ???
Add a route for any destination (0.0.0.0/0) protocol tcp and destination port 25 to point to the gateway you want, and all outgoing traffic for port 25 will go that way.
More exactly:
If you use NAT, add a masquerade rule for packets with dest port 25 to the proper interface.
If not, you need to mark traffic with dest port 25 with a routing mark in the prerouting chain and then add a route for that marked packets to point to your destination gateway.
(And try to use more technical correct description in your questions… e.g. i don’t exactly understand what you mean with main upload source. Technically, the upload source is in your network and uploads data to a destination… Try to use correct terms: incoming and outgoing connections, inbound and outbound traffic, gateways and so on. Maybe people will be more willing to answer a clear question.)