diff options
author | Chris Buechler <cmb@pfsense.org> | 2015-03-08 00:43:23 -0600 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2015-03-08 00:44:06 -0600 |
commit | f973985c845d50f567242f10a1b5873d6b39f3fc (patch) | |
tree | 0e8be72247a9b62a87c53fe3ee007b338ea6af69 /usr | |
parent | ede74d31d6c77d783e0cfff404299ec2ac75897f (diff) | |
download | pfsense-f973985c845d50f567242f10a1b5873d6b39f3fc.zip pfsense-f973985c845d50f567242f10a1b5873d6b39f3fc.tar.gz |
Update help to current config structure, touch up text while here. Fixes #4492
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/sbin/pfSsh.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/sbin/pfSsh.php b/usr/local/sbin/pfSsh.php index 6700c1c..e165fcd 100755 --- a/usr/local/sbin/pfSsh.php +++ b/usr/local/sbin/pfSsh.php @@ -124,12 +124,12 @@ $show_help_text = <<<EOF /* to disable the firewall filter */ \$config['system']['disablefilter'] = true; - /* to enable an interface and set it for dhcp */ + /* to enable an interface and configure it as a DHCP client */ \$config['interfaces']['optx']['disabled'] = false; \$config['interfaces']['optx']['ipaddr'] = "dhcp"; - /* to enable an interface and set a static ip address */ - \$config['interfaces']['wan']['disabled'] = false; + /* to enable an interface and set a static IPv4 address */ + \$config['interfaces']['wan']['enable'] = true; \$config['interfaces']['wan']['ipaddr'] = "192.168.100.1"; \$config['interfaces']['wan']['subnet'] = "24"; |