2020-08-03 10:27:15 +00:00
|
|
|
# install additional packages
|
|
|
|
apk add nano busybox-extras
|
|
|
|
|
|
|
|
# network configuration
|
|
|
|
cat > /etc/network/interfaces << EOF
|
2015-09-28 10:14:31 +00:00
|
|
|
#
|
2020-08-03 10:27:15 +00:00
|
|
|
# This is a sample network config, uncomment lines to configure the network
|
2015-09-28 10:14:31 +00:00
|
|
|
#
|
|
|
|
|
2020-08-03 10:27:15 +00:00
|
|
|
# Loopback interface
|
2015-09-28 10:14:31 +00:00
|
|
|
auto lo
|
|
|
|
iface lo inet loopback
|
|
|
|
|
2020-08-03 10:27:15 +00:00
|
|
|
# Static config for eth0
|
|
|
|
#auto eth0
|
|
|
|
#iface eth0 inet static
|
|
|
|
# address 192.168.0.2
|
|
|
|
# netmask 255.255.255.0
|
|
|
|
# gateway 192.168.0.1
|
|
|
|
# up echo nameserver 192.168.0.1 > /etc/resolv.conf
|
2015-09-28 10:14:31 +00:00
|
|
|
|
2020-08-03 10:27:15 +00:00
|
|
|
# DHCP config for eth0
|
2020-08-06 09:57:05 +00:00
|
|
|
#auto eth0
|
|
|
|
#iface eth0 inet dhcp
|
2020-08-03 10:27:15 +00:00
|
|
|
# hostname $(hostname)
|
2015-09-28 10:14:31 +00:00
|
|
|
EOF
|
|
|
|
|
2020-08-03 10:27:15 +00:00
|
|
|
cat > /etc/resolv.conf << EOF
|
|
|
|
EOF
|