The NICs are attached to different networks (one 192.168.*, the other 10.*)
Thanks for any tips!
-J
> > There are simple mechanisms to do this:
> > www.qubes-os.org/doc/firewall is helpful.
> > On sys-net you can use an entry in /rw/config/rc.local to set up the new
> > firewall restriction: something like
> > iptables -I FORWARD -s 10.137.100.10 -j DROP
> > iptables -I FORWARD -s 10.137.100.10 -d 10.0.0.0/8 -j ACCEPT
To recap, I'd like my "restricted" firewall (with IP 10.137.100.10) to grant access to a 192.168.1.* network, and not allow any traffic to the second interface on a 10.* network. The "unrestricted" firewall would allow access to both networks. So in my sys-net, why don't I just do the following?
iptables -I FORWARD -s 10.137.100.10 -d 10.0.0.0/8 -j DROP
I ask because the above worked as expected, but when I tried:
iptables -I FORWARD -s 10.137.100.10 -j DROP
iptables -I FORWARD -s 10.137.100.10 -d 192.0.0.0/8 -j ACCEPT
I could ping 192.168.1.1, but I could not browse the web on the restricted firewall.
Thank you,
-J