Paramètres WiFi OS X via le terminal?


9

Je gère un grand groupe de macs et ils sont tous connectés via Ethernet. Je voudrais désactiver le wifi sur eux, puis demander à l'administrateur de modifier tous les paramètres wifi (à peu près ce qui est illustré dans l'image ci-dessous) entrez la description de l'image ici Étant donné que j'en gère beaucoup, je voudrais pousser le paramètre via le gestionnaire de bureau à distance. Existe-t-il une ligne de commande pour ces paramètres? Je sais que la désactivation du wifi est networksetup -setairportpower en1 offmais je n'arrive pas à trouver les paramètres pour exiger des privilèges d'administrateur.


J'ai trouvé une commande qui me permet de désactiver complètement le matériel et semble nécessiter un administrateur pour être réactivé. Peut-être que quelqu'un peut confirmernetworksetup -setnetworkserviceenabled 'Airport' off
Brian

Je ne sais pas pourquoi cela a des votes serrés? Il semble s'agir d'une administration de postes de travail dans un environnement professionnel
Jacob

Réponses:


8

La solution réside dans l' aéroport de l' outil de ligne de commande moins connu .

Qui se trouve /usr/sbinavant Snow Leopard (et peut donc déjà être dans votre PATH),

Pour les OS plus récents, il peut être trouvé sur /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources

Dans ce cas, la commande que vous souhaitez émettre est la suivante:

sudo airport en1 prefs RequireAdmin=YES

La page de manuel est pratiquement vide et l'émission de airport --help vous donne en fait moins d'informations sur l'utilisation que l'exécution de la commande sans aucun argument. Ce dernier donne l'explication suivante:

Usage: airport <interface> <verb> <options>

  <interface>
  If an interface is not specified, airport will use the first AirPort interface on the system.

  <verb is one of the following:
  prefs   If specified with no key value pairs, displays a subset of AirPort preferences for
      the specified interface.

      Preferences may be configured using key=value syntax. Keys and possible values are specified below.
      Boolean settings may be configured using 'YES' and 'NO'.

      DisconnectOnLogout (Boolean)
      JoinMode (String)
          Automatic
          Preferred
          Ranked
          Recent
          Strongest
      JoinModeFallback (String)
          Prompt
          JoinOpen
          KeepLooking
          DoNothing
      RememberRecentNetworks (Boolean)
      RequireAdmin (Boolean)
      RequireAdminIBSS (Boolean)
      RequireAdminNetworkChange (Boolean)
      RequireAdminPowerToggle (Boolean)
      WoWEnabled (Boolean)

  logger  Monitor the driver's logging facility.

  sniff   If a channel number is specified, airportd will attempt to configure the interface
      to use that channel before it begins sniffing 802.11 frames. Captures files are saved to /tmp.
      Requires super user privileges.

  debug   Enable debug logging. A debug log setting may be enabled by prefixing it with a '+', and disabled
      by prefixing it with a '-'.

      AirPort Userland Debug Flags
          DriverDiscovery
          DriverEvent
          Info
          SystemConfiguration
          UserEvent
          PreferredNetworks
          AutoJoin
          IPC
          Scan
          802.1x
          Assoc
          Keychain
          RSNAuth
          WoW
          P2P
          Roam
          BTCoex
          AllUserland - Enable/Disable all userland debug flags

      AirPort Driver Common Flags
          DriverInfo
          DriverError
          DriverWPA
          DriverScan
          AllDriver - Enable/Disable all driver debug flags

      AirPort Driver Vendor Flags
          VendorAssoc
          VendorConnection
          AllVendor - Enable/Disable all vendor debug flags

      AirPort Global Flags
          LogFile - Save all AirPort logs to /var/log/wifi.log

<options> is one of the following:
  No options currently defined.

Examples:

Configuring preferences (requires admin privileges)
  sudo airport en1 prefs JoinMode=Preferred RememberRecentNetworks=NO RequireAdmin=YES

Sniffing on channel 1:
  airport en1 sniff 1


LEGACY COMMANDS:
Supported arguments:
 -c[<arg>] --channel=[<arg>]    Set arbitrary channel on the card
 -z        --disassociate       Disassociate from any network
 -I        --getinfo            Print current wireless status, e.g. signal info, BSSID, port type etc.
 -s[<arg>] --scan=[<arg>]       Perform a wireless broadcast scan.
                 Will perform a directed scan if the optional <arg> is provided
 -x        --xml                Print info as XML
 -P        --psk                Create PSK from specified pass phrase and SSID.
                 The following additional arguments must be specified with this command:
                                  --password=<arg>  Specify a WPA password
                                  --ssid=<arg>      Specify SSID when creating a PSK
 -h        --help               Show this help

Cela fonctionne très bien sur macOS Sierra 10.12
Quanlong
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.