diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-05-03 04:51:41 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-05-03 04:51:41 +0000 |
commit | 4fca174c22145955179eace3aa1bb6f780bda590 (patch) | |
tree | e28e40ce0b0282a3b34d313b9862d234ce626dd2 | |
parent | 94e2459b145cd61529bb5193713d728883bffa07 (diff) | |
download | pfsense-4fca174c22145955179eace3aa1bb6f780bda590.zip pfsense-4fca174c22145955179eace3aa1bb6f780bda590.tar.gz |
Show how to output the wireless options such as channels, modes, etc.
-rwxr-xr-x | usr/local/sbin/pfSsh.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr/local/sbin/pfSsh.php b/usr/local/sbin/pfSsh.php index c9b92ca..002da35 100755 --- a/usr/local/sbin/pfSsh.php +++ b/usr/local/sbin/pfSsh.php @@ -36,6 +36,9 @@ echo "multiline\n"; echo "\n/* to exit the php pfSense shell */\n"; echo "exit\n"; +echo "\n/* to output supported wireless modes for an interface */\n"; +echo "print_r(get_wireless_modes(\"ath0\"));\n"; + echo "\n/* to enable SSH */\n"; echo "\$config['system']['enablesshd'] = true;\n"; |