Hi
Ich habe heute zum ersten mal einen virtuellen Server in Apache aufgesetzt. Ziel sind 8 davon auf einem Indianer. Habe den Vhost definiert, allerdings klappte der Zugriff auf die IP Adresse natürlich nicht, weil die im Netz niemand hat. Jetzt habe ich die uml-utilities installiert. Mit "tunctl -t tun0" konnte ich eine virtuelle Nic Erstellen und mit "ifconfig tun0 192.168.1.62 up" Einrichten. Siehe da der Vhost rennt wie jeck
Das ist aber doch etwas umständlich oder? Wie macht das der Profie bzw wie setze ich mehrere Adressen auf eine Nic?
grüsse Darko
1 Nic mehrere IP Adressen
- minimike
- Beiträge: 5616
- Registriert: 26.03.2003 02:21:19
- Lizenz eigener Beiträge: neue BSD Lizenz
- Wohnort: Köln
-
Kontaktdaten:
1 Nic mehrere IP Adressen
"Lennart Poettering is one of those typical IT leaders..." "like Linus Torvalds and Theo de Raadt?" "more like Bozo the Clown" After all, now a good employee of Microsoft
- minimike
- Beiträge: 5616
- Registriert: 26.03.2003 02:21:19
- Lizenz eigener Beiträge: neue BSD Lizenz
- Wohnort: Köln
-
Kontaktdaten:
Habe das mit 3 Adressen eben so gelöst
Must nur etwas probieren weil ich nicht wuste wie man das bei Debian einträgt. Nun man ifconfig brachte schnell die ersten Hinweise
Code: Alles auswählen
# 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 static
address 192.168.1.61
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.254
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 192.168.1.254
dns-search hojnik
auto eth0:0
iface eth0:0 inet static
address 192.168.1.62
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
auto eth0:1
iface eth0:1 inet static
address 192.168.1.63
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
"Lennart Poettering is one of those typical IT leaders..." "like Linus Torvalds and Theo de Raadt?" "more like Bozo the Clown" After all, now a good employee of Microsoft