From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040115 Description of problem: When using a machine in a windows network the filerwall prevents newtork browsing. A selection to allow netbios, on the firewall configuration dialog, would be helpful. An end user should not have to know how to add rules to iptables to use the firewall. Version-Release number of selected component (if applicable): 1.3.2-1 How reproducible: Always Steps to Reproduce: 1.Enable Firewall 2. 3. Actual Results: No selection to allow windows network browsing Additional info: work around: script called during startup ( after iptables ) #!/bin/bash # # chkconfig: - 91 35 # description: Opens and Closes a hole in the firewall for netbios start() { echo $"Inserting firewall rules: " /sbin/iptables -I RH-Firewall-1-INPUT 1 -p tcp --dport netbios-ns:netbios-ssn -j ACCEPT /sbin/iptables -I RH-Firewall-1-INPUT 1 -p udp --dport netbios-ns:netbios-ssn -j ACCEPT /sbin/iptables -I RH-Firewall-1-INPUT 1 -p tcp --sport netbios-ns:netbios-ssn -j ACCEPT /sbin/iptables -I RH-Firewall-1-INPUT 1 -p udp --sport netbios-ns:netbios-ssn -j ACCEPT } stop() { echo $"Removing firewall rules: " /sbin/iptables -I RH-Firewall-1-INPUT -p tcp --dport netbios-ns:netbios-ssn -j ACCEPT /sbin/iptables -I RH-Firewall-1-INPUT -p udp --dport netbios-ns:netbios-ssn -j ACCEPT /sbin/iptables -I RH-Firewall-1-INPUT -p tcp --sport netbios-ns:netbios-ssn -j ACCEPT /sbin/iptables -I RH-Firewall-1-INPUT -p udp --sport netbios-ns:netbios-ssn -j ACCEPT } # See how we were called. case "$1" in start) start ;; stop) stop ;; restart|reload) stop start ;; *) echo $"Usage: $0 {start|stop|restart}" exit 1 esac exit 0
*** This bug has been marked as a duplicate of 58004 ***
Changed to 'CLOSED' state since 'RESOLVED' has been deprecated.