Alpine-Linux

Download

VM

Installation

Per SSH anmelden

Per SFTP anmelden

Netzwerkkonfiguration

Konfiguration anzeigen

Konfigurationsdatei /etc/network/interfaces

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp
iface eth0 inet6 auto

auto eth1
iface eth1 inet static
        address 192.168.1.2/24        
        gateway 192.168.1.1

iface eth1 inet6 static
        address 2001:470:ffff:ff::2/64
        gateway 2001:470:ffff:ff::1
        pre-up echo 0 > /proc/sys/net/ipv6/conf/eth0/accept_ra

Konfiguration übernehmen

DHCPv4-Server

Installation

Konfigurationsdatei /etc/dhcp/dhcpd.conf

subnet 192.168.1.0 netmask 255.255.255.0 {
  range 192.168.1.100 192.168.1.200;
  option domain-name-servers 9.9.9.9;
  option routers 192.168.1.1;
}

Beim Booten starten