質問編集履歴
2
困っていることについて
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
RaspberryPiをネットにつなぎたい
|
1
|
+
RaspberryPiをネットにつなぎたい→NTPで時刻設定
|
test
CHANGED
@@ -97,3 +97,5 @@
|
|
97
97
|
pi@raspberrypi:~ $ ping google.com
|
98
98
|
|
99
99
|
PING google.com (216.58.196.238) 56(84) bytes of data.←このままずっと動かず
|
100
|
+
|
101
|
+
NTPでntp.nict.jpを指定しても時間取得ができないのですがそれもproxy介してるからでしょうか?
|
1
試したこと追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -62,8 +62,38 @@
|
|
62
62
|
|
63
63
|
|
64
64
|
|
65
|
+
2/14更新
|
66
|
+
|
67
|
+
/etc/apt/apt.confを設定したらラズパイに最初からあるブラウザでgoogle開けました。
|
68
|
+
|
69
|
+
```
|
70
|
+
|
71
|
+
Acquire::http::proxy "http://192.168.10.249:8080/";
|
72
|
+
|
73
|
+
Acquire::https::proxy "https://192.168.10.249:8080/";
|
74
|
+
|
75
|
+
Acquire::ftp::proxy "ftp://192.168.10.249:8080/";
|
76
|
+
|
77
|
+
Acquire::socks::proxy "socks://192.168.10.249:8080/";
|
78
|
+
|
79
|
+
```
|
80
|
+
|
81
|
+
ただpingは通らないままです。
|
82
|
+
|
83
|
+
|
84
|
+
|
65
85
|
### 補足情報(FW/ツールのバージョンなど)
|
66
86
|
|
67
87
|
|
68
88
|
|
89
|
+
PC(192.168.224.195)とラズパイ(192.168.224.220)はハブ?に有線で接続されています。
|
90
|
+
|
69
|
-
|
91
|
+
デフォルトゲートウェイ(192.168.224.254)
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
pi@raspberrypi:~ $ ping google.com
|
98
|
+
|
99
|
+
PING google.com (216.58.196.238) 56(84) bytes of data.←このままずっと動かず
|