| United States-English |
|
|
|
![]() |
HP Open Source Middleware Stacks Blueprint:: Web Server on HP ProLiant Servers with SUSE Linux Enterprise Server Version 10Appendix B: Frequently Asked Questions |
|
Q: How do I disable firewall settings? A: By default, SLES has a firewall enabled. This prevents external systems from accessing ports below 1024. Enter the following to disable the firewall: # /sbin/SuSEfirewall2 stop
Q: How do I open specific ports without disabling the firewall? A: SLES by default prevents external systems from connecting to any of the reserved port numbers (0 to 1023). To open a specific port, use one of the following three methods: Configure with YaST: To open a specified port using the YaST GUI, perform the following steps:
From the YaST GUI, you can perform some of the following tasks:
Configure manually: To manually open a specified port, perform the following steps:
Configure using the iptables command: To open a specified port using the iptables command, enter the following:: # iptables -I INPUT -s 0/0 -d 0/0 -p tcp \ --dport <port number> --syn -j ACCEPT # iptables -save /sbin/SuSEfirewall2 restart For example:
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||