Tagged Questions
1
vote
1answer
74 views
How do I route different users over different OpenVPN tunnels in Linux?
The setup:
I have multiple, static-key OpenVPN client/server configurations, labeled "client1", "client2", and "client3" with server/client IPs 10.10.1.1/10.10.1.2, 10.10.2.1/10.10.2.2, and ...
2
votes
1answer
96 views
Linux nat/iptables configuration for a chain of peer-to-peer links
I have an experimental setup, of 4 Linux (CentOS) machines:
All 4 machines are internally connected using different networks and can ping eachother directly connected interfaces. However only PC4 ...
1
vote
1answer
515 views
Redirect Packets from ppp0 interface to ethernet interface in linux
My question is similar to this question, however with some change.
I have a PPPoE connection on my Linux Machine (CentOS kernal 2.6.32) as a client, so that when I setup this connection, another ...
4
votes
2answers
193 views
Why can I reach a different interface's IP address?
I'm wondering about this, and I can't seem to find an explanation on the internet.
I have a linux gateway which has multiple interfaces:
eth0: external ip
eth1: 172.16.1.1/24
eth2: 172.16.2.1/24
...
2
votes
1answer
144 views
PPTP server with NIC aliases
I have set up a VPN on a VPS Server using PPTP. I have one NIC with two aliases.
eth0
eth0:1
eth0:2
The 3 interfaces have public addresses. eth0 is a French IP, eth0:1 is UK, and eth0:2 is ...
9
votes
2answers
4k views
iptables --set-mark - Route diferent ports through different interfaces
Short story,
3 interfaces, eth0 (LAN), eth1(ADSL), eth2(4G).
eth0 -> eth1: Works
(ports 80, 443, 4070) eth0 -> eth2: Doesn't happen
This is a graphical representation of the idea:
Port 80 & ...
2
votes
1answer
391 views
Allow IP packet forwarding from LAN to modem via router
In short: I'd like to be able to telnet to my modem from my PC via my router.
There is a simple home router on 192.168.33.1. It is running OpenWrt. It has the following interfaces defined:
br-lan ...
1
vote
1answer
182 views
Firewall/routing rule in Centos for this setup
I have two ethernet interfaces, namely eth0 and eth1.
I want to implement an advanced routing rule but I am totally new to firewall/routing rules in CentOS.
Here is what I am trying to do:
Both my ...
3
votes
1answer
141 views
Using source routing (LSRR) - any ideas?
What I want to do is conceptually very simple, but I can't find any information or help about how to go about doing this.
Basically, I want to configure my networking to use source routing (LSRR). ...
2
votes
2answers
286 views
policy routing problem with load balanced ppp connections
This my setup using Debian 6.0.6. It's role is a proxy server and a load balancer using eight 3G modems.
First and foremost:
Whenever a ppp connection dials it takes over the default gateway which ...
1
vote
1answer
1k views
iptables forwarding and routing
In fact, this question is about openwrt and CoovaAP, but I guess it's the same in other linux distributions.
I've two interfaces, a "wan" and a "wlan" interface.
Is there by default any filter, ...
1
vote
1answer
284 views
How to provide a “guest LAN” on one ethernet device
I have an always-on machine running Debian/Squeeze with a couple of ethernet ports (it's doing various serverish jobs, including DHCP) and a LAN on each.
eth0 is on 192.168.7.* and has access to the ...
1
vote
1answer
717 views
Redirect http using iptables for an ip range
I have a range of ip addresses (10.13.13.10-19) that I want to redirect all outgoing http traffic to an internal webserver. So if someone in that range tried to access any site, the html from my ...
3
votes
1answer
293 views
Routing through iptables
I have this vpn client that touches the routing table and then keeps watching it to exit if it gets touched.
It is the kind of setup needed for an endpoint, such as a laptop.
I want to use a small ...
1
vote
1answer
436 views
Having trouble with packets not making it into Fedora 16 Apache
Background: I haven't done anything with iptables in a few years... I have Fedora 16 running in a VM on VMWare, with my firewall (TomatoUSB) port forwarding to the VM.
VM is at 192.168.1.155. I know ...
1
vote
1answer
154 views
How can I use the same IP from the Internet and intranet?
I have an Ubuntu firewall box (Alma), at the office, with a web server on it. It looks like this:
[Internet] <-> [DSL Router] <-> [Alma]
|
...
3
votes
2answers
517 views
Need help with routing
I have set up a Ubuntu server, that I want to use as a router for my local office.
The problem is, that I want to make 2 VPN connections, to remote branches, and then I want to route all traffic to ...
6
votes
2answers
5k views
Output traffic on different interfaces based on destination port
My question is basically the same as Only allow certain outbound traffic on certain interfaces.
I have two interfaces eth1 (10.0.0.2) and wlan0 (192.168.0.2).
My default route is for eth1.
Let's say ...
2
votes
0answers
313 views
Why are packets not moving forward? [closed]
I have a server with forwarding turned on. I placed an iptables LOG target in the PREROUTING, INPUT, and FORWARD chains of the mangle table. I can see the LOG messages from PREROUTING, but not INPUT ...
2
votes
2answers
515 views
use iptables to allow incoming connections to some computer on port XYZ?
This is what I have: iptables -i em1 -A INPUT -j ACCEPT -p tcp --dport 9001 -v. If I want to accept incoming connections on port 9001 at this (127.0.0.1, or on the network 192.168.1.143) address, ...
1
vote
1answer
1k views
Limit the max connections per IP using OpenWRT?
Would the following iptables command on an OpenWRT router assure that no one client has more than 50 active connections?
$ iptables -I FORWARD -m connlimit --connlimit-above 50 -j REJECT ...
9
votes
2answers
4k views
Reply on same interface as incoming?
I have a system with two interfaces. Both interfaces are connected to the internet. One of them is set as the default route; a side effect of this is that if a packet comes in on the non-default-route ...
7
votes
1answer
850 views
Dual network connection
I have a usb cellular modem and a Home LAN connection on my Ubuntu 10.10 box.
Both work independently.
I want to know how to have both connected at the same time, and be able to specify which ...
4
votes
1answer
849 views
multigateway routing for specific src port
I have two gateway to access internet, somehow I want to load balancing it, so far its working, but some connection or service need persistent gateway IP to be used, so the client should never change ...
3
votes
2answers
323 views
Block specific IP from accessing gateway
Suppose you are on linux internet gateway/router. What would you do to block a client with specific IP using bash script. I prefer something like ./block_client.sh 192.168.1.123 to block and ...
12
votes
3answers
766 views
Can I limit a user (and their apps) to one network interface?
As the title really. I've actually got two scenarios to apply this:
Multiseat Desktop: two network connections both with internet gateways and two accounts doing bandwidth-intensive tasks on each. I ...