diff options
Diffstat (limited to 'sysconfig/network-scripts/ifup-wireless')
-rwxr-xr-x | sysconfig/network-scripts/ifup-wireless | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup-wireless b/sysconfig/network-scripts/ifup-wireless index 87676ca7..ace878f4 100755 --- a/sysconfig/network-scripts/ifup-wireless +++ b/sysconfig/network-scripts/ifup-wireless @@ -62,18 +62,21 @@ fi if [ -n "$FRAG" ] ; then iwconfig $DEVICE frag $FRAG fi + # More specific parameters passed directly to IWCONFIG if [ -n "$IWCONFIG" ] ; then iwconfig $DEVICE $IWCONFIG fi + if [ -n "$SPYIPS" ] ; then for IP in $SPYIPS; do - iwspy $DEVICE $IP + iwspy $DEVICE + $IP done fi if [ -n "$IWPRIV" ] ; then iwpriv $DEVICE $IWPRIV fi + # ESSID need to be last : most device re-perform the scanning/discovery # when this is set, and things like encryption keys are better be # defined if we want to discover the right set of APs/nodes. |