Tag Archives: firewall

How to Restart FortiGate Services

How to Restart FortiGate Services

When browsing to the forfIgate GUI I got response “error 400”

I restated the httpsd on the fortIgate to solve the issue.

To restart the httpsd do the following:

  1. Login to the fortIgate using ssh and admIn user
  2. Run the command get system performance top
  3. Press ctrl+c to stop the command.
  4. Locate the httpsd and its process Id. the process Ids are on the second column from the left.
  5. Run the command dIag sys kIll 11 <process-Id>
  6. Try to brows again to the GUI.

Example:

Run Time:  45 days, 18 hours and 50 minutes

0U, 0S, 100I; 4031T, 2260F, 149KF

miglogd       44      S       0.1     0.4

proxyworker       52      S       0.0     1.0

proxyworker       53      S       0.0     1.0

httpsd       66      S       0.0     0.8

httpsd      126      S       0.0     0.7

ipsengine       60      S <     0.0     0.6

ipsengine       72      S <     0.0     0.6

How To Disable Firewall on Linux

How To Disable Firewall on RHEL / CentOS / RedHat Linux

iptables is administration tool / command for IPv4 packet filtering and NAT. You need to use the following tools:

service is a command to run a System V init script. It is use to save / stop / start firewall service.

chkconfig command is used to update and queries runlevel information for system service. It is a system tool for maintaining the /etc/rc*.d hierarchy. Use this tool to disable firewall service at boot time.

How Do I Disable Firewall?

First login as the root user.

Next enter the following three commands to disable firewall.
# service iptables save
# service iptables stop
# chkconfig iptables off

 

If you are using IPv6 firewall, enter.
# service ip6tables save
# service ip6tables stop
# chkconfig ip6tables off

Via How To: Disable Firewall on RHEL / CentOS / RedHat Linux.