![]() |
|
|
google unix.com
|
|||||||
| Forum | Registrera | Forum Regler | Länkar | Album | FAQ | Medlemslista | Kalender | Söka | Dagens inlägg | Markera forum som lästa |
| Ubuntu Ubuntu är ett komplett skrivbord Linux operativsystem, fritt tillgängligt med både gemenskap och professionell support. |
Mer UNIX och Linux Forum Ämnen Du kan hitta Helpful
|
||||
| Tråd | Thread Starter | Forum | Svar | Senaste Inlägg |
| Statisk route | Arun.Kakarla | UNIX for Dummies Frågor & Svar | 2 | 07-17-2008 09:07 |
| statisk rutt? | chaandana | IP Nätverk | 3 | 07-05-2005 03:05 |
| Statisk | Wojtyla | High Level Programming | 6 | 02-25-2005 11:57 |
| Statisk IP | IP Nätverk | 7 | 05-18-2003 08:33 | |
|
|
LinkBack | Thread Tools | Sök i denna tråd | Rate Thread | Visningslägen |
|
||||
|
Hur du ställer in gästrecensioner statisk IP
Hi folks, Ubuntu 8.04 server amd64 - värd Ubuntu 6.06 server amd64 - gäst KVM Jag nämnde; Den Kernel Virtual Machine https: / / help.ubuntu.com / community / KVM och kunde inte lista ut hur man ställer gästrecensioner statisk IP-adress Host; / etc / network / interfaces Kod:
# 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
auto eth0
iface eth0 inet manual
# The primary network interface
auto br0
iface br0 inet static
address 192.168.0.110
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
bridge_ports eth0
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off
Gästens; / etc / network / interfaces Kod:
auto lo iface lo inet loopbak # The primary network interface auto eth0 iface eth0 inet dhcp $ Ifconfig Kod:
... inet addr:10.0.2.15 Bcast:10.0.2.255 Mask:255.255.255.0 .... Host; / etc / libvirt / qemn / nätverk / default.xml Kod:
<network>
<name>default</name>
<uuid></uuid>
<bridge name="virbr%d" />
<forward/>
<ip address="192.168.122.1" netmask="255.255.255.0">
<dhcp>
<range start="192.168.122.2" end="192.168.122.254" />
</dhcp>
</ip>
</network>
Vänligen kasta mig lite ljus. TIA BR satimis |