Como alterar o ip do servidor do Ubuntu a partir de intervalos atribuídos?

0

A empresa do servidor atribuiu alguns ip's para o meu servidor dedicado, mas não sei como alterá-lo. Devo alterar o número de ip em / etc / network / interfaces manualmente? meu arquivo /etc/network/interfaces é como;

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eno1
iface eno1 inet static
        address 106.***.***.250
        netmask 255.255.255.248
        network 106.***.***.248
        broadcast 106.***.***.255
        gateway 106.***.***.249
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 8.8.8.8
        dns-search newenglanddns.io
    
por elanozturk 19.01.2018 / 21:06

1 resposta

1

Se nenhum DHCP estiver sendo executado no seu datacenter, você deverá fazer algo como:

# device: eth0
auto  eth0
iface eth0 inet static
  address   10.20.30.40
  netmask   255.255.255.0
  gateway   10.20.30.1
  dns-nameservers 8.8.8.8
    
por dash1121 19.01.2018 / 21:33