¿Configuración OS X WiFi a través de terminal?


9

Administro un gran grupo de Mac y todos están conectados a través de Ethernet. Me gustaría deshabilitar el wifi en ellos y luego pedirle a un administrador que cambie cualquier configuración de wifi (más o menos lo que se muestra en la imagen a continuación) ingrese la descripción de la imagen aquí Dado que administro tantos, me gustaría eliminar la configuración a través del administrador de escritorio remoto. ¿Hay una línea de comando para esta configuración? Sé que desactivar wifi es networksetup -setairportpower en1 offpero parece que no puedo encontrar la configuración que requiera privilegios de administrador.


Encontré un comando que me permite deshabilitar el hardware por completo y parece requerir un administrador para renombrar. Tal vez alguien pueda confirmarnetworksetup -setnetworkserviceenabled 'Airport' off
Brian

No estoy seguro de por qué esto tiene votos cerrados? Parece ser sobre la administración de escritorios en un entorno profesional
Jacob

Respuestas:


8

La solución radica en la herramienta de línea de comandos menos conocida del aeropuerto .

Que se encuentra /usr/sbinantes de Snow Leopard (y, por lo tanto, ya puede estar en su RUTA),

Para sistemas operativos más nuevos, se puede encontrar en /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources

En este caso, el comando que desea emitir es el siguiente:

sudo airport en1 prefs RequireAdmin=YES

La página de manual está prácticamente vacía y emite el aeropuerto: la ayuda en realidad le brinda menos información de uso que emitir el comando sin ningún argumento. Este último da la siguiente explicación:

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

Funciona bien en macOS Sierra 10.12
Quanlong
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.