Re: Routing Question

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, Jun 21, 2013 at 11:34:53AM -0400, Bo Lynch wrote:
> I have an iptables firewall/router with 2 NICS and one alias setup. 
> What I am trying to accomplish is route traffic coming in off the 
> alias to an internal server ip address. All normal web traffic goes 
> through eth1 and out eth0.
> 
> eth0 = external interface 69.21.X.1
> eth0:1 external interface 69.21.X.2

Just say NO to ifconfig:

    http://inai.de/2008/02/19

> eth1 = internal interface 192.168.1.1
> 
> My iptables script looks like this....

Scripts are also a bad idea, switch to iptables-restore(8):

    http://inai.de/documents/Perfect_Ruleset.pdf

> echo "1" > /proc/sys/net/ipv4/ip_forward
> 
> iptables -A INPUT -i eth1 -j ACCEPT
> iptables -A INPUT -i eth0:1 -j ACCEPT
> iptables -A OUTPUT -o eth0:1 -j ACCEPT
snip
> Having a hard time figuring out what Im doing wrong with this.
> Any help would be greatly appreciated.

As covered in the first link, you have been deluded by your 
ifconfig(8) output: eth0:1 is a label, not an interface. That will 
never match anything (unless you created an interface by that name, 
which you could, and it would help wean you off of ifconfig. :) )

Match your packets using -i/-o eth0 and -d/-s 69.21.X.2 .
-- 
  http://rob0.nodns4.us/ -- system administration and consulting
  Offlist GMX mail is seen only if "/dev/rob0" is in the Subject:
--
To unsubscribe from this list: send the line "unsubscribe netfilter" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Netfilter Development]     [Linux Kernel Networking Development]     [Netem]     [Berkeley Packet Filter]     [Linux Kernel Development]     [Advanced Routing & Traffice Control]     [Bugtraq]

  Powered by Linux