Editing Firewall
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 24: | Line 24: | ||
The old way defined by TrueOS allows you to define the firewall rules via a /etc/ipfw.conf file. You have to create that file as it does not exist by default.<br/> | The old way defined by TrueOS allows you to define the firewall rules via a /etc/ipfw.conf file. You have to create that file as it does not exist by default.<br/> | ||
− | However, OpenRC (main branch) defines the firewall rules within the | + | However, OpenRC (main branch) defines the firewall rules within the /etc/ipfw.conf file itself. |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
See: [https://github.com/OpenRC/openrc/blob/master/conf.d/ipfw ipfw on OpenRC] | See: [https://github.com/OpenRC/openrc/blob/master/conf.d/ipfw ipfw on OpenRC] | ||
− | == | + | ==Settings== |
#!/sbin/openrc-run | #!/sbin/openrc-run | ||
name="ipfw" | name="ipfw" | ||
Line 70: | Line 64: | ||
ebegin "Starting $name" | ebegin "Starting $name" | ||
# set the firewall rules script if none was specified | # set the firewall rules script if none was specified | ||
− | [ -z "${firewall_script}" ] && firewall_script= | + | [ -z "${firewall_script}" ] && firewall_script=/etc/ipfw.rules |
if [ -r "${firewall_script}" ]; then | if [ -r "${firewall_script}" ]; then | ||
/bin/sh "${firewall_script}" "${_firewall_type}" | /bin/sh "${firewall_script}" "${_firewall_type}" |