Why do you call it "Shorewall"?
What distributions does it work with?
I just ran an nmap UDP scan of my firewall and it showed 100s of ports as open!!!!
I've installed Shorewall and now I can't ping through the firewall
Where are the log messages written and how do I change the destination?
Shorewall is writing log messages all over my console making it unusable!
When I try to start Shorewall on RedHat 7.x, I get messages about insmod failing -- what's wrong?
Why does Shorewall only accept IP addresses as opposed to FQDNs?
Answer: The first example in the rules file documentation shows how to do port forwarding under Shorewall. Assuming that you have a dynamic external IP address, the format of a port-forwarding rule to a local system is as follows:
ACTION | SOURCE | DESTINATION | PROTOCOL | PORT | SOURCE PORT | ORIG. DEST. |
DNAT | net | loc:<local IP address>[:<local port>] | <protocol> | <port #> |
So to forward UDP port 7777 to internal system 192.168.1.5, the rule is:
ACTION | SOURCE | DESTINATION | PROTOCOL | PORT | SOURCE PORT | ORIG. DEST. |
DNAT | net | loc:192.168.1.5 | udp | 7777 |
DNAT net loc:192.168.1.5 udp 7777
If you want to forward requests directed to a particular address ( <external IP> ) on your firewall to an internal system:
ACTION | SOURCE | DESTINATION | PROTOCOL | PORT | SOURCE PORT | ORIG. DEST. |
DNAT | net | loc:<local IP address>[:<local port>] | <protocol> | <port #> | - | <external IP> |
Answer: That is usually the result of one of two things:
You are trying to test from inside your firewall (no, that won't work -- see FAQ #2). | |
You have a more basic problem with your local system such as an incorrect default gateway configured (it should be set to the IP address of your firewall's internal interface). |
Answer: I have two objections to this setup.
Having an internet-accessible server in your local network is like raising foxes in the corner of your hen house. If the server is compromised, there's nothing between that server and your other internal systems. For the cost of another NIC and a cross-over cable, you can put your server in a DMZ such that it is isolated from your local systems - assuming that the Server can be located near the Firewall, of course :-) | |
The accessibility problem is best solved using Bind Version 9 "views" (or using a separate DNS server for local clients) such that www.mydomain.com resolves to 130.141.100.69 externally and 192.168.1.5 internally. That's what I do here at shorewall.net for my local systems that use static NAT. |
If you insist on an IP solution to the accessibility problem rather than a DNS solution, then assuming that your external interface is eth0 and your internal interface is eth1 and that eth1 has IP address 192.168.1.254 with subnet 192.168.1.0/24, do the following:
a) In /etc/shorewall/interfaces, specify "multi" as an option for eth1.
b) In /etc/shorewall/rules, add:
ACTION SOURCE DESTINATION PROTOCOL PORT SOURCE PORT ORIG. DEST. DNAT loc:192.168.1.0/24 loc:192.168.1.5 tcp www - 130.151.100.69:192.168.1.254
DNAT loc:192.168.1.0/24 loc:192.168.1.5 tcp www - 130.151.100.69:192.168.1.254
That rule only works of course if you have a static external IP address. If you have a dynamic IP address and are running Shorewall 1.3.4 or later then include this in /etc/shorewall/params:
ETH0_IP=`find_interface_address eth0`
and make your DNAT rule:
ACTION SOURCE DESTINATION PROTOCOL PORT SOURCE PORT ORIG. DEST. DNAT loc:192.168.1.0/24 loc:192.168.1.5 tcp www - $ETH0_IP:192.168.1.254
Using this technique, you will want to configure your DHCP/PPPoE client to automatically restart Shorewall each time that you get a new IP address.
Answer: This is another problem that is best solved using Bind Version 9 "views". It allows both external and internal clients to access a NATed host using the host's DNS name.
Another good way to approach this problem is to switch from static NAT to Proxy ARP. That way, the hosts in Z have non-RFC1918 addresses and can be accessed externally and internally using the same address.
If you don't like those solutions and prefer routing all Z->Z traffic through your firewall then:
a) Specify "multi" on the entry for Z's interface in
/etc/shorewall/interfaces.
b) Set the Z->Z policy to ACCEPT.
c) Masquerade Z to itself.
Example:
Zone: dmz
Interface: eth2
Subnet: 192.168.2.0/24
In /etc/shorewall/interfaces:
ZONE | INTERFACE | BROADCAST | OPTIONS |
dmz | eth2 | 192.168.2.255 | multi |
In /etc/shorewall/policy:
SOURCE | DESTINATION | POLICY | LIMIT:BURST |
dmz | dmz | ACCEPT |
dmz dmz ACCEPT
In /etc/shorewall/masq:
INTERFACE | SUBNET | ADDRESS |
eth2 | 192.168.2.0/24 |
Answer: There is an H.323 connection tracking/NAT module that may help. Also check the Netfilter mailing list archives at http://netfilter.samba.org.
Answer: The common.def included with version 1.3.x always rejects connection requests on TCP port 113 rather than dropping them. This is necessary to prevent outgoing connection problems to services that use the 'Auth' mechanism for identifying requesting users. Shorewall also rejects TCP ports 135, 137 and 139 as well as UDP ports 137-139. These are ports that are used by Windows (Windows can be configured to use the DCE cell locator on port 135). Rejecting these connection requests rather than dropping them cuts down slightly on the amount of Windows chatter on LAN segments connected to the Firewall.
If you are seeing port 80 being 'closed', that's probably your ISP preventing you from running a web server in violation of your Service Agreement.
Answer: Take a deep breath and read the nmap man page section about UDP scans. If nmap gets nothing back from your firewall then it reports the port as open. If you want to see which UDP ports are really open, temporarily change your net->all policy to REJECT, restart Shorewall and do the nmap UDP scan again.
Answer: If you want your firewall to be totally open for "ping":
a) Do NOT specify 'noping' on any interface in
/etc/shorewall/interfaces.
b) Copy /etc/shorewall/icmp.def to /etc/shorewall/icmpdef
c) Add the following to /etc/shorewall/icmpdef:
run_iptables -A icmpdef -p ICMP --icmp-type echo-request -j ACCEPT
Answer: NetFilter uses the kernel's equivalent of syslog (see "man syslog") to log messages. It always uses the LOG_KERN (kern) facility (see "man openlog") and you get to choose the log level (again, see "man syslog") in your policies and rules. The destination for messaged logged by syslog is controlled by /etc/syslog.conf (see "man syslog.conf"). When you have changed /etc/syslog.conf, be sure to restart syslogd (on a RedHat system, "service syslog restart").
By default, older versions of Shorewall ratelimited log messages through settings in /etc/shorewall/shorewall.conf -- If you want to log all messages, set:
LOGLIMIT="" LOGBURST=""
Answer: Here are several links that may be helpful:
http://www.shorewall.net/pub/shorewall/parsefw/
http://www.fireparse.com
http://cert.uni-stuttgart.de/projects/fwlogwatch
The 'stop' command is intended to place your firewall into a safe state whereby only those interfaces/hosts having the 'routestopped' option in /etc/shorewall/interfaces and /etc/shorewall/hosts are activated. If you want to totally open up your firewall, you must use the 'shorewall clear' command.
Answer: The output you will see looks something like this:
/lib/modules/2.4.17/kernel/net/ipv4/netfilter/ip_tables.o: init_module: Device or resource busy Hint: insmod errors can be caused by incorrect module parameters, including invalid IO or IRQ parameters /lib/modules/2.4.17/kernel/net/ipv4/netfilter/ip_tables.o: insmod /lib/modules/2.4.17/kernel/net/ipv4/netfilter/ip_tables.o failed /lib/modules/2.4.17/kernel/net/ipv4/netfilter/ip_tables.o: insmod ip_tables failed iptables v1.2.3: can't initialize iptables table `nat': iptables who? (do you need to insmod?) Perhaps iptables or your kernel needs to be upgraded.
This is usually cured by the following sequence of commands:
service ipchains stop chkconfig --delete ipchains rmmod ipchains
Also, be sure to check the errata for problems concerning the version of iptables (v1.2.3) shipped with RH7.2.
Answer: FQDNs in iptables rules aren't nearly as useful as they first appear. When a DNS name appears in a rule, the iptables utility resolves the name to one or more IP addresses and inserts those addresses into the rule. So change in the DNS->IP address relationship that occur after the firewall has started have absolutely no effect on the firewall's ruleset.
I'm also trying to protect people from themselves. If your firewall rules include FQDN's then:
If your /etc/resolv.conf is wrong then your firewall won't start. | |
If your /etc/nsswitch.conf is wrong then your firewall won't start. | |
If your Name Server(s) is(are) down then your firewall won't start. | |
Factors totally outside your control (your ISP's router is down for example), can prevent your firewall from starting. |
Shorewall works with any GNU/Linux distribution that includes the proper prerequisites.
Answer: See the Shorewall Feature List.
Answer: Every time I've started to work on one, I find myself doing other things. I guess I just don't care enough if Shorewall has a GUI to invest the effort to create one myself. There are several Shorewall GUI projects underway however and I will publish links to them when the authors feel that they are ready.
Answer: Shorewall is a concatenation of "Shoreline" (the city where I live) and "Firewall".
Is there any way it can add a rule before the rfc1918 blocking that will let all traffic to and from the 192.168.100.1 address of the modem in/out but still block all other rfc1918 addresses.
Answer: If you are running a version of Shorewall earlier than 1.3.1, create /etc/shorewall/start and in it, place the following:
run_iptables -I rfc1918 -s 192.168.100.1 -j ACCEPT
If you are running version 1.3.1 or later, simply add the following to /etc/shorewall/rfc1918:
SUBNET TARGET 192.168.100.1 RETURN
Be sure that you add the entry ABOVE the entry for 192.168.0.0/16.
The solution is the same as FAQ 14 above. Simply substitute the IP address of your ISPs DHCP server.
Answer: Every time I read "systems can't see out to the net", I wonder where the poster bought computers with eyes and what those computers will "see" when things are working properly. That aside, the most common causes of this problem are:
The default gateway on each local system isn't set to the IP address of the local firewall interface.
The entry for the local network in the /etc/shorewall/masq file is wrong or missing.
The DNS settings on the local systems are wrong or the user is running a DNS server on the firewall and hasn't enabled UDP and TCP port 53 from the firewall to the internet.
Answer: "man dmesg" -- add a suitable 'dmesg' command to your startup scripts or place it in /etc/shorewall/start.
I just installed Shorewall and when I issue the start command, I see the following:
Processing /etc/shorewall/shorewall.conf ... Processing /etc/shorewall/params ... Starting Shorewall... Loading Modules... Initializing... Determining Zones... Zones: net loc Validating interfaces file... Validating hosts file... Determining Hosts in Zones... Net Zone: eth0:0.0.0.0/0 Local Zone: eth1:0.0.0.0/0 Deleting user chains... Creating input Chains... ...
Why can't Shorewall detect my interfaces properly?
Answer: The above output is perfectly normal. The Net zone is defined as all hosts that are connected through eth0 and the local zone is defined as all hosts connected through eth1.
Last updated 7/31/2002 - Tom Eastep