Cài đặt WiFi OS X qua thiết bị đầu cuối?


9

Tôi quản lý một nhóm lớn máy Mac và tất cả chúng đều được kết nối qua ethernet. Tôi muốn tắt wifi trên chúng và sau đó yêu cầu và quản trị viên thay đổi bất kỳ cài đặt wifi nào (khá nhiều những gì được hiển thị trong hình bên dưới) nhập mô tả hình ảnh ở đây Vì tôi quản lý rất nhiều, tôi muốn đẩy cài đặt qua trình quản lý máy tính từ xa. Có một dòng lệnh cho các cài đặt này? Tôi biết rằng tắt wifi là networksetup -setairportpower en1 offnhưng tôi dường như không thể tìm thấy các cài đặt để yêu cầu quyền quản trị.


Tôi đã tìm thấy một lệnh cho phép tôi vô hiệu hóa hoàn toàn phần cứng và dường như yêu cầu quản trị viên có thể thay đổi. Có lẽ ai đó có thể xác nhậnnetworksetup -setnetworkserviceenabled 'Airport' off
Brian

Tôi không chắc tại sao điều này có phiếu bầu chặt chẽ? Nó dường như là về một máy tính để bàn quản trị trong một môi trường chuyên nghiệp
Jacob

Câu trả lời:


8

Giải pháp nằm ở sân bay công cụ dòng lệnh ít nổi tiếng .

Được tìm thấy /usr/sbintrước Snow Leopard (và do đó có thể đã có trong PATH của bạn),

Đối với hệ điều hành mới hơn, nó có thể được tìm thấy tại /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources

Trong trường hợp này, lệnh bạn muốn đưa ra là như sau:

sudo airport en1 prefs RequireAdmin=YES

Trang man thực tế trống và phát hành sân bay - trợ giúp thực sự cung cấp cho bạn ít thông tin sử dụng hơn so với ban hành lệnh mà không có bất kỳ đối số nào. Cái sau đưa ra lời giải thích sau:

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

Nó hoạt động tốt trên macOS Sierra 10.12
Quanlong
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.