summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-06-24 12:53:11 +0200
committerGitHub <noreply@github.com>2019-06-24 12:53:11 +0200
commit33280d881e1bd838cf5e346e5c338a3dc992b345 (patch)
tree4634db17efde26eeee03b77396bf5043d43834ed /libpod
parentb611ac1c50184827fa0be04a8de800e09b802705 (diff)
parentbd5e113b713347954b8113552019a24ccff68eef (diff)
downloadpodman-33280d881e1bd838cf5e346e5c338a3dc992b345.tar.gz
podman-33280d881e1bd838cf5e346e5c338a3dc992b345.tar.bz2
podman-33280d881e1bd838cf5e346e5c338a3dc992b345.zip
Merge pull request #3406 from giuseppe/slirp-entry-to-hosts
rootless: add an entry to /etc/hosts when using slirp4netns
Diffstat (limited to 'libpod')
-rw-r--r--libpod/container_internal_linux.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/container_internal_linux.go b/libpod/container_internal_linux.go
index 60633e58c..50a2e2d44 100644
--- a/libpod/container_internal_linux.go
+++ b/libpod/container_internal_linux.go
@@ -1069,6 +1069,10 @@ func (c *Container) getHosts() string {
hosts += fmt.Sprintf("%s %s\n", fields[1], fields[0])
}
}
+ if c.config.NetMode.IsSlirp4netns() {
+ // When using slirp4netns, the interface gets a static IP
+ hosts += fmt.Sprintf("# used by slirp4netns\n%s\t%s\n", "10.0.2.100", c.Hostname())
+ }
if len(c.state.NetworkStatus) > 0 && len(c.state.NetworkStatus[0].IPs) > 0 {
ipAddress := strings.Split(c.state.NetworkStatus[0].IPs[0].Address.String(), "/")[0]
hosts += fmt.Sprintf("%s\t%s\n", ipAddress, c.Hostname())