質問編集履歴

5

同じVagrantfileとboxを使用している人のPCのifconfigについて追記しました。

2016/12/09 05:03

投稿

red-scorpions
red-scorpions

スコア9

test CHANGED
File without changes
test CHANGED
@@ -162,6 +162,40 @@
162
162
 
163
163
  ```
164
164
 
165
+ 同じVagrantfileとboxを使用している人のPCでは、ifconfigで下記のように192.168.33.10も表示されます。
166
+
167
+ ```
168
+
169
+ eth1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
170
+
171
+ inet 192.168.33.10 netmask 255.255.255.0 broadcast 192.168.33.255
172
+
173
+ inet6 fe80::a00:27ff:fed6:5e6e prefixlen 64 scopeid 0x20<link>
174
+
175
+ ether 08:00:27:d6:5e:6e txqueuelen 1000 (Ethernet)
176
+
177
+ RX packets 951 bytes 188730 (184.3 KiB)
178
+
179
+ RX errors 0 dropped 0 overruns 0 frame 0
180
+
181
+ TX packets 798 bytes 1180486 (1.1 MiB)
182
+
183
+ TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
184
+
185
+ ```
186
+
187
+ Vagrantfileでは、下記の通りprivate_networkを指定しているのですが。。。
188
+
189
+ ```
190
+
191
+ config.vm.network :private_network, ip: "192.168.33.10"
192
+
193
+ ```
194
+
195
+
196
+
197
+
198
+
165
199
 
166
200
 
167
201
  ホストOS側のifconfigの結果は下記の通りです。
@@ -302,14 +336,6 @@
302
336
 
303
337
  ```
304
338
 
305
- Vagrantfile内部では、下記の通りprivate_networkを指定しています。
306
-
307
- ```
308
-
309
- config.vm.network :private_network, ip: "192.168.33.10"
310
-
311
- ```
312
-
313
339
  解析に必要な情報を教えていただければ幸いです。
314
340
 
315
341
  よろしくお願いいたします。

4

private_networkについて追記しました。

2016/12/09 05:03

投稿

red-scorpions
red-scorpions

スコア9

test CHANGED
File without changes
test CHANGED
@@ -302,7 +302,13 @@
302
302
 
303
303
  ```
304
304
 
305
-
305
+ Vagrantfile内部では、下記の通りprivate_networkを指定しています。
306
+
307
+ ```
308
+
309
+ config.vm.network :private_network, ip: "192.168.33.10"
310
+
311
+ ```
306
312
 
307
313
  解析に必要な情報を教えていただければ幸いです。
308
314
 

3

```を忘れていたので追記しました。

2016/12/09 04:36

投稿

red-scorpions
red-scorpions

スコア9

test CHANGED
File without changes
test CHANGED
@@ -122,6 +122,8 @@
122
122
 
123
123
  ゲストOS側のifconfigの結果は下記の通りです。
124
124
 
125
+ ```
126
+
125
127
  $ ifconfig
126
128
 
127
129
  eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
@@ -158,10 +160,14 @@
158
160
 
159
161
  TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
160
162
 
163
+ ```
164
+
161
165
 
162
166
 
163
167
  ホストOS側のifconfigの結果は下記の通りです。
164
168
 
169
+ ```
170
+
165
171
  $ ifconfig
166
172
 
167
173
  lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
@@ -294,6 +300,8 @@
294
300
 
295
301
  inet 192.168.33.1 netmask 0xffffff00 broadcast 192.168.33.255
296
302
 
303
+ ```
304
+
297
305
 
298
306
 
299
307
  解析に必要な情報を教えていただければ幸いです。

2

ifconfigの結果を追加しました。

2016/12/09 03:51

投稿

red-scorpions
red-scorpions

スコア9

test CHANGED
File without changes
test CHANGED
@@ -120,6 +120,182 @@
120
120
 
121
121
 
122
122
 
123
+ ゲストOS側のifconfigの結果は下記の通りです。
124
+
125
+ $ ifconfig
126
+
127
+ eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
128
+
129
+ inet 10.0.2.15 netmask 255.255.255.0 broadcast 10.0.2.255
130
+
131
+ inet6 fe80::5054:ff:fed8:7180 prefixlen 64 scopeid 0x20<link>
132
+
133
+ ether 52:54:00:d8:71:80 txqueuelen 1000 (Ethernet)
134
+
135
+ RX packets 521 bytes 55910 (54.5 KiB)
136
+
137
+ RX errors 0 dropped 0 overruns 0 frame 0
138
+
139
+ TX packets 424 bytes 53852 (52.5 KiB)
140
+
141
+ TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
142
+
143
+
144
+
145
+ lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
146
+
147
+ inet 127.0.0.1 netmask 255.0.0.0
148
+
149
+ inet6 ::1 prefixlen 128 scopeid 0x10<host>
150
+
151
+ loop txqueuelen 0 (Local Loopback)
152
+
153
+ RX packets 43 bytes 3060 (2.9 KiB)
154
+
155
+ RX errors 0 dropped 0 overruns 0 frame 0
156
+
157
+ TX packets 43 bytes 3060 (2.9 KiB)
158
+
159
+ TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
160
+
161
+
162
+
163
+ ホストOS側のifconfigの結果は下記の通りです。
164
+
165
+ $ ifconfig
166
+
167
+ lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
168
+
169
+ options=3<RXCSUM,TXCSUM>
170
+
171
+ inet6 ::1 prefixlen 128
172
+
173
+ inet 127.0.0.1 netmask 0xff000000
174
+
175
+ inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
176
+
177
+ nd6 options=1<PERFORMNUD>
178
+
179
+ gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
180
+
181
+ stf0: flags=0<> mtu 1280
182
+
183
+ en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
184
+
185
+ ether a4:5e:60:cd:0d:61
186
+
187
+ inet6 fe80::a65e:60ff:fecd:d61%en0 prefixlen 64 scopeid 0x4
188
+
189
+ inet 10.208.143.43 netmask 0xffffc000 broadcast 10.208.191.255
190
+
191
+ nd6 options=1<PERFORMNUD>
192
+
193
+ media: autoselect
194
+
195
+ status: active
196
+
197
+ en1: flags=963<UP,BROADCAST,SMART,RUNNING,PROMISC,SIMPLEX> mtu 1500
198
+
199
+ options=60<TSO4,TSO6>
200
+
201
+ ether 6a:00:00:52:d8:50
202
+
203
+ media: autoselect <full-duplex>
204
+
205
+ status: inactive
206
+
207
+ en2: flags=963<UP,BROADCAST,SMART,RUNNING,PROMISC,SIMPLEX> mtu 1500
208
+
209
+ options=60<TSO4,TSO6>
210
+
211
+ ether 6a:00:00:52:d8:51
212
+
213
+ media: autoselect <full-duplex>
214
+
215
+ status: inactive
216
+
217
+ p2p0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 2304
218
+
219
+ ether 06:5e:60:cd:0d:61
220
+
221
+ media: autoselect
222
+
223
+ status: inactive
224
+
225
+ awdl0: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1484
226
+
227
+ ether 72:13:8e:5a:05:24
228
+
229
+ inet6 fe80::7013:8eff:fe5a:524%awdl0 prefixlen 64 scopeid 0x8
230
+
231
+ nd6 options=1<PERFORMNUD>
232
+
233
+ media: autoselect
234
+
235
+ status: active
236
+
237
+ bridge0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
238
+
239
+ options=63<RXCSUM,TXCSUM,TSO4,TSO6>
240
+
241
+ ether a6:5e:60:dc:b1:00
242
+
243
+ Configuration:
244
+
245
+ id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0
246
+
247
+ maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200
248
+
249
+ root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0
250
+
251
+ ipfilter disabled flags 0x2
252
+
253
+ member: en1 flags=3<LEARNING,DISCOVER>
254
+
255
+ ifmaxaddr 0 port 5 priority 0 path cost 0
256
+
257
+ member: en2 flags=3<LEARNING,DISCOVER>
258
+
259
+ ifmaxaddr 0 port 6 priority 0 path cost 0
260
+
261
+ nd6 options=1<PERFORMNUD>
262
+
263
+ media: <unknown type>
264
+
265
+ status: inactive
266
+
267
+ vnic0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
268
+
269
+ options=3<RXCSUM,TXCSUM>
270
+
271
+ ether 00:1c:42:00:00:08
272
+
273
+ inet 10.211.55.2 netmask 0xffffff00 broadcast 10.211.55.255
274
+
275
+ media: autoselect
276
+
277
+ status: active
278
+
279
+ vnic1: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
280
+
281
+ options=3<RXCSUM,TXCSUM>
282
+
283
+ ether 00:1c:42:00:00:09
284
+
285
+ inet 10.37.129.2 netmask 0xffffff00 broadcast 10.37.129.255
286
+
287
+ media: autoselect
288
+
289
+ status: active
290
+
291
+ vboxnet0: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> mtu 1500
292
+
293
+ ether 0a:00:27:00:00:00
294
+
295
+ inet 192.168.33.1 netmask 0xffffff00 broadcast 192.168.33.255
296
+
297
+
298
+
123
299
  解析に必要な情報を教えていただければ幸いです。
124
300
 
125
301
  よろしくお願いいたします。

1

AllowOverride All Require All granted の設定を行っていることを加筆しました。

2016/12/09 03:50

投稿

red-scorpions
red-scorpions

スコア9

test CHANGED
File without changes
test CHANGED
@@ -112,6 +112,14 @@
112
112
 
113
113
  ```
114
114
 
115
+ AllowOverride All
116
+
117
+ Require All granted
118
+
119
+ の設定は行っています。
120
+
121
+
122
+
115
123
  解析に必要な情報を教えていただければ幸いです。
116
124
 
117
125
  よろしくお願いいたします。