You do not have permission to edit this page, for the following reason: The action you have requested is limited to users in the group: Users. You can view and copy the source of this page. __FORCETOC__ === ufw === The imRAD system uses "ufw" as a default firewall configuration.<ref>https://help.ubuntu.com/community/UFW</ref> UFW is a front-end for iptables and is particularly well-suited for host-based firewalls. Users can therefore configure the firewall to allow certain types of network traffic to pass into and out of a system (for instance SSH or web server traffic). This is done by opening and closing TCP and UDP "ports" in the firewall. Additionally, firewalls can be configured to allow or restrict access to specific IP addresses (or IP address ranges).<ref>https://help.ubuntu.com/community/Firewall</ref> You can enable or disable using the <code>ufw enable</code> or <code> ufw disable</code> command in the configuration mode. ''The status of ufw is initially in disable''. Therefore, you may enable it if necessary. We introduce basic syntax and examples. For more details, Please visit the https://help.ubuntu.com/community/UFW. ==== Verifying ufw ==== <pre> LYSH@MyHostName# show ufw Status: inactive </pre> <pre> LYSH@MyHostName# show ufw Status: active Logging: on (low) Default: deny (incoming), allow (outgoing), disabled (routed) New profiles: skip </pre> ==== Add/Insert rules ==== ==== Delete rules ==== === References === Template used on this page: Template:Note (view source) Return to CLI - ufw.