is this server plugged into some thing that serves Internet ,,,router,modem ...?
VINNY
VINNY
[FONT=monospace][COLOR=#000000]$ cat /etc/network/interfaces[/COLOR] # interfaces(5) file used by ifup(8) and ifdown(8) auto lo iface lo inet loopback auto he-ipv6 iface he-ipv6 inet6 v4tunnel address 2001:XXX:XXX:XXX::2 netmask 64 endpoint XXX.XXX.XXX.XXX local 192.168.1.100 ttl 255 gateway 2001:XXX:XXX:XXX::1 dns-nameservers 2001:4860:4860::8888 2001:4860:4860::8844 [/FONT]
mark@Ubuntu-Server:~$ cat /etc/network/interfaces # 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 192.168.1.101 mask 255.255.255.0 gateway 192.168.1.254 dns-nameservers 8.8.8.8 8.8.4.4 # This is an autoconfigured IPv6 interface iface enp0s10 inet6 auto
Comment