Anpassen des Debian Templates: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „==Hostname== *hostnamectl hostname '''NS''' ==Netzwerk== *vim /etc/network/interfaces # This file describes the network interfaces available on your system…“) |
|||
| (4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
==Hostname== | ==Hostname== | ||
| − | *hostnamectl hostname '''NS''' | + | *hostnamectl hostname <span style="color:red">'''NS'''</span> |
==Netzwerk== | ==Netzwerk== | ||
| Zeile 17: | Zeile 17: | ||
auto enp0s3 | auto enp0s3 | ||
iface enp0s3 inet static | iface enp0s3 inet static | ||
| − | address '''IP/CIDR''' | + | address <span style="color:red">'''IP/CIDR'''</span> |
| − | gateway '''GW''' | + | gateway <span style="color:red">'''GW'''</span> |
==Namerserver== | ==Namerserver== | ||
*vim /etc/resolv.conf | *vim /etc/resolv.conf | ||
| − | nameserver '''NS''' | + | nameserver <span style="color:red">'''NS'''</span> |
| − | search '''DOM''' | + | search <span style="color:red">'''DOM'''</span> |
==Hosts== | ==Hosts== | ||
*vim /etc/hosts | *vim /etc/hosts | ||
127.0.0.1 localhost | 127.0.0.1 localhost | ||
| − | 127.0.1.1 '''FQDN''' ''' | + | 127.0.1.1 <span style="color:red">'''FQDN'''</span> <span style="color:red">'''SHORT'''</span> |
# The following lines are desirable for IPv6 capable hosts | # The following lines are desirable for IPv6 capable hosts | ||
| Zeile 37: | Zeile 37: | ||
==Reboot== | ==Reboot== | ||
*systemctl reboot | *systemctl reboot | ||
| + | ==JumpHost== | ||
| + | ;Auf dem KIT Host anfügen | ||
| + | *vim ~/.ssh/config | ||
| + | Host <span style="color:red">'''SHORT'''</span> | ||
| + | Hostname <span style="color:red">'''IP'''</span> | ||
| + | ProxyJump kit@fw | ||
| + | ;PubKey Übertragung | ||
| + | *ssh-copy-id <span style="color:red">'''SHORT'''</span> | ||
| + | Danach könnt ihr euch mit '''ssh''' <span style="color:red">'''SHORT'''</span> passswortlos einlogen | ||
Aktuelle Version vom 30. März 2026, 06:49 Uhr
Hostname
- hostnamectl hostname NS
Netzwerk
- vim /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 enp0s3 iface enp0s3 inet static address IP/CIDR gateway GW
Namerserver
- vim /etc/resolv.conf
nameserver NS search DOM
Hosts
- vim /etc/hosts
127.0.0.1 localhost 127.0.1.1 FQDN SHORT # The following lines are desirable for IPv6 capable hosts ::1 localhost ip6-localhost ip6-loopback ff02::1 ip6-allnodes ff02::2 ip6-allrouters
Reboot
- systemctl reboot
JumpHost
- Auf dem KIT Host anfügen
- vim ~/.ssh/config
Host SHORT Hostname IP ProxyJump kit@fw
- PubKey Übertragung
- ssh-copy-id SHORT
Danach könnt ihr euch mit ssh SHORT passswortlos einlogen