summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2007-11-22 06:47:17 +0000
committerScott Ullrich <sullrich@pfsense.org>2007-11-22 06:47:17 +0000
commit00ea455f0fed94b95d0d943ae80705156b02b4b2 (patch)
tree23f7e570099118b8e7d4cbd58b1b931d095916a7 /usr
parent328ab0aef407edb3b1201410c9315d47c50c86de (diff)
downloadpfsense-00ea455f0fed94b95d0d943ae80705156b02b4b2.zip
pfsense-00ea455f0fed94b95d0d943ae80705156b02b4b2.tar.gz
Do not forget ; on php lines.
Diffstat (limited to 'usr')
-rwxr-xr-xusr/local/sbin/pfSsh.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/usr/local/sbin/pfSsh.php b/usr/local/sbin/pfSsh.php
index 9d4d46a..97ef7c9 100755
--- a/usr/local/sbin/pfSsh.php
+++ b/usr/local/sbin/pfSsh.php
@@ -108,26 +108,26 @@ $show_help_text = <<<EOF
\$config['system']['enablesshd'] = true;
/* change OPTX to the OPT interface name such as BACKHAUL */
- \$config['interfaces']['optx']['wireless']['standard'] = "11a"
- \$config['interfaces']['optx']['wireless']['mode'] = "hostap"
- \$config['interfaces']['optx']['wireless']['channel'] = "6"
+ \$config['interfaces']['optx']['wireless']['standard'] = "11a";
+ \$config['interfaces']['optx']['wireless']['mode'] = "hostap";
+ \$config['interfaces']['optx']['wireless']['channel'] = "6";
/* to enable dhcp server for an optx interface */
\$config['dhcpd']['optx']['enable'] = true;
- \$config['dhcpd']['optx']['range']['from'] = "192.168.31.100"
- \$config['dhcpd']['optx']['range']['to'] = "192.168.31.150"
+ \$config['dhcpd']['optx']['range']['from'] = "192.168.31.100";
+ \$config['dhcpd']['optx']['range']['to'] = "192.168.31.150";
/* to disable the firewall filter */
\$config['system']['disablefilter'] = true;
/* to enable an interface and set it for dhcp */
\$config['interfaces']['optx']['disabled'] = false;
- \$config['interfaces']['optx']['ipaddr'] = "dhcp"
+ \$config['interfaces']['optx']['ipaddr'] = "dhcp";
/* 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"
+ \$config['interfaces']['wan']['ipaddr'] = "192.168.100.1";
+ \$config['interfaces']['wan']['subnet'] = "24";
/* to save out the new configuration (config.xml) */
write_config();
OpenPOWER on IntegriCloud