web-dev-qa-db-fra.com

Pas de connexion Internet après la déconnexion du VPN sous Ubuntu 18.04

Dans Ubuntu 16.04, je n’ai eu aucun problème avec le VPN: après avoir déconnecté, j’avais Internet.

Dans Ubuntu 18.04 I ne pas avoir Internet après la déconnexion du VPN. Je peux réellement envoyer un ping à 8.8.8.8 mais pas à www.google.com et je pense donc à un problème lié à DNS.

Une solution manuelle consiste à faire $ Sudo service network-manager reload.

  1. Quelle est la cause du problème dans Ubuntu 18.04, et
  2. Comment pouvons-nous résoudre ce problème de façon permanente?
6
Daniel

Cela pourrait être lié à ce bogue: https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1778946

SOLUTION

Editez le fichier /etc/ppp/ip-up.d/0000usepeerdns

Remplacez la ligne suivante:

cp -a "$REALRESOLVCONF" "$REALRESOLVCONF.pppd-backup.$PPP_IFACE"

Avec ce code:

cp "$REALRESOLVCONF" "$REALRESOLVCONF.pppd-backup.$PPP_IFACE"
chmod 644 "$REALRESOLVCONF.pppd-backup.$PPP_IFACE"

Redémarrez le gestionnaire de réseau:

systemctl restart NetworkManager
4
xezpeleta