Fortinet black logo

online help

Enabling remote connections

Copy Link
Copy Doc ID 9f76cb1c-b7d2-11ea-8b7d-00505692583a:658831

Enabling remote connections

FortiConverter is designed as a web application. The application (FortiConverter.py) should be run with Administrator privileges because it reads and writes data from/to high privilege directories. For security concerns, the default configuration only allows connections from users on the localhost.

To enable remote access to the web application
  1. Run notepad as an administrator and open the start.bat file located in the directory C:\Program Files\Fortinet\FortiConverter\.
  2. Append string 0.0.0.0:<port_num> after the keyword runserver. The port number used by default is 8000.
  3. For example:

    call "%install_dir%\Python36\python.exe" manage.py runserver 0.0.0.0:8000 --insecure

  4. Run notepad.exe as an administrator and open C:\Program Files\Fortinet\FortiConverter\converter\backend\mysite\mysite\settings.py
  5. Add the wildcard IP address '*' (match ANY) into allowed ALLOWED_HOSTS.
  6. For example:

    ALLOWED_HOSTS = [

    'localhost','127.0.0.1','*',

    ]

Enabling remote connections

FortiConverter is designed as a web application. The application (FortiConverter.py) should be run with Administrator privileges because it reads and writes data from/to high privilege directories. For security concerns, the default configuration only allows connections from users on the localhost.

To enable remote access to the web application
  1. Run notepad as an administrator and open the start.bat file located in the directory C:\Program Files\Fortinet\FortiConverter\.
  2. Append string 0.0.0.0:<port_num> after the keyword runserver. The port number used by default is 8000.
  3. For example:

    call "%install_dir%\Python36\python.exe" manage.py runserver 0.0.0.0:8000 --insecure

  4. Run notepad.exe as an administrator and open C:\Program Files\Fortinet\FortiConverter\converter\backend\mysite\mysite\settings.py
  5. Add the wildcard IP address '*' (match ANY) into allowed ALLOWED_HOSTS.
  6. For example:

    ALLOWED_HOSTS = [

    'localhost','127.0.0.1','*',

    ]