vote up 0 vote down star

Hi,

I have 20 ips from my isp. I have them bound to a router box running centos. What commands, and in what order, do I set up so that the other boxes on my lan, based either on their mac addresses or 192 ips can I have them route out my box on specific ips. For example I want mac addy xxx:xxx:xxx0400 to go out 72.049.12.157 and xxx:xxx:xxx:0500 to go out 72.049.12.158.

flag
This is not a programming question. – Iulian Șerbănoiu Sep 23 '08 at 7:50
There are far too many "right" ways to do this (depending on the stack) to be able to provide a canonical one here -- and if I wrote a document describing how to do this with Shorewall (for instance), it would be useless redundancy of the shorewall.net web site. – Charles Duffy Sep 24 '08 at 10:54

3 Answers

vote up 0 vote down

What's the router hardware and software version?

Are you trying to do this with a linux box? Stop now and go get a router. It will save you money long-term.

link|flag
I wholeheartedly disagree -- Linux-based router+VPN+firewall boxes are in my experience no trouble at all to maintain once properly configured, and iptables+ebtables is considerably more flexible than some proprietary solutions. – Charles Duffy Sep 24 '08 at 10:51
I've done this. If you need throughput, dedicated hardware is faster. By the time you buy a decent box, and fast high quality network card, you're almost at the cost of the router. Then, the router will cost less electricity. – Christopher Mahan Sep 25 '08 at 21:26
vote up 1 vote down

Use iptables to setup NAT.

iptables -t nat -I POSTROUTING -s 192.168.0.0/24 -j SNAT --to-source 72.049.12.157
iptables -t nat -I POSTROUTING -s 192.168.1.0/24 -j SNAT --to-source 72.049.12.158

This should cause any ips on the 192.168.0.0 subnet to have an 'external' ip of 72.049.12.157 and those on the 192.168.1.0 subnet to have an 'external' ip of 72.049.12.158. For MAC address matching, use '-m mac --mac-source MAC-ADDRESS' in place of the '-s 192.168.0.0/24' argument

Don't forget to activate ip forwarding:
cat /proc/sys/net/ipv4/ip_forward
If the above returns a '0' then it won't work, you'll have to enable it. Unfortunately this is distro-specific and I don't know CentOS.
For a quick hack, do this:
echo 1 > /proc/sys/net/ipv4/ip_forward

link|flag
vote up 0 vote down

Answering this question with the little information you gave amounts to rewriting a routing Howto here. You could either

  • read about routing and IP in general (e.g. Linux System Administrator's Guide) or
  • give us more info on the exact IP addresses you got.

The above answer using NAT is definately not what you intend to use when you have public IP addresses. This solution is not going to scale well.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.