Project

General

Profile

Actions

Bug #4492

closed

pfSsh.php help appears to reference an older config structure.

Added by Robert Middleswarth about 9 years ago. Updated about 9 years ago.

Status:
Resolved
Priority:
Normal
Assignee:
-
Category:
Developer Tools
Target version:
Start date:
03/06/2015
Due date:
% Done:

0%

Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
All
Affected Architecture:

Description

The example give to enable a static internface

/* to enable an interface and set a static ip address */
$config['interfaces']['wan']['disabled'] = false;
$config['interfaces']['wan']['ipaddr'] = "192.168.100.1";
$config['interfaces']['wan']['subnet'] = "24";

No longer works. It should be

/* to enable an interface and set a static ip address */
$config['interfaces']['wan']['enable'] = true;
$config['interfaces']['wan']['ipaddr'] = "192.168.100.1";
$config['interfaces']['wan']['subnet'] = "24";

I haven't checked any of the other examples to see if they need updated as well.

Thanks
Robert

Actions #1

Updated by Chris Buechler about 9 years ago

  • Category set to Developer Tools
  • Status changed from New to Resolved
  • Target version set to 2.2.1

thanks for the report, fixed.

Actions

Also available in: Atom PDF