You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+47-51Lines changed: 47 additions & 51 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -259,59 +259,55 @@ This table provides a high-level comparison of RunCVM and Kata across various fe
259
259
|**virtiofsd**| Runs `virtiofsd` in container namespace | Unknown |
260
260
261
261
[^1]: `docker network create --scope=local testnet >/dev/null && docker run --name=test --rm --runtime=kata --network=testnet --entrypoint=/bin/ash alpine -c 'for n in test google.com 8.8.8.8; do echo "ping $n ..."; ping -q -c 8 -i 0.5 $n; done'; docker network rm testnet >/dev/null` succeeds on `runc` and `runcvm` but at time of writing (2023-12-31) the DNS lookups needed fail on `kata`.
262
-
263
-
```
264
-
$ docker network create --scope=local testnet >/dev/null && docker run --name=test --rm -it --runtime=kata --network=testnet --entrypoint=/bin/ash alpine -c 'for n in test google.com 8.8.8.8; do echo "ping $n ..."; ping -q -c 8 -i 0.5 $n; done'; docker network rm testnet >/dev/null
265
-
ping test ...
266
-
ping: bad address 'test'
267
-
ping google.com ...
268
-
ping: bad address 'google.com'
269
-
ping 8.8.8.8 ...
270
-
PING 8.8.8.8 (8.8.8.8): 56 data bytes
271
-
272
-
--- 8.8.8.8 ping statistics ---
273
-
8 packets transmitted, 8 packets received, 0% packet loss
274
-
round-trip min/avg/max = 0.911/1.716/3.123 ms
275
-
```
276
-
277
-
```
278
-
$ docker network create --scope=local testnet >/dev/null && docker run --name=test --rm -it --runtime=runcvm --network=testnet --entrypoint=/bin/ash alpine -c 'for n in test google.com 8.8.8.8; do echo "ping $n ..."; ping -q -c 8 -i 0.5 $n; done'; docker network rm testnet >/dev/null
279
-
ping test ...
280
-
PING test (172.25.8.2): 56 data bytes
281
-
282
-
--- test ping statistics ---
283
-
8 packets transmitted, 8 packets received, 0% packet loss
284
-
round-trip min/avg/max = 0.033/0.085/0.137 ms
285
-
ping google.com ...
286
-
PING google.com (172.217.16.238): 56 data bytes
287
-
288
-
--- google.com ping statistics ---
289
-
8 packets transmitted, 8 packets received, 0% packet loss
290
-
round-trip min/avg/max = 8.221/8.398/9.017 ms
291
-
ping 8.8.8.8 ...
292
-
PING 8.8.8.8 (8.8.8.8): 56 data bytes
293
-
294
-
--- 8.8.8.8 ping statistics ---
295
-
8 packets transmitted, 8 packets received, 0% packet loss
296
-
round-trip min/avg/max = 1.074/1.491/1.801 ms
297
-
```
262
+
```
263
+
$ docker network create --scope=local testnet >/dev/null && docker run --name=test --rm -it --runtime=kata --network=testnet --entrypoint=/bin/ash alpine -c 'for n in test google.com 8.8.8.8; do echo "ping $n ..."; ping -q -c 8 -i 0.5 $n; done'; docker network rm testnet >/dev/null
264
+
ping test ...
265
+
ping: bad address 'test'
266
+
ping google.com ...
267
+
ping: bad address 'google.com'
268
+
ping 8.8.8.8 ...
269
+
PING 8.8.8.8 (8.8.8.8): 56 data bytes
270
+
271
+
--- 8.8.8.8 ping statistics ---
272
+
8 packets transmitted, 8 packets received, 0% packet loss
273
+
round-trip min/avg/max = 0.911/1.716/3.123 ms
274
+
275
+
$ docker network create --scope=local testnet >/dev/null && docker run --name=test --rm -it --runtime=runcvm --network=testnet --entrypoint=/bin/ash alpine -c 'for n in test google.com 8.8.8.8; do echo "ping $n ..."; ping -q -c 8 -i 0.5 $n; done'; docker network rm testnet >/dev/null
276
+
ping test ...
277
+
PING test (172.25.8.2): 56 data bytes
278
+
279
+
--- test ping statistics ---
280
+
8 packets transmitted, 8 packets received, 0% packet loss
281
+
round-trip min/avg/max = 0.033/0.085/0.137 ms
282
+
ping google.com ...
283
+
PING google.com (172.217.16.238): 56 data bytes
284
+
285
+
--- google.com ping statistics ---
286
+
8 packets transmitted, 8 packets received, 0% packet loss
287
+
round-trip min/avg/max = 8.221/8.398/9.017 ms
288
+
ping 8.8.8.8 ...
289
+
PING 8.8.8.8 (8.8.8.8): 56 data bytes
290
+
291
+
--- 8.8.8.8 ping statistics ---
292
+
8 packets transmitted, 8 packets received, 0% packet loss
0 commit comments