Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionStephen Wadeley
2016-11-29 08:25:04 UTC
Document URL:
https://access.redhat.com/documentation/en/red-hat-satellite/6.2/paged/installation-guide/chapter-2-preparing-your-environment-for-installation
Section Number and Name:
2.6. Enabling Connections from a Client to Satellite Server
2.7. Enabling Connections from Capsule Server to Satellite Server
2.8. Enabling Connections from Satellite Server and Clients to a Capsule Server
5.2. Verifying and Starting the DNS Service
5.4. Configuring Satellite Server with External DHCP
5.6.1. Configuring the Firewall for External Access to TFTP
Describe the issue:
This command:
iptables-save > /etc/sysconfig/iptables
is not as safe to use as:
service iptables save
1] Partly because we avoid the use of redirection in commands because they are not as safe or newbie friendly as other methods
2] It is possible to change the path in the config file, which would make that command not work but the "service iptables save" command would still work.
Suggestions for improvement:
sed -i "s|iptables-save > /etc/sysconfig/iptables|service iptables save|g" topics/*.adoc
Additional information: