2 Netzwerk

+Apache
+Netplan
+Netzwerktools
+REST
+Samba
+SSH
+Wireshark

Konfiguration /etc/interfaces

$ ip link show / ip l : Liste der vorhandenen Interfaces. (-s Statistik)

DHCP-Standard-Konfiguration

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp

Statische Standardkonfiguration

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static 
        address 192.168.77.111 
        netmask 255.255.255.0
        gateway 192.168.77.1
        dns-search somedomain.org
	# dns-server: Gateway + google-dns
        dns-nameservers 192.168.77.1 8.8.4.4

Routing
$ ip route add 10.20.0.0/16 via 10.20.116.1 IP-Route im System eintragen.


Links: