การตั้งค่า OS X WiFi ผ่านเทอร์มินัล?


9

ฉันจัดการแม็คกลุ่มใหญ่และพวกมันทั้งหมดเชื่อมต่อผ่านอีเธอร์เน็ต ฉันต้องการที่จะปิดการใช้งาน wifi ที่พวกเขาแล้วต้องมีและผู้ดูแลระบบเพื่อเปลี่ยนการตั้งค่า wifi ใด ๆ (สวยมากสิ่งที่แสดงในภาพด้านล่าง) ป้อนคำอธิบายรูปภาพที่นี่ เนื่องจากฉันจัดการจำนวนมากดังนั้นฉันต้องการที่จะผลักดันการตั้งค่าผ่านผู้จัดการเดสก์ท็อประยะไกล มีบรรทัดคำสั่งสำหรับการตั้งค่าเหล่านี้หรือไม่ ฉันรู้ว่าการปิด wifi คือnetworksetup -setairportpower en1 offแต่ฉันไม่สามารถหาการตั้งค่าที่ต้องการสิทธิ์ผู้ดูแลระบบได้


ฉันพบคำสั่งเดียวที่ให้ฉันปิดการใช้งานฮาร์ดแวร์ทั้งหมดและดูเหมือนว่าต้องการให้ผู้ดูแลระบบสามารถเปลี่ยนได้ บางทีบางคนสามารถยืนยันได้networksetup -setnetworkserviceenabled 'Airport' off
Brian

ฉันไม่แน่ใจว่าทำไมจึงมีคะแนนปิด ดูเหมือนว่าจะเป็นเรื่องเกี่ยวกับเดสก์ท็อปผู้ดูแลระบบในสภาพแวดล้อมแบบมืออาชีพ
Jacob

คำตอบ:


8

การแก้ปัญหาอยู่กับน้อยที่รู้จักกันดีเครื่องมือบรรทัดคำสั่งที่สนามบิน

ซึ่งพบได้/usr/sbinก่อน Snow Leopard (และอาจอยู่ในเส้นทางของคุณแล้ว)

สำหรับ OS ที่ใหม่กว่าสามารถพบได้ที่ /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources

ในกรณีนี้คำสั่งที่คุณต้องการใช้มีดังต่อไปนี้:

sudo airport en1 prefs RequireAdmin=YES

หน้าคนว่างเปล่าจริง ๆ และการออกสนามบิน - ช่วยให้ข้อมูลการใช้งานของคุณน้อยกว่าการออกคำสั่งโดยไม่มีข้อโต้แย้งใด ๆ หลังให้คำอธิบายต่อไปนี้:

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

ใช้งานได้ดีกับ macOS Sierra 10.12
Quanlong
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.