Impostazioni WiFi OS X tramite terminale?


9

Gestisco un folto gruppo di mac e sono tutti collegati via ethernet. Vorrei disabilitare il wifi su di essi e quindi richiedere e l'amministratore di modificare le impostazioni Wi-Fi (praticamente ciò che è mostrato nell'immagine qui sotto) inserisci qui la descrizione dell'immagine Dato che ne gestisco così tanti, vorrei estromettere l'impostazione tramite il desktop manager remoto. Esiste una riga di comando per queste impostazioni? So che disattivare il wifi è networksetup -setairportpower en1 offma non riesco a trovare le impostazioni per richiedere i privilegi di amministratore.


Ho trovato un comando che mi consente di disabilitare del tutto l'hardware e sembra che sia necessario abilitare un amministratore. Forse qualcuno può confermarenetworksetup -setnetworkserviceenabled 'Airport' off
Brian

Non sono sicuro del perché questo abbia voti stretti? Sembra riguardare un desktop di amministrazione in un ambiente professionale
Jacob

Risposte:


8

La soluzione sta nel meno noto aeroporto dello strumento da riga di comando .

Che si trova /usr/sbinprima di Snow Leopard (e quindi potrebbe già essere nel tuo PERCORSO),

Per i sistemi operativi più recenti, è disponibile all'indirizzo /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources

In questo caso, il comando che si desidera emettere è il seguente:

sudo airport en1 prefs RequireAdmin=YES

La pagina man è praticamente vuota e l'emissione dell'aeroporto - l'aiuto in realtà fornisce meno informazioni sull'utilizzo rispetto all'emissione del comando senza alcun argomento. Quest'ultimo fornisce la seguente spiegazione:

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

Funziona bene su macOS Sierra 10.12
Quanlong,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.