Entwicklungsumgebung/Dateiliste/interfaces: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(falls der Router kein DHCP beherrscht) |
(kat) |
||
(Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{ | |||
{{EditStatus|1|Schoffer}} | |||
Zeile 14: | Zeile 15: | ||
---- | ---- | ||
<source highlight="9- | <source highlight="9-30" lang="text"> | ||
# This file describes the network interfaces available on your system | # This file describes the network interfaces available on your system | ||
# and how to activate them. For more information, see interfaces(5). | # and how to activate them. For more information, see interfaces(5). | ||
Zeile 54: | Zeile 55: | ||
---- | ---- | ||
<div align="right">[[Entwicklungsumgebung/Dateiliste|zurück]] | [[Hauptseite]]</div> | <div align="right">[[Entwicklungsumgebung/Dateiliste|zurück]] | [[Hauptseite]]</div> | ||
[[Kategorie:DebianSqueeze]] |
Aktuelle Version vom 16. März 2012, 16:02 Uhr
Diese Seite ist momentan eine Baustelle im Zustand: 1
-
0
-
1
-
2
-
3
-
4
Wird bearbeitet von: Schoffer
Hilfe zum Bearbeitungsstatus: Hilfe:Status eines Artikels
/etc/network/interfaces
Achtung: Bitte achten Sie unbedingt darauf, beim Kopieren und Einfügen einen Editor mit UNIX-Zeilenumbrüchen zu verwenden!
Hinweis: Die im delixs-Schulserver geänderten Zeilen sind gelb unterlegt.
<source highlight="9-30" lang="text">
- This file describes the network interfaces available on your system
- and how to activate them. For more information, see interfaces(5).
- The loopback network interface
auto lo iface lo inet loopback
- The primary network interface
auto eth0 iface eth0 inet dhcp
- alternativ: primary network interface
- falls der Router kein DHCP beherrscht
- auto eth0
- iface eth0 inet static
- address 192.168.2.2
- netmask 255.255.255.0
- network 192.168.2.0
- gateway 192.168.2.1
- dns-nameservers 192.168.2.1
- dns-search delixs-schule.de
- The 2. network interface
auto eth1 iface eth1 inet static
address 10.100.0.1 netmask 255.255.0.0 network 10.100.0.0 broadcast 10.100.255.255
</source>