質問編集履歴

1

netstat/ifconfig 情報を追加

2018/12/05 00:59

投稿

JUNJUNJUN
JUNJUNJUN

スコア25

test CHANGED
File without changes
test CHANGED
@@ -146,7 +146,121 @@
146
146
 
147
147
 
148
148
 
149
-
149
+ ### 追加情報
150
+
151
+ ``` bash
152
+
153
+ $netstat -nr
154
+
155
+ Kernel IP routing table
156
+
157
+ Destination Gateway Genmask Flags MSS Window irtt Iface
158
+
159
+ 0.0.0.0 10.10.63.254 0.0.0.0 UG 0 0 0 eno1
160
+
161
+ 0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 wlp1s0
162
+
163
+ 10.10.56.0 0.0.0.0 255.255.248.0 U 0 0 0 eno1
164
+
165
+ 172.17.0.0 0.0.0.0 255.255.0.0 U 0 0 0 docker0
166
+
167
+ 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 wlp1s0
168
+
169
+ 192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
170
+
171
+ $ifconfig
172
+
173
+ docker0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
174
+
175
+ inet 172.17.0.1 netmask 255.255.0.0 broadcast 172.17.255.255
176
+
177
+ ether 02:42:8f:bf:d0:6e txqueuelen 0 (Ethernet)
178
+
179
+ RX packets 0 bytes 0 (0.0 B)
180
+
181
+ RX errors 0 dropped 0 overruns 0 frame 0
182
+
183
+ TX packets 0 bytes 0 (0.0 B)
184
+
185
+ TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
186
+
187
+
188
+
189
+ eno1: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
190
+
191
+ inet 10.10.57.162 netmask 255.255.248.0 broadcast 10.10.63.255
192
+
193
+ inet6 fe80::8a55:d779:da51:3f1e prefixlen 64 scopeid 0x20<link>
194
+
195
+ ether f4:4d:30:67:3d:92 txqueuelen 1000 (Ethernet)
196
+
197
+ RX packets 0 bytes 0 (0.0 B)
198
+
199
+ RX errors 0 dropped 0 overruns 0 frame 0
200
+
201
+ TX packets 0 bytes 0 (0.0 B)
202
+
203
+ TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
204
+
205
+ device interrupt 16 memory 0xdf200000-df220000
206
+
207
+
208
+
209
+ lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
210
+
211
+ inet 127.0.0.1 netmask 255.0.0.0
212
+
213
+ inet6 ::1 prefixlen 128 scopeid 0x10<host>
214
+
215
+ loop txqueuelen 1000 (Local Loopback)
216
+
217
+ RX packets 106472 bytes 30204099 (28.8 MiB)
218
+
219
+ RX errors 0 dropped 0 overruns 0 frame 0
220
+
221
+ TX packets 106472 bytes 30204099 (28.8 MiB)
222
+
223
+ TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
224
+
225
+
226
+
227
+ virbr0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
228
+
229
+ inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255
230
+
231
+ ether 52:54:00:62:f5:12 txqueuelen 1000 (Ethernet)
232
+
233
+ RX packets 0 bytes 0 (0.0 B)
234
+
235
+ RX errors 0 dropped 0 overruns 0 frame 0
236
+
237
+ TX packets 0 bytes 0 (0.0 B)
238
+
239
+ TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
240
+
241
+
242
+
243
+ wlp1s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
244
+
245
+ inet 192.168.1.17 netmask 255.255.255.0 broadcast 192.168.1.255
246
+
247
+ inet6 2400:2411:c4a1:4c00:415b:69dc:ac93:fd4e prefixlen 64 scopeid 0x0<global>
248
+
249
+ inet6 fe80::f836:24b3:3051:6719 prefixlen 64 scopeid 0x20<link>
250
+
251
+ ether a0:c5:89:3d:97:12 txqueuelen 1000 (Ethernet)
252
+
253
+ RX packets 1188946 bytes 1239432761 (1.1 GiB)
254
+
255
+ RX errors 0 dropped 0 overruns 0 frame 0
256
+
257
+ TX packets 334460 bytes 66457118 (63.3 MiB)
258
+
259
+ TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
260
+
261
+
262
+
263
+ ```
150
264
 
151
265
  長文乱文失礼いたいます。
152
266