
Ubuntu ist in der VM installiert. Um auf ein Remote-Repository des Unternehmens zuzugreifen, muss ich DNS konfigurieren. Wenn ich an diesem Punkt den PING-Befehl verwende, erhalte ich die folgende Antwort:
user@ubuntu:~/projects$ ping -c 3 gitlab.companyname.com
PING gitlab.companyname.com (10.0.176.231) 56(84) bytes of data.
--- gitlab.companyname.com ping statistics ---
3 packets transmitted, 0 received, 100% packet loss, time 2053ms
(Der tatsächliche Name des Unternehmens wurde durch „Firmenname“ ersetzt.)
I tried to change the file /etc/netplan/50-cloud-init.yaml
# This file is generated from information provided by
# the datasource. Changes to it will not persist across an instance.
# To disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
ethernets:
ens33:
dhcp4: true
nameservers:
addresses:
- X.X.X.X
version: 2
Als nächstes verwende ich den sudo netplan apply
Befehl, um die Änderungen anzuwenden
Wenn Sie in den ersten Sekunden den PING-Befehl verwenden, ist alles in Ordnung:
user@ubuntu:~/projects$ sudo netplan apply
user@ubuntu:~/projects$ ping -c 3 gitlab.companyname.com
PING gitlab.companyname.com (10.0.176.231) 56(84) bytes of data.
64 bytes from 10.0.176.231 (10.0.176.231): icmp_seq=1 ttl=62 time=0.877 ms
64 bytes from 10.0.176.231 (10.0.176.231): icmp_seq=2 ttl=62 time=0.723 ms
64 bytes from 10.0.176.231 (10.0.176.231): icmp_seq=3 ttl=62 time=0.778 ms
--- gitlab.companyname.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2015ms
rtt min/avg/max/mdev = 0.723/0.792/0.877/0.071 ms
Das Problem ist jedoch, dass nach etwa 10 Sekunden die Verbindung wieder verloren geht:
user@ubuntu:~/projects$ ping -c 3 gitlab.companyname.com
PING gitlab.companyname.com (10.0.176.231) 56(84) bytes of data.
--- gitlab.companyname.com ping statistics ---
3 packets transmitted, 0 received, 100% packet loss, time 2025ms