Skip to content

Commit 42db770

Browse files
committed
3
1 parent d034d83 commit 42db770

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/docker-up/docker-up/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ var aptUpdated = false
5959
const (
6060
dockerSocketFN = "/var/run/docker.sock"
6161
gitpodUserId = 33333
62-
containerIf = "ceth0"
62+
containerIf = "eth0"
6363
)
6464

6565
func main() {

components/ws-daemon/nsinsider/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ func main() {
275275
},
276276
},
277277
Action: func(c *cli.Context) error {
278-
containerIf, vethIf, cethIf := "eth0", "veth0", "ceth0"
278+
containerIf, vethIf, cethIf := "eth0", "veth0", "eth0"
279279
networkCIDR := c.String("workspace-cidr")
280280

281281
vethIp, cethIp, mask, err := processWorkspaceCIDR(networkCIDR)
@@ -420,7 +420,7 @@ func main() {
420420
},
421421
},
422422
Action: func(c *cli.Context) error {
423-
cethIf := "ceth0"
423+
cethIf := "eth0"
424424

425425
networkCIDR := c.String("workspace-cidr")
426426
vethIp, cethIp, mask, err := processWorkspaceCIDR(networkCIDR)

0 commit comments

Comments
 (0)