web-dev-qa-db-ja.com

Mac OS Xはネットワーク接続アドレスと日付/時刻のログを保持しますか?

先月、特定のクライアントで働いていた時間を含むファイルを紛失しました。

しかし、私が彼らのために働いている間、私は常に彼らのワイヤレスネットワークに接続しています。

とにかく、OS Xの特定のワイヤレスネットワークの接続開始時間、継続時間、または切断時間の記録を表示できますか?

そうすれば、単に数字を作成するのではなく、正確に請求できます。

ありがとう

ピート

3
user56876

/Applications/Utilities/Console.appのさまざまなログを確認してください。

system.log/private/var/log/kernel.logが最もよく見えます(後者は ここ 同様の問題について言及されています)。 「en1」またはネットワークのインターフェースが何であれ、それらを検索するだけです(en0は通常有線、en1無線)。

ただし、これらはネットワークの名前が何であったかを示していません。しかし、時間を大まかに知っている場合(たとえば、電子メールアーカイブとバージョン管理ソフトウェアを確認してください)、それは大いに役立つかもしれません。

3
Daniel Beck

見回しながら/var/log MacOS 10.11で、このログファイルwifi.logを見つけました。次の検索により、WiFiステータスの変更について適切な見通しが得られます。

$ grep processAirPortStateChanges /var/log/wifi.log \
| grep connect \
| grep -v -e "old state=disconnected, new state=disconnected" \
-e "old state=connecting, new state=connecting" \
-e "old state=disconnected, new state=auto-join" \
-e "old state=auto-join, new state=connecting" \
| cut -d' ' -f1-5,12-

サンプル出力(はい、私の新しいComcastルーターは不安定なので、自分でログファイルを探しているこの質問に出くわしました):

Sun Apr  3 00:46:08.540 old state=connecting, new state=4 bars
Sun Apr  3 01:46:50.509 old state=4 bars, new state=disconnected
Sun Apr  3 01:46:52.839 old state=4 bars, new state=connecting
Sun Apr  3 01:46:53.944 old state=connecting, new state=4 bars
Sun Apr  3 02:47:36.283 old state=4 bars, new state=disconnected
Sun Apr  3 02:47:37.900 old state=4 bars, new state=connecting
Sun Apr  3 02:47:38.385 old state=connecting, new state=4 bars
Sun Apr  3 03:49:38.732 old state=4 bars, new state=disconnected
Sun Apr  3 04:50:24.289 old state=4 bars, new state=disconnected
Sun Apr  3 04:50:26.313 old state=4 bars, new state=connecting
Sun Apr  3 04:50:27.026 old state=connecting, new state=4 bars
Sun Apr  3 05:51:10.288 old state=4 bars, new state=disconnected
Sun Apr  3 06:35:17.291 old state=4 bars, new state=disconnected
Sun Apr  3 06:35:19.983 old state=connecting, new state=4 bars
Sun Apr  3 08:18:36.758 old state=4 bars, new state=disconnected
Sun Apr  3 08:18:41.836 old state=4 bars, new state=connecting
Sun Apr  3 08:18:42.187 old state=connecting, new state=4 bars
0
hshib