From 8ea3c329710aa6630e1857539689fa13d19f8225 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Thu, 3 May 2007 03:55:04 +0000 Subject: * Correct printr typo. * Show how to output the interfaces and dhcpd portions of the configuration --- usr/local/sbin/pfSsh.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'usr/local/sbin/pfSsh.php') diff --git a/usr/local/sbin/pfSsh.php b/usr/local/sbin/pfSsh.php index 565aa4d..5345e3e 100755 --- a/usr/local/sbin/pfSsh.php +++ b/usr/local/sbin/pfSsh.php @@ -22,7 +22,13 @@ $shell_active = true; echo "\nExample commands:\n"; echo "\n/* to output a configuration array */\n"; -echo "nprint_r(\$config);\n"; +echo "print_r(\$config);\n"; + +echo "\n/* to output the interfaces configuration portion of the configuration */\n"; +echo "print_r(\$config['interfaces']);\n"; + +echo "\n/* to output the dhcp server configuration */\n"; +echo "print_r(\$config['dhcpd']);\n"; echo "\n/* to enable multiline input mode */\n"; echo "multiline\n"; -- cgit v1.1