1 Pluspunkt 0 Minuspunkte
Wie kann ich den Nameserver meiner Netzwerkverbindung auf Ubuntu 18.04 im Terminal über SSH ändern?
von  
Welchen Netzwerkmanager verwendet du?
Ich weiß es nicht, der bei der Installation dabei war.
Was gibt der Befehl "service --status-all" aus?
[ + ]  acpid
 [ - ]  alsa-utils
 [ - ]  anacron
 [ + ]  apparmor
 [ + ]  apport
 [ + ]  avahi-daemon
 [ - ]  bluetooth
 [ - ]  console-setup.sh
 [ + ]  cron
 [ + ]  cups
 [ + ]  cups-browsed
 [ + ]  dbus
 [ - ]  dns-clean
 [ + ]  gdm3
 [ + ]  grub-common
 [ - ]  hwclock.sh
 [ - ]  irqbalance
 [ + ]  kerneloops
 [ - ]  keyboard-setup.sh
 [ + ]  kmod
 [ + ]  network-manager
 [ + ]  networking
 [ + ]  nmbd
 [ - ]  plymouth
 [ - ]  plymouth-log
 [ - ]  pppd-dns
 [ + ]  procps
 [ - ]  rsync
 [ + ]  rsyslog
 [ - ]  samba-ad-dc
 [ - ]  saned
 [ + ]  smbd
 [ + ]  speech-dispatcher
 [ - ]  spice-vdagent
 [ + ]  ssh
 [ + ]  udev
 [ + ]  ufw
 [ + ]  unattended-upgrades
 [ - ]  uuidd
 [ + ]  whoopsie
 [ + ]  winbind
 [ - ]  x11-common

1 Antwort

0 Pluspunkte 0 Minuspunkte

Mit dem Befehl

nmcli connection show

findest du den Namen deiner Netzwerkverbindung. Den Nameserver setzt du mit dem Befehl

nmcli connection modify <name-der-netzwerkverbindung> ipv4.dns <ip-des-nameserver>

Um einen zusätzlichen Nameserver hinzuzufügen benutze

nmcli connection modify <name-der-netzwerkverbindung> +ipv4.dns <zusätzlicher-nameserver>
von