Actions
Bug #4492
closedpfSsh.php help appears to reference an older config structure.
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